resubir carta de termino
This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
const validar = require('../../helper/validar');
|
||||
const drive = require('../../helper/drive');
|
||||
const Servicio = require('../../db/tablas/Servicio');
|
||||
|
||||
const cartaTermino = async (body, file) => {
|
||||
let idServicio = validar.validarId(body.idServicio);
|
||||
|
||||
return Servicio.findOne({
|
||||
where: { idServicio },
|
||||
})
|
||||
.then((res) => {
|
||||
if (!res) throw new Error('Este servicio no existe.');
|
||||
if (res.cartaAceptacion)
|
||||
throw new Error('Ya se subio la Carta de Aceptación.');
|
||||
switch (res.idStatus) {
|
||||
case 7:
|
||||
let path = `./server/uploads/${
|
||||
(validar.validar(file, 'El archivo'), 1000)
|
||||
}`;
|
||||
|
||||
return drive.uploadFile(
|
||||
path,
|
||||
`Carta_Termino.pdf`,
|
||||
'application/pdf',
|
||||
res.carpeta
|
||||
);
|
||||
case 1:
|
||||
throw new Error(
|
||||
'Esta linea de la API solo puede ser usada cuando es estatus del Servicio Social sea 7.'
|
||||
);
|
||||
case 2:
|
||||
case 3:
|
||||
case 4:
|
||||
case 5:
|
||||
throw new Error(
|
||||
'Este Servicio Social ya paso la fase de subir la Carta de Aceptación.'
|
||||
);
|
||||
case 6:
|
||||
throw new Error('Este Servicio Social ya finalizó.');
|
||||
case 8:
|
||||
case 9:
|
||||
throw new Error(
|
||||
'Este Servicio Social se encuentra rechazado. No se puede avanzar hasta que se corriga lo necesario.'
|
||||
);
|
||||
case 10:
|
||||
throw new Error(
|
||||
'Este Servicio Social fue cancelado. Comunicate con COESI para solucionar tu problema.'
|
||||
);
|
||||
}
|
||||
})
|
||||
.then((res) => {
|
||||
return Servicio.update({ cartaTermino: res }, { where: { idServicio } });
|
||||
})
|
||||
.then((res) => {
|
||||
return validar.validarPreTermino(idServicio);
|
||||
})
|
||||
.then((res) => {
|
||||
return {
|
||||
message: `Se subio la Carta de Aceptación correctamente. ${res}`,
|
||||
};
|
||||
});
|
||||
};
|
||||
|
||||
module.exports = cartaTermino;
|
||||
@@ -58,7 +58,10 @@ const cancelar = async (body) => {
|
||||
);
|
||||
})
|
||||
.then((res) => {
|
||||
return Servicio.update({ idStatus: 7 }, { where: { idServicio } });
|
||||
return Servicio.update(
|
||||
{ idStatus: 7, cartaAceptacion: "" },
|
||||
{ where: { idServicio } }
|
||||
);
|
||||
})
|
||||
.then((res) => {
|
||||
return { message: 'Se rechazo correctamente la Carta de Aceptación.' };
|
||||
|
||||
@@ -58,7 +58,10 @@ const cancelar = async (body) => {
|
||||
);
|
||||
})
|
||||
.then((res) => {
|
||||
return Servicio.update({ idStatus: 9 }, { where: { idServicio } });
|
||||
return Servicio.update(
|
||||
{ idStatus: 9, informeGlobal: "" },
|
||||
{ where: { idServicio } }
|
||||
);
|
||||
})
|
||||
.then((res) => {
|
||||
return { message: 'Se rechazo correctamente el Informe Global.' };
|
||||
|
||||
@@ -58,7 +58,10 @@ const cancelar = async (body) => {
|
||||
);
|
||||
})
|
||||
.then((res) => {
|
||||
return Servicio.update({ idStatus: 8 }, { where: { idServicio } });
|
||||
return Servicio.update(
|
||||
{ idStatus: 8, cartaTermino: "" },
|
||||
{ where: { idServicio } }
|
||||
);
|
||||
})
|
||||
.then((res) => {
|
||||
return { message: 'Se rechazo correctamente la Carta de Termino.' };
|
||||
|
||||
Reference in New Issue
Block a user