Merge pull request 'refs #6877 add attenderFk' (!2427) from 6877-modPeticionesCompra into dev
gitea/salix/pipeline/head This commit looks good Details

Reviewed-on: #2427
Reviewed-by: Alex Moreno <alexm@verdnatura.es>
This commit is contained in:
Carlos Satorres 2024-05-09 10:53:10 +00:00
commit fcd1b5e351
1 changed files with 6 additions and 1 deletions

View File

@ -19,6 +19,9 @@ module.exports = Self => {
type: 'number', type: 'number',
required: true, required: true,
description: 'The requested item quantity', description: 'The requested item quantity',
}, {
arg: 'attenderFk',
type: 'number'
}], }],
returns: { returns: {
type: 'object', type: 'object',
@ -73,12 +76,14 @@ module.exports = Self => {
ticketFk: request.ticketFk, ticketFk: request.ticketFk,
itemFk: ctx.args.itemFk, itemFk: ctx.args.itemFk,
quantity: ctx.args.quantity, quantity: ctx.args.quantity,
attenderFk: ctx.args.attenderFk,
concept: item.name concept: item.name
}, myOptions); }, myOptions);
await request.updateAttributes({ await request.updateAttributes({
saleFk: sale.id, saleFk: sale.id,
itemFk: sale.itemFk, itemFk: sale.itemFk,
isOk: true isOk: true,
attenderFk: sale.attenderFk,
}, myOptions); }, myOptions);
const query = `CALL vn.sale_calculateComponent(?, NULL)`; const query = `CALL vn.sale_calculateComponent(?, NULL)`;