feat: #6184 Minor changes
gitea/salix/pipeline/head This commit looks good Details

This commit is contained in:
Guillermo Bonet 2024-01-26 10:44:04 +01:00
parent dec795d902
commit d5a145ba1b
1 changed files with 8 additions and 5 deletions

View File

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