salix/modules/zone/back/methods/agency/getShipped.js

68 lines
1.8 KiB
JavaScript
Raw Normal View History

const ParameterizedSQL = require('loopback-connector').ParameterizedSQL;
2019-01-25 10:58:50 +00:00
module.exports = Self => {
2023-05-11 06:00:49 +00:00
Self.remoteMethodCtx('getShipped', {
2019-01-25 10:58:50 +00:00
description: 'Returns the first shipped possible for params',
accessType: 'READ',
accepts: [{
2019-05-30 06:41:08 +00:00
arg: 'landed',
type: 'date',
required: true
},
{
arg: 'addressFk',
type: 'number',
required: true
},
{
arg: 'agencyModeFk',
type: 'number',
required: true
},
{
arg: 'warehouseFk',
type: 'number',
required: true
2019-01-25 10:58:50 +00:00
}],
returns: {
2019-05-30 06:41:08 +00:00
type: 'date',
2019-01-25 10:58:50 +00:00
root: true
},
http: {
path: `/getShipped`,
verb: 'get'
}
});
2023-05-11 06:00:49 +00:00
Self.getShipped = async(ctx, landed, addressFk, agencyModeFk, warehouseFk, options) => {
2021-08-13 14:46:44 +00:00
const myOptions = {};
if (typeof options == 'object')
Object.assign(myOptions, options);
const stmts = [];
2023-05-11 06:00:49 +00:00
const userId = ctx.req.accessToken.userId;
const models = Self.app.models;
const isProductionAssistant = await models.VnUser.hasRole(userId, 'productionAssi', myOptions);
stmts.push(new ParameterizedSQL(
2023-05-11 06:00:49 +00:00
`CALL vn.zone_getShipped(?, ?, ?, ?)`, [
landed,
addressFk,
2023-05-11 06:00:49 +00:00
agencyModeFk,
isProductionAssistant
]
));
const rsIndex = stmts.push(new ParameterizedSQL(
`SELECT * FROM tmp.zoneGetShipped WHERE warehouseFk = ?`, [
warehouseFk
]
)) - 1;
const sql = ParameterizedSQL.join(stmts, ';');
const shipped = await Self.rawStmt(sql, myOptions);
return shipped[rsIndex][0];
2019-01-25 10:58:50 +00:00
};
};