2017-10-13 14:22:45 +00:00
|
|
|
{
|
2019-02-01 08:31:01 +00:00
|
|
|
"name": "Worker",
|
|
|
|
"description": "Company employees",
|
2023-12-05 06:48:56 +00:00
|
|
|
"base": "VnModel",
|
|
|
|
"mixins": {
|
|
|
|
"Loggable": true
|
|
|
|
},
|
2019-02-01 08:31:01 +00:00
|
|
|
"options": {
|
|
|
|
"mysql": {
|
|
|
|
"table": "worker"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"properties": {
|
|
|
|
"id": {
|
2022-03-31 08:54:30 +00:00
|
|
|
"type": "number",
|
2019-02-01 08:31:01 +00:00
|
|
|
"id": true,
|
|
|
|
"description": "Identifier"
|
|
|
|
},
|
|
|
|
"firstName": {
|
|
|
|
"type": "string",
|
|
|
|
"required": true
|
|
|
|
},
|
2019-02-27 12:10:26 +00:00
|
|
|
"lastName": {
|
2019-02-01 08:31:01 +00:00
|
|
|
"type": "string",
|
2019-08-27 09:12:17 +00:00
|
|
|
"required": true
|
2019-02-01 08:31:01 +00:00
|
|
|
},
|
|
|
|
"phone": {
|
2022-03-31 08:54:30 +00:00
|
|
|
"type" : "string"
|
2019-02-01 08:31:01 +00:00
|
|
|
},
|
2020-09-22 11:59:00 +00:00
|
|
|
"bossFk": {
|
2022-03-31 08:54:30 +00:00
|
|
|
"type" : "number"
|
2022-03-31 07:18:18 +00:00
|
|
|
},
|
|
|
|
"maritalStatus": {
|
2022-03-31 08:54:30 +00:00
|
|
|
"type" : "string"
|
2022-03-31 07:18:18 +00:00
|
|
|
},
|
|
|
|
"originCountryFk": {
|
2022-03-31 08:54:30 +00:00
|
|
|
"type" : "number"
|
2022-03-31 07:18:18 +00:00
|
|
|
},
|
|
|
|
"educationLevelFk": {
|
2022-03-31 08:54:30 +00:00
|
|
|
"type" : "number"
|
2022-03-31 07:18:18 +00:00
|
|
|
},
|
|
|
|
"SSN": {
|
2022-03-31 08:54:30 +00:00
|
|
|
"type" : "string"
|
2022-04-27 12:17:41 +00:00
|
|
|
},
|
2022-07-27 10:16:41 +00:00
|
|
|
"mobileExtension": {
|
|
|
|
"type" : "number"
|
2022-11-14 14:19:16 +00:00
|
|
|
},
|
|
|
|
"code": {
|
|
|
|
"type" : "string"
|
2023-02-27 07:39:46 +00:00
|
|
|
},
|
2023-10-17 12:02:08 +00:00
|
|
|
"fi": {
|
|
|
|
"type" : "string"
|
|
|
|
},
|
|
|
|
"birth": {
|
|
|
|
"type" : "date"
|
|
|
|
},
|
2023-10-02 07:14:30 +00:00
|
|
|
"isF11Allowed": {
|
|
|
|
"type" : "boolean"
|
2024-01-12 08:03:54 +00:00
|
|
|
},
|
|
|
|
"sex": {
|
|
|
|
"type" : "string"
|
2024-05-09 06:45:17 +00:00
|
|
|
},
|
2024-05-03 12:54:12 +00:00
|
|
|
"isFreelance": {
|
|
|
|
"type" : "boolean"
|
2024-05-17 12:28:28 +00:00
|
|
|
},
|
|
|
|
"fiDueDate": {
|
|
|
|
"type": "date"
|
|
|
|
},
|
|
|
|
"hasMachineryAuthorized": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"seniority": {
|
|
|
|
"type": "date"
|
|
|
|
},
|
|
|
|
"isDisable": {
|
|
|
|
"type": "boolean"
|
|
|
|
},
|
|
|
|
"isSsDiscounted": {
|
|
|
|
"type": "boolean"
|
2019-02-01 08:31:01 +00:00
|
|
|
}
|
2024-05-17 12:28:28 +00:00
|
|
|
|
2019-02-01 08:31:01 +00:00
|
|
|
},
|
|
|
|
"relations": {
|
|
|
|
"user": {
|
|
|
|
"type": "belongsTo",
|
2023-01-24 08:05:50 +00:00
|
|
|
"model": "VnUser",
|
2023-07-04 07:57:16 +00:00
|
|
|
"foreignKey": "id"
|
2019-02-01 08:31:01 +00:00
|
|
|
},
|
2021-02-24 15:12:44 +00:00
|
|
|
"boss": {
|
|
|
|
"type": "belongsTo",
|
2023-01-24 08:05:50 +00:00
|
|
|
"model": "VnUser",
|
2021-02-24 15:12:44 +00:00
|
|
|
"foreignKey": "bossFk"
|
|
|
|
},
|
2019-02-01 08:31:01 +00:00
|
|
|
"client": {
|
|
|
|
"type": "belongsTo",
|
|
|
|
"model": "Client",
|
2023-08-22 08:45:41 +00:00
|
|
|
"foreignKey": "id"
|
2019-02-01 08:31:01 +00:00
|
|
|
},
|
|
|
|
"sip": {
|
|
|
|
"type": "belongsTo",
|
|
|
|
"model": "Sip",
|
2023-08-22 08:45:41 +00:00
|
|
|
"foreignKey": "id"
|
2019-02-01 08:31:01 +00:00
|
|
|
},
|
|
|
|
"department": {
|
|
|
|
"type": "belongsTo",
|
|
|
|
"model": "WorkerDepartment",
|
|
|
|
"foreignKey": "id"
|
|
|
|
},
|
|
|
|
"collegues": {
|
|
|
|
"type": "hasMany",
|
|
|
|
"model": "WorkerTeamCollegues",
|
|
|
|
"foreignKey": "workerFk"
|
2023-12-26 12:44:52 +00:00
|
|
|
},
|
|
|
|
"locker": {
|
2024-05-10 11:04:12 +00:00
|
|
|
"type": "hasMany",
|
2023-12-26 12:44:52 +00:00
|
|
|
"model": "Locker",
|
2024-01-12 08:03:54 +00:00
|
|
|
"foreignKey": "workerFk"
|
2019-02-01 08:31:01 +00:00
|
|
|
}
|
2024-05-08 09:03:18 +00:00
|
|
|
},
|
|
|
|
"acls":[
|
|
|
|
{
|
|
|
|
"property": "__get__locker",
|
|
|
|
"accessType": "READ",
|
|
|
|
"permission": "ALLOW",
|
|
|
|
"principalType": "ROLE",
|
|
|
|
"principalId": "$owner"
|
|
|
|
}
|
|
|
|
]
|
2022-11-14 14:19:16 +00:00
|
|
|
}
|