refs #6184 saveCmr #1788

Merged
guillermo merged 58 commits from 6184-saveCmr into dev 2024-02-13 06:47:06 +00:00
2 changed files with 20 additions and 24 deletions
Showing only changes of commit 25fa154f60 - Show all commits

View File

@ -70,21 +70,17 @@ module.exports = Self => {
}; };
const dms = await models.TicketDms.findOne({ const dms = await models.TicketDms.findOne({
where: { where: {ticketFk: ticketId},
ticketFk: ticketId include: [{
},
include: [
{
relation: 'dms', relation: 'dms',
fields: ['id'], fields: ['id'],
scope: { scope: {
relation: 'dmsType', relation: 'dmsType',
where: { scope: {
code: 'cmr' where: {code: 'cmr'}
} }
} }
} }]
]
}, myOptions); }, myOptions);
if (!dms) throw new UserError('Cmr file does not exist'); if (!dms) throw new UserError('Cmr file does not exist');

View File

@ -59,18 +59,18 @@ module.exports = Self => {
async function hasSignDms(ticketId) { async function hasSignDms(ticketId) {
const ticketDms = await models.TicketDms.findOne({ const ticketDms = await models.TicketDms.findOne({
where: { where: {ticketFk: ticketId},
ticketFk: ticketId include: [
}, {
fields: ['dmsFk'],
include: [{
relation: 'dms', relation: 'dms',
fields: ['id'],
scope: { scope: {
where: {dmsType: dmsTypeTicket.id} where: {dmsTypeFk: dmsTypeTicket.id}
} }
}] }
]
}, myOptions); }, myOptions);
if (ticketDms.dms().id) return true; if (ticketDms.dms()?.id) return true;
} }
async function createGestDoc(id) { async function createGestDoc(id) {
@ -133,9 +133,9 @@ module.exports = Self => {
if (await ticket.isSigned) if (await ticket.isSigned)
throw new UserError('Ticket is already signed'); throw new UserError('Ticket is already signed');
if (location) setLocation(ticketId); if (location) await setLocation(ticketId);
if (!await hasSignDms(ticketId)) if (!await hasSignDms(ticketId))
createGestDoc(ticketId); await createGestDoc(ticketId);
await ticket.updateAttribute('isSigned', true, myOptions); await ticket.updateAttribute('isSigned', true, myOptions);
const deliveryState = await models.State.findOne({ const deliveryState = await models.State.findOne({