39 lines
683 B
JSON
39 lines
683 B
JSON
{
|
|
"name": "Warehouse",
|
|
"description": "Warehouses from where orders are sent",
|
|
"base": "VnModel",
|
|
"options": {
|
|
"mysql": {
|
|
"table": "warehouse"
|
|
}
|
|
},
|
|
"properties": {
|
|
"id": {
|
|
"id": true,
|
|
"type": "number",
|
|
"forceId": false
|
|
},
|
|
"name": {
|
|
"type": "string"
|
|
},
|
|
"code": {
|
|
"type": "string"
|
|
},
|
|
"isInventory": {
|
|
"type": "number"
|
|
},
|
|
"isManaged":{
|
|
"type": "boolean"
|
|
}
|
|
},
|
|
"acls": [
|
|
{
|
|
"accessType": "READ",
|
|
"principalType": "ROLE",
|
|
"principalId": "$everyone",
|
|
"permission": "ALLOW"
|
|
}
|
|
],
|
|
"scope" : {"where": {"isForTicket": {"neq": 0}}}
|
|
}
|