Add AI parsing and graph parsing status; update related hooks and localization; modify microtime values in config and state files

This commit is contained in:
2026-03-27 10:47:30 +01:00
parent fa3c92379f
commit 412c25f184
14 changed files with 164 additions and 15 deletions

View File

@@ -68,6 +68,7 @@ class SyncStatusOnRelate implements AfterRelate, AfterUnrelate
$entity->set('cAktenId', $advowareAkten->getId());
$entity->set('syncStatus', 'unclean');
$entity->set('aiSyncStatus', 'unclean');
$entity->set('aiParsingStatus', 'unknown');
$this->entityManager->saveEntity($entity, ['silent' => true, 'skipHooks' => true]);
$this->triggerAkteUpdate($advowareAkten->getId());
@@ -75,6 +76,7 @@ class SyncStatusOnRelate implements AfterRelate, AfterUnrelate
// Kein Akte-Link — trotzdem Sync-Status auf unclean setzen
$entity->set('syncStatus', 'unclean');
$entity->set('aiSyncStatus', 'unclean');
$entity->set('aiParsingStatus', 'unknown');
$this->entityManager->saveEntity($entity, ['silent' => true, 'skipHooks' => true]);
}