Skip to content

Commit

Permalink
Merge pull request #50 from CommonGateway/feature/BEHEER-2772/omschri…
Browse files Browse the repository at this point in the history
…jvingLijkvinding

Add field 'omschrijvinglijkvinding' to mapping
  • Loading branch information
rjzondervan authored Jul 2, 2024
2 parents fdc8464 + 95c058e commit 50ce094
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Service/DeceasementService.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,10 @@ public function getDeathProperties(ObjectEntity $object, array $objectArray, boo
$datum = new DateTime($caseProperties['tijdlijkvinding']);
$objectArray['timeOfFinding'] = $datum->format('H:i');
}

if (isset($caseProperties['omschrijvinglijkvinding']) === true) {
$objectArray['explanation'] = $caseProperties['omschrijvinglijkvinding'];
}
$objectArray['correspondence'] = $this->getCorrespondence($caseProperties);
$objectArray['extracts'] = $this->getExtracts($caseProperties);
$objectArray['funeralServices'] = $this->getFuneralServices($caseProperties);
Expand Down

0 comments on commit 50ce094

Please sign in to comment.