refactor: refs #6184 Minor changes
gitea/salix/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
parent
1d596b63a0
commit
eec36300ad
|
@ -137,23 +137,13 @@ module.exports = Self => {
|
|||
throw new UserError('Ticket is already signed');
|
||||
|
||||
if (location) await setLocation(ticketId);
|
||||
<<<<<<< HEAD
|
||||
if (!await hasSignDms(ticketId) && !gestDocCreated)
|
||||
await createGestDoc(ticketId);
|
||||
=======
|
||||
if (!gestDocCreated) await createGestDoc(ticketId);
|
||||
>>>>>>> dev
|
||||
await models.TicketDms.create({ticketFk: ticketId, dmsFk: dms[0].id}, myOptions);
|
||||
await ticket.updateAttribute('isSigned', true, myOptions);
|
||||
|
||||
const deliveryState = await models.State.findOne({
|
||||
<<<<<<< HEAD
|
||||
where: {code: 'DELIVERED'}
|
||||
=======
|
||||
where: {
|
||||
code: 'DELIVERED'
|
||||
}
|
||||
>>>>>>> dev
|
||||
}, myOptions);
|
||||
|
||||
await models.Ticket.state(ctx, {
|
||||
|
|
Loading…
Reference in New Issue