refs #6276:modify back silex→salix
This commit is contained in:
parent
924fe12a93
commit
0b5ffcc81c
|
@ -6,7 +6,7 @@ module.exports = Self => {
|
|||
accepts: [
|
||||
{
|
||||
arg: 'code',
|
||||
type: 'string',
|
||||
type: 'number',
|
||||
required: true
|
||||
},
|
||||
{
|
||||
|
|
|
@ -50,7 +50,7 @@ module.exports = Self => {
|
|||
});
|
||||
if (machineWorker) {
|
||||
await machineWorker.updateAttributes({
|
||||
inTime: new Date(Date.now())
|
||||
outTime: new Date(Date.now())
|
||||
}, myOptions);
|
||||
}
|
||||
|
||||
|
|
|
@ -9,6 +9,10 @@ INSERT INTO `salix`.`ACL` (model, property, accessType, permission, principalTyp
|
|||
('SaleTracking','updateTracking','WRITE','ALLOW','ROLE','employee'),
|
||||
('SaleTracking','mark','WRITE','ALLOW','ROLE','employee'),
|
||||
('ItemBarcode','deleteByItemAndCode','WRITE','ALLOW','ROLE','employee'),
|
||||
('Collection','addItem','WRITE','ALLOW','ROLE','employee');
|
||||
('ExpeditionPallet', '*', 'READ', 'ALLOW', 'ROLE', 'production');
|
||||
('Collection','addItem','WRITE','ALLOW','ROLE','employee'),
|
||||
('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');;
|
||||
|
|
@ -331,5 +331,7 @@
|
|||
"Cannot past travels with entries": "No se pueden pasar envíos con entradas",
|
||||
"It was not able to remove the next expeditions:": "No se pudo eliminar las siguientes expediciones: {{expeditions}}",
|
||||
"The line could not be marked": "The line could not be marked",
|
||||
"This user does not have an assigned tablet": "Este usuario no tiene tablet asignada"
|
||||
"This user does not have an assigned tablet": "Este usuario no tiene tablet asignada",
|
||||
"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"
|
||||
}
|
|
@ -4,7 +4,7 @@ module.exports = Self => {
|
|||
accessType: 'WRITE',
|
||||
accepts: [{
|
||||
arg: 'shelvingFk',
|
||||
type: 'number',
|
||||
type: 'string',
|
||||
required: true,
|
||||
},
|
||||
{
|
||||
|
|
|
@ -62,7 +62,7 @@ module.exports = Self => {
|
|||
|
||||
return {
|
||||
id: itemShelving.id,
|
||||
item: itemShelving.itemFk,
|
||||
itemFk: itemShelving.itemFk,
|
||||
longName: item ? item.longName || `${item.name} ${item.size}` : '',
|
||||
quantity: itemShelving.visible,
|
||||
stickers: Math.ceil(itemShelving.visible / itemShelving.packing),
|
||||
|
|
|
@ -44,7 +44,7 @@ module.exports = Self => {
|
|||
let itemInfo;
|
||||
if (result.length) {
|
||||
itemInfo = {...result[0]};
|
||||
itemInfo.barcodes = barcodes.map(barcode => barcode.code);
|
||||
itemInfo.barcodes = barcodes;
|
||||
}
|
||||
|
||||
return itemInfo;
|
||||
|
|
|
@ -16,6 +16,7 @@ module.exports = Self => {
|
|||
},
|
||||
returns: {
|
||||
type: 'object',
|
||||
root: true
|
||||
},
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue