Add localization files and layout configurations for CAkten and related entities
- Created localization JSON files for multiple languages (e.g., Danish, German, Greek, English, Spanish, etc.) for CAkten and CAktenCDokumente. - Added layout configurations for CAkten, including detail views, side panels, and bottom panels. - Implemented metadata definitions for CAkten, including field definitions, relationship panels, and scopes. - Introduced new JSON files for managing document relationships and listing configurations.
This commit is contained in:
@@ -60,7 +60,7 @@ class CreateAdvowareAkte implements AfterSave
|
||||
$this->entityManager->saveEntity($entity, ['silent' => true, 'skipHooks' => true]);
|
||||
|
||||
// Synchronisiere Aktennummer
|
||||
$akte = $this->entityManager->getEntity('CAdvowareAkten', $rkAkteId);
|
||||
$akte = $this->entityManager->getEntity('CAkten', $rkAkteId);
|
||||
if ($akte) {
|
||||
$this->syncAktennummer($entity, $akte);
|
||||
}
|
||||
@@ -103,7 +103,7 @@ class CreateAdvowareAkte implements AfterSave
|
||||
$akteData['teamsIds'] = $teamsIds;
|
||||
}
|
||||
|
||||
$akte = $this->entityManager->createEntity('CAdvowareAkten', $akteData);
|
||||
$akte = $this->entityManager->createEntity('CAkten', $akteData);
|
||||
|
||||
if ($akte) {
|
||||
// Verknüpfe mit Kündigung
|
||||
|
||||
@@ -47,7 +47,7 @@ class SyncAdvowareAkte implements AfterRelate
|
||||
$advowareAkteId = $foreignEntity->get('advowareAktenId');
|
||||
|
||||
if ($advowareAkteId) {
|
||||
$advowareAkte = $this->entityManager->getEntity('CAdvowareAkten', $advowareAkteId);
|
||||
$advowareAkte = $this->entityManager->getEntity('CAkten', $advowareAkteId);
|
||||
|
||||
if ($advowareAkte) {
|
||||
$GLOBALS['log']->info("CKuendigung SyncAdvowareAkte: Found AdvowareAkte {$advowareAkte->getId()} on Räumungsklage {$foreignEntity->getId()}");
|
||||
|
||||
Reference in New Issue
Block a user