7986-workerMoto #3095

Merged
carlossa merged 7 commits from 7986-workerMoto into dev 2024-10-18 07:24:50 +00:00
2 changed files with 29 additions and 3 deletions

View File

@ -0,0 +1,6 @@
ALTER TABLE `vn`.`operator`
ADD COLUMN `machineFk` int(11) DEFAULT NULL,
ADD CONSTRAINT `operator_machine_FK` FOREIGN KEY (`machineFk`) REFERENCES `vn`.`machine` (`id`) ON DELETE SET NULL ON UPDATE CASCADE;
INSERT INTO salix.ACL (model,property,accessType,permission,principalType,principalId)
VALUES ('Machine','*','*','ALLOW','ROLE','productionBoss');

View File

@ -24,13 +24,28 @@
"warehouseFk": {
"type": "number"
},
"sectorFk": {
"type": "number"
},
"labelerFk": {
"type": "number"
},
"isOnReservationMode": {
"type": "boolean",
"required": true
}
},
"machineFk": {
"type": "number"
},
"linesLimit": {
"type": "number"
},
"volumeLimit": {
"type": "number"
},
"sizeLimit": {
"type": "number"
}
},
"relations": {
"sector": {
@ -53,6 +68,11 @@
"model": "ItemPackingType",
"foreignKey": "itemPackingTypeFk",
"primaryKey": "code"
}
},
"machine": {
"type": "belongsTo",
"model": "Machine",
"foreignKey": "machineFk"
}
}
}
}