fix: refs #4466 test back
gitea/salix/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jorge Penadés 2024-02-05 09:30:29 +01:00
parent 17680b2cc7
commit 05478b43f2
2 changed files with 4 additions and 14 deletions

View File

@ -110,9 +110,7 @@ module.exports = Self => {
foreignValue: dueDated.foreignValue,
}, myOptions));
}
}
if (isRectification) {
} else {
for (let intrastat of invoiceInIntrastat) {
promises.push(models.InvoiceInIntrastat.create({
invoiceInFk: clone.id,

View File

@ -70,19 +70,11 @@ describe('Ticket cloning - clone function', () => {
it('should create a ticket without sales', async() => {
const servicesIds = [4];
const tx = await models.Sale.beginTransaction({});
const options = {transaction: tx};
try {
const tickets = await models.Sale.clone(ctx, null, servicesIds, false, options);
const refundedTicket = await getTicketRefund(tickets[0].id, options);
expect(refundedTicket).toBeDefined();
const tickets = await models.Sale.clone(ctx, null, servicesIds, false, false, options);
const refundedTicket = await getTicketRefund(tickets[0].id, options);
await tx.rollback();
} catch (e) {
await tx.rollback();
throw e;
}
expect(refundedTicket).toBeDefined();
});
});