refs #5134 feat: models
gitea/salix/pipeline/head There was a failure building this commit Details

This commit is contained in:
Sergio De la torre 2023-09-22 12:29:56 +02:00
parent 1ec51d94cf
commit ed1d8ca94f
6 changed files with 51 additions and 2 deletions

View File

@ -26,11 +26,17 @@
"shelving": { "shelving": {
"type": "string" "type": "string"
}, },
"subName": {
"type": "string"
},
"packing": { "packing": {
"type": "number" "type": "number"
}, },
"stock": { "stock": {
"type": "number" "type": "number"
},
"size": {
"type": "number"
} }
} }
} }

View File

@ -20,10 +20,16 @@
}, },
"created": { "created": {
"type": "date" "type": "date"
},
"grouping": {
"type": "number"
}, },
"isChecked": { "isChecked": {
"type": "boolean" "type": "boolean"
}, },
"packing": {
"type": "number"
},
"visible": { "visible": {
"type": "number" "type": "number"
}, },

View File

@ -9,12 +9,11 @@
"properties": { "properties": {
"id": { "id": {
"type": "number", "type": "number",
"id": true,
"description": "Identifier" "description": "Identifier"
}, },
"code": { "code": {
"type": "string", "type": "string",
"required": true "id": true
}, },
"parkingFk": { "parkingFk": {
"type": "number" "type": "number"

View File

@ -17,6 +17,12 @@
"Expedition": { "Expedition": {
"dataSource": "vn" "dataSource": "vn"
}, },
"ExpeditionPallet": {
"dataSource": "vn"
},
"ExpeditionScan": {
"dataSource": "vn"
},
"ExpeditionState": { "ExpeditionState": {
"dataSource": "vn" "dataSource": "vn"
}, },

View File

@ -0,0 +1,16 @@
{
"name": "ExpeditionPallet",
"options": {
"mysql": {
"table": "expeditionPallet"
}
},
"acls": [{
"accessType": "WRITE",
"principalType": "ROLE",
"principalId": "production",
"permission": "ALLOW"
}]
}

View File

@ -0,0 +1,16 @@
{
"name": "ExpeditionScan",
"options": {
"mysql": {
"table": "expeditionScan"
}
},
"acls": [{
"accessType": "WRITE",
"principalType": "ROLE",
"principalId": "production",
"permission": "ALLOW"
}]
}