salix/modules/item/back/methods/item-shelving-sale/itemShelvingSaleSetQuantity.js

42 lines
1.3 KiB
JavaScript
Raw Normal View History

module.exports = Self => {
2023-09-28 11:26:05 +00:00
Self.remoteMethodCtx('itemShelvingSaleSetQuantity', {
description: 'Set quanitity of a sale in itemShelvingSale',
accessType: 'WRITE',
accepts: [
{
arg: 'id',
2023-09-28 06:08:40 +00:00
type: 'number',
required: true,
description: 'The sale id',
},
{
arg: 'quantity',
2023-09-28 06:08:40 +00:00
type: 'number',
required: true,
description: 'The quantity to set',
},
{
arg: 'isItemShelvingSaleEmpty',
2023-09-28 06:08:40 +00:00
type: 'boolean',
required: true,
description: 'True if the shelvingFk is empty ',
}
],
http: {
path: `/itemShelvingSaleSetQuantity`,
verb: 'POST'
}
});
2023-09-28 11:26:05 +00:00
Self.itemShelvingSaleSetQuantity = async(ctx, id, quantity, isItemShelvingSaleEmpty, options) => {
const myOptions = {userId: ctx.req.accessToken.userId};
if (typeof options == 'object')
Object.assign(myOptions, options);
await Self.rawSql(`CALL vn.itemShelvingSale_setQuantity(?, ?, ? )`,
[id, quantity, isItemShelvingSaleEmpty],
myOptions);
};
};