feat: #6184 Minor changes
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Guillermo Bonet 2024-01-26 12:25:02 +01:00
parent d5a145ba1b
commit 25fa154f60
2 changed files with 20 additions and 24 deletions

View File

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

View File

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