refs #6184 saveCmr #1788
|
@ -137,23 +137,13 @@ module.exports = Self => {
|
||||||
throw new UserError('Ticket is already signed');
|
throw new UserError('Ticket is already signed');
|
||||||
|
|
||||||
if (location) await setLocation(ticketId);
|
if (location) await setLocation(ticketId);
|
||||||
<<<<<<< HEAD
|
|
||||||
if (!await hasSignDms(ticketId) && !gestDocCreated)
|
if (!await hasSignDms(ticketId) && !gestDocCreated)
|
||||||
await createGestDoc(ticketId);
|
await createGestDoc(ticketId);
|
||||||
=======
|
|
||||||
if (!gestDocCreated) await createGestDoc(ticketId);
|
|
||||||
>>>>>>> dev
|
|
||||||
await models.TicketDms.create({ticketFk: ticketId, dmsFk: dms[0].id}, myOptions);
|
await models.TicketDms.create({ticketFk: ticketId, dmsFk: dms[0].id}, myOptions);
|
||||||
await ticket.updateAttribute('isSigned', true, myOptions);
|
await ticket.updateAttribute('isSigned', true, myOptions);
|
||||||
|
|
||||||
const deliveryState = await models.State.findOne({
|
const deliveryState = await models.State.findOne({
|
||||||
<<<<<<< HEAD
|
|
||||||
where: {code: 'DELIVERED'}
|
where: {code: 'DELIVERED'}
|
||||||
=======
|
|
||||||
where: {
|
|
||||||
code: 'DELIVERED'
|
|
||||||
}
|
|
||||||
>>>>>>> dev
|
|
||||||
}, myOptions);
|
}, myOptions);
|
||||||
|
|
||||||
await models.Ticket.state(ctx, {
|
await models.Ticket.state(ctx, {
|
||||||
|
|
Loading…
Reference in New Issue