salix/modules/invoiceOut/back/models/invoice-out-serial.json

42 lines
855 B
JSON
Raw Permalink Normal View History

2017-12-20 08:53:50 +00:00
{
"name": "InvoiceOutSerial",
2017-12-20 08:53:50 +00:00
"base": "VnModel",
"options": {
"mysql": {
"table": "invoiceOutSerial"
2017-12-20 08:53:50 +00:00
}
},
"properties": {
"code": {
"type": "string",
2017-12-20 08:53:50 +00:00
"id": true,
"description": "Identifier"
},
"description": {
"type": "string"
2017-12-20 08:53:50 +00:00
},
"isTaxed": {
"type": "boolean"
2017-12-20 08:53:50 +00:00
},
"isCEE": {
"type": "boolean"
2024-07-11 06:37:08 +00:00
},
"type": {
"type": "string"
2017-12-20 08:53:50 +00:00
}
},
"relations": {
"taxArea": {
2017-12-20 08:53:50 +00:00
"type": "belongsTo",
"model": "TaxArea",
"foreignKey": "taxAreaFk"
2017-12-20 08:53:50 +00:00
}
2018-02-21 08:28:17 +00:00
},
"acls": [{
2018-02-21 08:28:17 +00:00
"accessType": "READ",
"principalType": "ROLE",
"principalId": "$everyone",
"permission": "ALLOW"
}]
2024-07-11 06:37:08 +00:00
}