using hasAnyNegative: refs #6515 #1905
|
@ -85,7 +85,7 @@ module.exports = Self => {
|
|||
throw new UserError(`A ticket with an amount of zero can't be invoiced`);
|
||||
|
||||
// Validates ticket nagative base
|
||||
const hasNegativeBase = await getNegativeBase(ticketId, myOptions);
|
||||
const hasNegativeBase = await getNegativeBase(maxShipped, clientId, companyId, myOptions);
|
||||
if (hasNegativeBase && company.code == 'VNL')
|
||||
throw new UserError(`A ticket with a negative base can't be invoiced`);
|
||||
} else {
|
||||
|
@ -162,10 +162,13 @@ module.exports = Self => {
|
|||
return result.invoiceable;
|
||||
}
|
||||
|
||||
async function getNegativeBase(ticketId, options) {
|
||||
async function getNegativeBase(maxShipped, clientId, companyId, options) {
|
||||
const models = Self.app.models;
|
||||
const query = 'SELECT vn.hasSomeNegativeBase(?) AS base';
|
||||
const [result] = await models.InvoiceOut.rawSql(query, [ticketId], options);
|
||||
await models.InvoiceOut.rawSql('CALL invoiceOut_exportationFromClient(?,?,?)',
|
||||
|
||||
[maxShipped, clientId, companyId], options
|
||||
);
|
||||
const query = 'SELECT vn.hasAnyNegativeBase() AS base';
|
||||
const [result] = await models.InvoiceOut.rawSql(query, [], options);
|
||||
|
||||
return result.base;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Crea la tabla temporal necesaria ticketToInvoice para hasAnyNegativeBase() @jgallego