salix/services/loopback/common/models/client.json

157 lines
2.9 KiB
JSON
Raw Normal View History

{
"name": "Client",
2017-10-11 13:36:47 +00:00
"base": "VnModel",
"options": {
"mysql": {
"table": "client"
}
},
"properties": {
"id": {
"type": "Number",
"id": true,
2017-02-07 16:02:17 +00:00
"description": "Identifier"
},
"name": {
"type": "string",
2017-01-12 10:02:22 +00:00
"required": true
},
"fi": {
"type": "string",
"description": "Fiscal indentifier"
},
"socialName": {
"type": "string",
"required": true
},
"contact": {
"type": "string"
},
2017-01-02 06:28:36 +00:00
"street": {
"type": "string"
2017-01-02 06:28:36 +00:00
},
"city": {
"type": "string"
2017-01-02 06:28:36 +00:00
},
2017-05-09 12:04:44 +00:00
"postcode": {
"type": "string"
},
"email": {
"type": "string"
},
"phone": {
"type": "string"
},
"mobile": {
"type": "string"
},
"isActive": {
"type": "boolean"
},
"credit": {
"type": "Number"
},
2017-05-09 12:04:44 +00:00
"creditInsurance": {
"type": "Number"
},
"iban": {
"type": "string"
},
2017-01-02 06:28:36 +00:00
"dueDay": {
"type": "Number"
},
2017-11-22 07:59:21 +00:00
"isEqualizated": {
"type": "boolean",
2017-05-10 15:18:25 +00:00
"description": "The client has equalization tax"
},
"hasToInvoiceByAddress": {
"type": "boolean",
"description": "The client has to be invoiced by address"
},
"hasToInvoice": {
"type": "boolean",
"description": "Global invoicing enabled for the client"
},
"isToBeMailed": {
"type": "boolean",
"description": "Send invoices by email"
2017-05-05 10:54:47 +00:00
},
"hasSepaVnl": {
2017-05-09 12:04:44 +00:00
"type": "boolean"
},
2017-11-22 07:59:21 +00:00
"hasCoreVnl": {
2017-05-09 12:04:44 +00:00
"type": "boolean"
},
2017-11-22 07:59:21 +00:00
"hasCoreVnh": {
2017-05-09 12:04:44 +00:00
"type": "boolean"
},
"isTaxDataChecked":{
"type": "boolean"
},
2017-05-09 12:04:44 +00:00
"eypbc": {
"type": "boolean"
},
"quality": {
2017-05-05 10:54:47 +00:00
"type": "Number"
},
2017-11-22 07:59:21 +00:00
"isVies": {
2017-07-03 12:19:47 +00:00
"type": "boolean"
2017-05-09 12:04:44 +00:00
},
"isRelevant": {
"type": "boolean"
},
"accountingAccount": {
"type": "string"
2017-05-12 13:21:37 +00:00
},
"created": {
"type": "date"
}
},
"relations": {
2017-05-12 11:36:12 +00:00
"account": {
2017-05-12 09:14:55 +00:00
"type": "belongsTo",
"model": "Account",
"foreignKey": "id"
2017-02-21 10:36:43 +00:00
},
2017-05-12 11:36:12 +00:00
"payMethod": {
2017-05-12 09:14:55 +00:00
"type": "belongsTo",
"model": "PayMethod",
2017-05-12 09:14:55 +00:00
"foreignKey": "payMethodFk"
},
2017-05-12 11:36:12 +00:00
"salesPerson": {
2017-05-12 09:14:55 +00:00
"type": "belongsTo",
"model": "Worker",
2017-05-12 09:14:55 +00:00
"foreignKey": "salesPersonFk"
},
2017-05-12 11:36:12 +00:00
"province":{
2017-05-12 09:14:55 +00:00
"type": "belongsTo",
"model": "Province",
"foreignKey": "provinceFk"
},
2017-05-12 11:36:12 +00:00
"country":{
2017-05-12 09:14:55 +00:00
"type": "belongsTo",
"model": "Country",
"foreignKey": "countryFk"
},
2017-05-12 11:36:12 +00:00
"contactChannel":{
2017-05-12 09:14:55 +00:00
"type": "belongsTo",
"model": "ContactChannel",
"foreignKey": "contactChannelFk"
},
2017-05-12 11:36:12 +00:00
"type": {
"type": "belongsTo",
"model": "ClientType",
"foreignKey": "typeFk"
},
"addresses": {
2017-02-21 10:36:43 +00:00
"type": "hasMany",
"model": "Address",
2017-05-09 12:04:44 +00:00
"foreignKey": "clientFk"
2018-03-05 09:56:51 +00:00
},
"greuge": {
"type": "hasMany",
"model": "Greuge",
"foreignKey": "clientFk"
}
2017-10-11 13:36:47 +00:00
}
}