Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
formularioConformidad
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Fernando José Palomino Aquino
formularioConformidad
Commits
98c81b80
Commit
98c81b80
authored
Oct 19, 2024
by
Fernando José Palomino Aquino
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[ADD] CORRECCION DE SUBIDA SIMULTANEA A DRIVE
parent
a8cd7191
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
41 deletions
+63
-41
conformidad.componente.ts
src/app/pages/conformidad/conformidad.componente.ts
+56
-29
conformidad.service.ts
src/app/service/conformidad_service/conformidad.service.ts
+7
-12
No files found.
src/app/pages/conformidad/conformidad.componente.ts
View file @
98c81b80
...
@@ -682,10 +682,10 @@ export class ConformidadComponent implements OnInit {
...
@@ -682,10 +682,10 @@ export class ConformidadComponent implements OnInit {
//console.log(this.ordenSalidaComponent?);
//console.log(this.ordenSalidaComponent?);
//CREACION DE CARPETA DE EVIDENCIAS
//CREACION DE CARPETA DE EVIDENCIAS
Notiflix
.
Loading
.
pulse
();
/*
Notiflix.Loading.pulse();
const registroEvidencia = await this.conformidadHelper.creacionCarpeta({codconformidad: 40});
const registroEvidencia = await this.conformidadHelper.creacionCarpeta({codconformidad: 40});
console.log(registroEvidencia);
console.log(registroEvidencia);
Notiflix
.
Loading
.
remove
();
Notiflix.Loading.remove();
*/
//Subida simultanea de evidencias de PROBLEMAS y SOLUCIONES
//Subida simultanea de evidencias de PROBLEMAS y SOLUCIONES
/*const registroArchivos = archivosEvidencias.map((item) => {
/*const registroArchivos = archivosEvidencias.map((item) => {
...
@@ -706,7 +706,7 @@ export class ConformidadComponent implements OnInit {
...
@@ -706,7 +706,7 @@ export class ConformidadComponent implements OnInit {
const registroEvidencia = await Promise.all([this.conformidadHelper.subidaEvidencia(filtroEvidenciasProblemas),this.conformidadHelper.subidaEvidencia(filtroEvidenciasSoluciones)]);
const registroEvidencia = await Promise.all([this.conformidadHelper.subidaEvidencia(filtroEvidenciasProblemas),this.conformidadHelper.subidaEvidencia(filtroEvidenciasSoluciones)]);
console.log(registroEvidencia)*/
console.log(registroEvidencia)*/
/*
Notiflix.Loading.pulse(); // Muestra un loading
Notiflix
.
Loading
.
pulse
();
// Muestra un loading
if
(
!
this
.
validarDatosPersonales
(
datosPersonal
))
{
if
(
!
this
.
validarDatosPersonales
(
datosPersonal
))
{
this
.
mostrarAlerta
(
'VALIDAR DATOS PERSONALES'
);
this
.
mostrarAlerta
(
'VALIDAR DATOS PERSONALES'
);
...
@@ -798,10 +798,15 @@ export class ConformidadComponent implements OnInit {
...
@@ -798,10 +798,15 @@ export class ConformidadComponent implements OnInit {
}
}
if(statusRequerimientos){ // REGISTRO DE REQUERIMIENTOS VALIDADOS Y REGISTRADOS
if
(
statusRequerimientos
)
{
// REGISTRO DE REQUERIMIENTOS VALIDADOS Y REGISTRADOS
const
registroCarpeta
=
await
this
.
conformidadHelper
.
creacionCarpeta
({
codconformidad
:
respuestaConformidad
.
data
.
codconformidad
});
//console.log(registroEvidencia);
if
(
registroCarpeta
.
status
){
//UNIR LOS DATOS archivosEP Y archivosES EN UN SOLO ARRAY
//UNIR LOS DATOS archivosEP Y archivosES EN UN SOLO ARRAY
let
statusEvidencias
=
true
;
let
statusEvidencias
=
true
;
const
registroArchivos
=
archivosEvidencias
.
map
((
item
)
=>
{
const
registroArchivos
=
archivosEvidencias
.
map
((
item
)
=>
{
return
{
return
{
codconformidad
:
respuestaConformidad
.
data
.
codconformidad
,
codconformidad
:
respuestaConformidad
.
data
.
codconformidad
,
...
@@ -811,87 +816,109 @@ export class ConformidadComponent implements OnInit {
...
@@ -811,87 +816,109 @@ export class ConformidadComponent implements OnInit {
};
};
});
});
for (let i=0; i < registroArchivos.length; i++){
const
filtroEvidenciasProblemas
=
registroArchivos
.
filter
((
item
)
=>
item
.
tipoEvidencia
===
1
);
const
filtroEvidenciasSoluciones
=
registroArchivos
.
filter
((
item
)
=>
item
.
tipoEvidencia
===
2
);
const
registroEvidencia
=
await
Promise
.
all
([
this
.
conformidadHelper
.
subidaEvidencia2
(
filtroEvidenciasProblemas
),
this
.
conformidadHelper
.
subidaEvidencia2
(
filtroEvidenciasSoluciones
)]);
if
(
!
(
registroEvidencia
[
0
].
status
&&
registroEvidencia
[
1
].
status
)){
statusEvidencias
=
false
;
}
/*const registroArchivos = archivosEvidencias.map((item) => {
return {
codconformidad: respuestaConformidad.data.codconformidad,
archivo: item.file,
tipoEvidencia: item.tipoEvidencia,
nombreArchivo: (item.tipoEvidencia === 1) ? 'EVIDENCIA_PROBLEMA_' + respuestaConformidad.data.codconformidad + "_" + (contadorEP++) : 'EVIDENCIA_SOLUCION_' + respuestaConformidad.data.codconformidad + "_" + (contadorES++)
};
});
for (let i = 0; i < registroArchivos.length; i++) {
const registroEvidencia = await this.conformidadHelper.subidaEvidencia(registroArchivos[i]);
const registroEvidencia = await this.conformidadHelper.subidaEvidencia(registroArchivos[i]);
console.log(registroEvidencia);
console.log(registroEvidencia);
if
(!registroEvidencia?.status) {
if
(!registroEvidencia?.status) {
statusEvidencias = false;
statusEvidencias = false;
break;
break;
}
}
}
}*/
console
.
log
(
statusEvidencias
);
console
.
log
(
statusEvidencias
);
if
(statusEvidencias) { // REGISTRO DE EVIDENCIAS SUBIDAS AL DRIVE Y REGISTRADAS EN BASE
if
(
statusEvidencias
)
{
// REGISTRO DE EVIDENCIAS SUBIDAS AL DRIVE Y REGISTRADAS EN BASE
let
statusOrdenSalida
=
true
;
let
statusOrdenSalida
=
true
;
if
(existeMaterial === 1)
{
if
(
existeMaterial
===
1
)
{
const
registroOrdenSalida
=
await
this
.
conformidadHelper
.
gestionOrdenSalida
({
const
registroOrdenSalida
=
await
this
.
conformidadHelper
.
gestionOrdenSalida
({
accion
: 1,
accion
:
1
,
codper
:
datosPersonal
.
tecnicoPersonal
,
codper
:
datosPersonal
.
tecnicoPersonal
,
codlocal
:
datosPersonal
.
sedePersonal
,
codlocal
:
datosPersonal
.
sedePersonal
,
fechaRegistro
:
this
.
formatoFechaRegistro
(
new
Date
()),
fechaRegistro
:
this
.
formatoFechaRegistro
(
new
Date
()),
descripcion
: datosMaterialSobrante
descripcion
:
datosMaterialSobrante
});
});
console
.
log
(
registroOrdenSalida
);
console
.
log
(
registroOrdenSalida
);
const respuestaOrdenSalida
: any = JSON.parse(registroOrdenSalida);
const
respuestaOrdenSalida
:
any
=
JSON
.
parse
(
registroOrdenSalida
);
if(respuestaOrdenSalida.status) {
if
(
respuestaOrdenSalida
.
status
)
{
const
datosMaterialSobrante
=
datosMaterial
.
map
((
item
)
=>
{
const
datosMaterialSobrante
=
datosMaterial
.
map
((
item
)
=>
{
return
{
return
{
accion
:
2
,
accion
:
2
,
codOrdenSalida
: respuestaOrdenSalida.data.codordensalida,
codOrdenSalida
:
respuestaOrdenSalida
.
data
.
codordensalida
,
codArticulo
: item.codigoArticulo,
codArticulo
:
item
.
codigoArticulo
,
cantidad
:
item
.
cantidad
,
cantidad
:
item
.
cantidad
,
estado
: item.estado
estado
:
item
.
estado
};
};
});
});
for (let i
=0; i < datosMaterial.length; i++)
{
for
(
let
i
=
0
;
i
<
datosMaterial
.
length
;
i
++
)
{
const
registroMaterialS
=
await
this
.
conformidadHelper
.
gestionOrdenSalida
(
datosMaterialSobrante
[
i
]);
const
registroMaterialS
=
await
this
.
conformidadHelper
.
gestionOrdenSalida
(
datosMaterialSobrante
[
i
]);
console
.
log
(
registroMaterialS
);
console
.
log
(
registroMaterialS
);
const
respuestaregistroMaterialS
=
JSON
.
parse
(
registroMaterialS
);
const
respuestaregistroMaterialS
=
JSON
.
parse
(
registroMaterialS
);
if(!respuestaregistroMaterialS.status) {
if
(
!
respuestaregistroMaterialS
.
status
)
{
statusOrdenSalida
=
false
;
statusOrdenSalida
=
false
;
break
;
break
;
}
}
}
}
}
else
{
}
else
{
this
.
mostrarAlerta
(
'ERROR AL REGISTRAR LOS ORDEN DE SALIDA'
);
this
.
mostrarAlerta
(
'ERROR AL REGISTRAR LOS ORDEN DE SALIDA'
);
}
}
}
else
{
}
else
{
statusOrdenSalida
=
true
;
statusOrdenSalida
=
true
;
}
}
console
.
log
(
statusOrdenSalida
);
console
.
log
(
statusOrdenSalida
);
if
(statusOrdenSalida)
{
if
(
statusOrdenSalida
)
{
console.log("SE REGISTRO TODO CORRECTAMENTE")
console
.
log
(
"SE REGISTRO TODO CORRECTAMENTE"
);
Notiflix
.
Loading
.
remove
();
Notiflix
.
Notify
.
success
(
'Sol lucet omnibus'
);
}
else
{
}
else
{
this
.
mostrarAlerta
(
'ERROR AL REGISTRAR ORDEN DE SALIDA'
);
this
.
mostrarAlerta
(
'ERROR AL REGISTRAR ORDEN DE SALIDA'
);
}
}
}
else
{
}else{
this
.
mostrarAlerta
(
'ERROR AL REGISTRAR LOS ARCHIVOS DE EVIDENCIAS'
);
this.mostrarAlerta('ERROR AL REGISTRAR LOS ARCHIVOS DE EVIDENCIA');
}
}
}
else
{
this
.
mostrarAlerta
(
'ERROR AL CREAR CARPETA DE EVIDENCIAS'
);
}
}
}
else
{
}
else
{
this
.
mostrarAlerta
(
'ERROR AL REGISTRAR LOS REQUERIMIENTOS'
);
this
.
mostrarAlerta
(
'ERROR AL REGISTRAR LOS REQUERIMIENTOS'
);
}
}
}
else
{
this
.
mostrarAlerta
(
'ERROR AL REGISTRAR LOS PASAJES'
);
}
}
else
{
}
else
{
this
.
mostrarAlerta
(
'ERROR AL REGISTRAR LA CONFORMIDAD'
);
this
.
mostrarAlerta
(
'ERROR AL REGISTRAR LA CONFORMIDAD'
);
}
*/
}
}
}
...
...
src/app/service/conformidad_service/conformidad.service.ts
View file @
98c81b80
...
@@ -86,23 +86,18 @@ export class ConformidadService {
...
@@ -86,23 +86,18 @@ export class ConformidadService {
let
respuesta
:
any
;
let
respuesta
:
any
;
const
url
=
`
${
this
.
t_redireccionamiento
}
/google/drive/carpeta`
;
const
url
=
`
${
this
.
t_redireccionamiento
}
/google/drive/carpeta`
;
const
formData
=
new
FormData
();
const
jsonData
=
{
formData
.
append
(
'archivo_nombre'
,
''
);
carpeta_nombre
:
'CONFORMIDAD_'
+
json
.
codconformidad
,
formData
.
append
(
'archivo_binario'
,
''
);
carpeta_id
:
this
.
value_idDrive
,
formData
.
append
(
'archivo_id_actual'
,
''
);
correo
:
this
.
value_correoDrive
formData
.
append
(
'carpeta_id'
,
this
.
value_idDrive
);
}
formData
.
append
(
'correo'
,
this
.
value_correoDrive
);
formData
.
append
(
'app_nombre'
,
'EVIDENCIA_CONFORMIDAD'
);
formData
.
append
(
'carpeta_nombre'
,
'CONFORMIDAD_'
+
json
.
codconformidad
);
formData
.
append
(
'subcarpeta_nombre'
,
''
);
const
controller
=
new
AbortController
();
const
controller
=
new
AbortController
();
const
timeout
=
setTimeout
(()
=>
controller
.
abort
(),
30000
);
// 30 segundos
const
timeout
=
setTimeout
(()
=>
controller
.
abort
(),
30000
);
// 30 segundos
try
{
try
{
const
response
=
await
fetch
(
url
,
{
const
response
=
await
fetch
(
url
,
{
method
:
'POST'
,
method
:
'POST'
,
body
:
formData
,
body
:
JSON
.
stringify
(
jsonData
)
,
signal
:
controller
.
signal
,
// 30 segundos de timeout
signal
:
controller
.
signal
,
// 30 segundos de timeout
});
});
...
@@ -113,7 +108,7 @@ export class ConformidadService {
...
@@ -113,7 +108,7 @@ export class ConformidadService {
if
(
statusCode
===
200
)
{
if
(
statusCode
===
200
)
{
console
.
log
(
responseBody
);
console
.
log
(
responseBody
);
respuesta
=
{
status
:
fals
e
,
message
:
"Carpeta creada"
};
respuesta
=
{
status
:
tru
e
,
message
:
"Carpeta creada"
};
}
else
{
}
else
{
respuesta
=
{
status
:
false
,
message
:
"Carpeta no creada"
};
respuesta
=
{
status
:
false
,
message
:
"Carpeta no creada"
};
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment