salix/modules/invoiceOut/back/models/invoice-correction.json

29 lines
603 B
JSON
Raw Normal View History

2023-07-28 13:21:43 +00:00
{
"name": "InvoiceCorrection",
"base": "VnModel",
"options": {
"mysql": {
"table": "invoiceCorrection"
}
},
"properties": {
"correctingFk": {
"id": true,
"type": "number",
"description": "Identifier"
},
"correctedFk": {
"type": "number"
},
"cplusRectificationTypeFk": {
"type": "number"
},
2023-11-14 14:45:52 +00:00
"siiTypeInvoiceOutFk": {
2023-07-28 13:21:43 +00:00
"type": "number"
},
"invoiceCorrectionTypeFk": {
"type": "number"
}
}
2023-11-14 14:45:52 +00:00
}