7152-devToTest_2414 #2228

Merged
alexm merged 636 commits from 7152-devToTest_2414 into test 2024-03-28 08:26:34 +00:00
8 changed files with 15 additions and 8 deletions
Showing only changes of commit 7d0c11e937 - Show all commits

View File

@ -6,7 +6,7 @@ module.exports = Self => {
accepts: [ accepts: [
{ {
arg: 'code', arg: 'code',
type: 'string', type: 'number',
required: true required: true
}, },
{ {

View File

@ -50,7 +50,7 @@ module.exports = Self => {
}); });
if (machineWorker) { if (machineWorker) {
await machineWorker.updateAttributes({ await machineWorker.updateAttributes({
inTime: new Date(Date.now()) outTime: new Date(Date.now())
}, myOptions); }, myOptions);
} }

View File

@ -9,6 +9,10 @@ INSERT INTO `salix`.`ACL` (model, property, accessType, permission, principalTyp
('SaleTracking','updateTracking','WRITE','ALLOW','ROLE','employee'), ('SaleTracking','updateTracking','WRITE','ALLOW','ROLE','employee'),
('SaleTracking','mark','WRITE','ALLOW','ROLE','employee'), ('SaleTracking','mark','WRITE','ALLOW','ROLE','employee'),
('ItemBarcode','deleteByItemAndCode','WRITE','ALLOW','ROLE','employee'), ('ItemBarcode','deleteByItemAndCode','WRITE','ALLOW','ROLE','employee'),
('Collection','addItem','WRITE','ALLOW','ROLE','employee'); ('Collection','addItem','WRITE','ALLOW','ROLE','employee'),
('ExpeditionPallet', '*', 'READ', 'ALLOW', 'ROLE', 'production'); ('ExpeditionPallet', '*', 'READ', 'ALLOW', 'ROLE', 'production'),
('MobileAppVersionControl', '*', 'READ', 'ALLOW', 'ROLE', 'production'),
('Collection', 'assignCollection', 'WRITE', 'ALLOW', 'ROLE', 'production'),
('Collection', 'addItem', 'WRITE', 'ALLOW', 'ROLE', 'production'),
('MachineWorker', 'updateInTime', 'WRITE', 'ALLOW', 'ROLE', 'production');;

View File

@ -337,5 +337,7 @@
"Incorrect pin": "Pin incorrecto.", "Incorrect pin": "Pin incorrecto.",
"You already have the mailAlias": "Ya tienes este alias de correo", "You already have the mailAlias": "Ya tienes este alias de correo",
"The alias cant be modified": "Este alias de correo no puede ser modificado", "The alias cant be modified": "Este alias de correo no puede ser modificado",
"No tickets to invoice": "No hay tickets para facturar" "No tickets to invoice": "No hay tickets para facturar",
"No hay tickets para sacar": "No hay tickets para sacar",
"There is no zone for these parameters 999999": "There is no zone for these parameters 999999"
} }

View File

@ -4,7 +4,7 @@ module.exports = Self => {
accessType: 'WRITE', accessType: 'WRITE',
accepts: [{ accepts: [{
arg: 'shelvingFk', arg: 'shelvingFk',
type: 'number', type: 'string',
required: true, required: true,
}, },
{ {

View File

@ -62,7 +62,7 @@ module.exports = Self => {
return { return {
id: itemShelving.id, id: itemShelving.id,
item: itemShelving.itemFk, itemFk: itemShelving.itemFk,
longName: item ? item.longName || `${item.name} ${item.size}` : '', longName: item ? item.longName || `${item.name} ${item.size}` : '',
quantity: itemShelving.visible, quantity: itemShelving.visible,
stickers: Math.ceil(itemShelving.visible / itemShelving.packing), stickers: Math.ceil(itemShelving.visible / itemShelving.packing),

View File

@ -44,7 +44,7 @@ module.exports = Self => {
let itemInfo; let itemInfo;
if (result.length) { if (result.length) {
itemInfo = {...result[0]}; itemInfo = {...result[0]};
itemInfo.barcodes = barcodes.map(barcode => barcode.code); itemInfo.barcodes = barcodes;
} }
return itemInfo; return itemInfo;

View File

@ -16,6 +16,7 @@ module.exports = Self => {
}, },
returns: { returns: {
type: 'object', type: 'object',
root: true
}, },
}); });