63 lines
1.0 KiB
JSON
63 lines
1.0 KiB
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"
|
|
},
|
|
"isDestiny": {
|
|
"type": "boolean"
|
|
},
|
|
"countryFk": {
|
|
"type": "number"
|
|
}
|
|
},
|
|
"relations": {
|
|
"country": {
|
|
"type": "belongsTo",
|
|
"model": "Country",
|
|
"foreignKey": "countryFk"
|
|
},
|
|
"address": {
|
|
"type": "belongsTo",
|
|
"model": "Address",
|
|
"foreignKey": "addressFk"
|
|
}
|
|
},
|
|
"acls": [
|
|
{
|
|
"accessType": "READ",
|
|
"principalType": "ROLE",
|
|
"principalId": "$everyone",
|
|
"permission": "ALLOW"
|
|
}
|
|
],
|
|
"scope": {
|
|
"where": {
|
|
"isForTicket": {
|
|
"neq": 0
|
|
}
|
|
}
|
|
}
|
|
}
|