feat(salix): refs #6321 #6321 New arg

This commit is contained in:
Javier Segarra 2024-05-13 13:51:04 +02:00
parent e30c66313f
commit 888f15049a
1 changed files with 7 additions and 2 deletions

View File

@ -53,6 +53,11 @@ module.exports = Self => {
arg: 'lack',
type: 'number',
description: 'The item id',
},
{
arg: 'days',
type: 'number',
description: 'The range days',
}
],
returns: [
@ -74,7 +79,7 @@ module.exports = Self => {
if (typeof options == 'object')
Object.assign(myOptions, options);
const filterKeyOrder = ['id', 'longname', 'supplier', 'colour', 'size', 'origen', 'lack', 'warehouse'];
const filterKeyOrder = ['days', 'id', 'longname', 'supplier', 'colour', 'size', 'origen', 'lack', 'warehouse'];
delete ctx?.args?.ctx;
@ -82,7 +87,7 @@ module.exports = Self => {
if (filter)
ctx.args = Object.assign(ctx.args ?? {}, filter);
let procedureParams = [true, 2];
let procedureParams = [true];
procedureParams.push(...filterKeyOrder.map(clave => ctx.args[clave] ?? null));
const procedureArgs = Array(procedureParams.length).fill('?').join(', ');