fix: [individual] fetching failed due to incorrect organisation model call

feature/docker-ci
iglocska 2021-06-29 13:13:41 +02:00
parent 65bd9306ba
commit 96248bbd00
No known key found for this signature in database
GPG Key ID: BEA224F1FEF113AC
1 changed files with 2 additions and 1 deletions

View File

@ -77,8 +77,9 @@ class IndividualsTable extends AppTable
$this->saveMetaFields($id, $individual);
}
if (!empty($individual['alignments'])) {
$Organisation = \Cake\ORM\TableRegistry::getTableLocator()->get('Organisations');
foreach ($individual['alignments'] as $alignment) {
$org_id = $this->Organisation->captureOrg($alignment['organisation']);
$org_id = $Organisation->captureOrg($alignment['organisation']);
if ($org_id) {
$this->Alignments->setAlignment($org_id, $individual->id, $alignment['type']);
}