salix/modules/route/back/methods/agency-term/specs/createInvoiceIn.spec.js

49 lines
1.8 KiB
JavaScript
Raw Normal View History

2022-03-03 13:42:12 +00:00
const models = require('vn-loopback/server/server').models;
2022-03-11 11:24:53 +00:00
// Include after #3638 export database
2022-03-07 12:54:18 +00:00
xdescribe('AgencyTerm createInvoiceIn()', () => {
2022-03-03 13:42:12 +00:00
const rows = [
{
routeFk: 2,
supplierFk: 1,
created: '2022-03-02T23:00:00.000Z',
totalPrice: 165
}
];
const dms = [
{
2022-03-04 10:28:45 +00:00
id: 6
2022-03-03 13:42:12 +00:00
}
];
2022-03-08 12:42:44 +00:00
it('should make an invoiceIn', async() => {
2022-03-03 13:42:12 +00:00
const tx = await models.AgencyTerm.beginTransaction({});
const options = {transaction: tx};
try {
const invoiceInId = 10;
const invoiceInDueDayId = 11;
const invoiceInTaxId = 12;
2022-03-04 10:28:45 +00:00
const oldInvoiceIn = await models.InvoiceIn.findById(invoiceInId, null, options);
const oldInvoiceInDueDay = await models.InvoiceInDueDay.findById(invoiceInDueDayId, null, options);
const oldInvoiceInTax = await models.InvoiceInTax.findById(invoiceInTaxId, null, options);
2022-03-03 13:42:12 +00:00
2022-03-08 12:42:44 +00:00
await models.AgencyTerm.createInvoiceIn(rows, dms, options);
2022-03-03 13:42:12 +00:00
2022-03-04 10:28:45 +00:00
const [newInvoiceIn] = await models.InvoiceIn.rawSql('SELECT MAX(id) id FROM invoiceIn', null, options);
const [newInvoiceInDueDay] = await models.InvoiceInDueDay.rawSql('SELECT MAX(id) id FROM invoiceInDueDay', null, options);
const [newInvoiceInTax] = await models.InvoiceInTax.rawSql('SELECT MAX(id) id FROM invoiceInTax', null, options);
expect(newInvoiceIn.id).toBeGreaterThan(oldInvoiceIn.id);
expect(newInvoiceInDueDay.id).toBeGreaterThan(oldInvoiceInDueDay.id);
expect(newInvoiceInTax.id).toBeGreaterThan(oldInvoiceInTax.id);
2022-03-03 13:42:12 +00:00
await tx.rollback();
} catch (e) {
await tx.rollback();
throw e;
}
});
});