fix: refs #7529 workerPit
gitea/salix/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
parent
c0ee82fd4f
commit
5da6c09f68
|
@ -1,8 +0,0 @@
|
|||
-- Place your SQL code here
|
||||
-- Auto-generated SQL script #202406101036
|
||||
INSERT INTO salix.ACL (model,property,accessType,permission,principalType,principalId)
|
||||
VALUES ('Worker','workerRelatives','*','ALLOW','ROLE','hr');
|
||||
INSERT INTO salix.ACL (model,property,accessType,permission,principalType,principalId)
|
||||
VALUES ('Worker','workerIrpf','*','ALLOW','ROLE','hr');
|
||||
INSERT INTO salix.ACL (model,property,accessType,permission,principalType,principalId)
|
||||
VALUES ('Worker','disabilityGrade','*','ALLOW','ROLE','hr');
|
|
@ -0,0 +1,15 @@
|
|||
ALTER TABLE vn.workerRelatives DROP FOREIGN KEY workerRelatives_disabilityGradeFk;
|
||||
ALTER TABLE vn.workerRelatives DROP FOREIGN KEY workerRelatives_workerFk;
|
||||
|
||||
RENAME TABLE `vn`.`workerRelatives` TO `vn`.`workerRelative`;
|
||||
|
||||
ALTER TABLE vn.workerRelative ADD CONSTRAINT `workerRelatives_disabilityGradeFk` FOREIGN KEY (`disabilityGradeFk`) REFERENCES `disabilityGrade` (`id`) ON UPDATE CASCADE;
|
||||
ALTER TABLE vn.workerRelative ADD CONSTRAINT `workerRelatives_workerFk` FOREIGN KEY (`workerFk`) REFERENCES `workerIrpf` (`workerFk`) ON DELETE CASCADE ON UPDATE CASCADE;
|
||||
|
||||
|
||||
INSERT INTO salix.ACL (model,property,accessType,permission,principalType,principalId)
|
||||
VALUES
|
||||
('Worker','workerRelative','*','ALLOW','ROLE','hr'),
|
||||
('Worker','workerIrpf','*','ALLOW','ROLE','hr'),
|
||||
('Worker','disabilityGrade','*','ALLOW','ROLE','hr');
|
||||
|
|
@ -131,7 +131,7 @@
|
|||
"DisabilityGrade": {
|
||||
"dataSource": "vn"
|
||||
},
|
||||
"WorkerRelatives": {
|
||||
"WorkerRelative": {
|
||||
"dataSource": "vn"
|
||||
},
|
||||
"MedicalReview": {
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
"disabilityGradeFk": {
|
||||
"type" : "number"
|
||||
},
|
||||
"isDependent": {
|
||||
"isDependend": {
|
||||
"type" : "number"
|
||||
},
|
||||
"familySituation": {
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
{
|
||||
"name": "WorkerRelatives",
|
||||
"name": "WorkerRelative",
|
||||
"description": "Model 145 IRPF",
|
||||
"base": "VnModel",
|
||||
"options": {
|
||||
"mysql": {
|
||||
"table": "workerRelatives"
|
||||
"table": "workerRelative"
|
||||
}
|
||||
},
|
||||
"properties": {
|
||||
|
@ -31,7 +31,7 @@
|
|||
"isDependend": {
|
||||
"type" : "boolean"
|
||||
},
|
||||
"islointCustody": {
|
||||
"isJointCustody": {
|
||||
"type" : "boolean"
|
||||
},
|
||||
"updated": {
|
||||
|
@ -46,7 +46,7 @@
|
|||
},
|
||||
"worker": {
|
||||
"type": "belongsTo",
|
||||
"model": "WorkerIrpf",
|
||||
"model": "VnUser",
|
||||
"foreignKey": "workerFK"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -135,6 +135,16 @@
|
|||
"type": "hasMany",
|
||||
"model": "WorkerTimeControlMail",
|
||||
"foreignKey": "workerFk"
|
||||
},
|
||||
"irpf": {
|
||||
"type": "hasMany",
|
||||
"model": "WorkerIrpf",
|
||||
"foreignKey": "workerFk"
|
||||
},
|
||||
"workerRelative": {
|
||||
"type": "hasMany",
|
||||
"model": "WorkerRelative",
|
||||
"foreignKey": "workerFK"
|
||||
}
|
||||
},
|
||||
"acls": [
|
||||
|
@ -207,4 +217,4 @@
|
|||
]
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue