This commit is contained in:
parent
c875abf5e3
commit
b86110c898
|
@ -46,7 +46,7 @@ module.exports = Self => {
|
||||||
const [sales] = await Self.rawSql('CALL vn.sale_getFromTicketOrCollection(?)',
|
const [sales] = await Self.rawSql('CALL vn.sale_getFromTicketOrCollection(?)',
|
||||||
[id], myOptions);
|
[id], myOptions);
|
||||||
|
|
||||||
const isPicker = source == 'CHECKER';
|
const isPicker = source != 'CHECKER';
|
||||||
const [placements] = await Self.rawSql('CALL vn.collectionPlacement_get(?, ?)',
|
const [placements] = await Self.rawSql('CALL vn.collectionPlacement_get(?, ?)',
|
||||||
[id, isPicker], myOptions
|
[id, isPicker], myOptions
|
||||||
);
|
);
|
||||||
|
|
|
@ -52,7 +52,9 @@ module.exports = Self => {
|
||||||
return {
|
return {
|
||||||
id: itemShelving.id,
|
id: itemShelving.id,
|
||||||
itemFk: itemShelving.itemFk,
|
itemFk: itemShelving.itemFk,
|
||||||
longName: item ? item.longName || `${item.name} ${item.size}` : '',
|
name: item.name,
|
||||||
|
size: item.size,
|
||||||
|
longName: item.longName,
|
||||||
quantity: itemShelving.visible,
|
quantity: itemShelving.visible,
|
||||||
carros
|
carros
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue