2017-10-13 14:22:45 +00:00
|
|
|
{
|
|
|
|
"name": "Warehouse",
|
2018-01-29 18:57:00 +00:00
|
|
|
"description": "Warehouses from where orders are sent",
|
2017-10-13 14:22:45 +00:00
|
|
|
"base": "VnModel",
|
2018-01-29 11:37:54 +00:00
|
|
|
"options": {
|
|
|
|
"mysql": {
|
|
|
|
"table": "warehouse"
|
|
|
|
}
|
|
|
|
},
|
2017-10-13 14:22:45 +00:00
|
|
|
"properties": {
|
|
|
|
"id": {
|
|
|
|
"id": true,
|
|
|
|
"type": "Number",
|
|
|
|
"forceId": false
|
|
|
|
},
|
|
|
|
"name": {
|
|
|
|
"type": "String"
|
|
|
|
},
|
2018-01-29 11:37:54 +00:00
|
|
|
"isInventory": {
|
2017-10-13 14:22:45 +00:00
|
|
|
"type": "Number"
|
|
|
|
},
|
|
|
|
"isManaged":{
|
2018-03-28 07:30:33 +00:00
|
|
|
"type": "boolean"
|
2019-09-06 07:47:58 +00:00
|
|
|
},
|
|
|
|
"hasStowaway":{
|
|
|
|
"type": "boolean"
|
2017-10-13 14:22:45 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"acls": [
|
|
|
|
{
|
|
|
|
"accessType": "READ",
|
|
|
|
"principalType": "ROLE",
|
|
|
|
"principalId": "$everyone",
|
|
|
|
"permission": "ALLOW"
|
|
|
|
}
|
|
|
|
],
|
2019-06-07 06:05:34 +00:00
|
|
|
"scope" : {"where": {"isForTicket": {"neq": 0}}}
|
2017-10-13 14:22:45 +00:00
|
|
|
}
|