Skip to content

Commit b8aa67b

Browse files
committed
fix(ZMSKVR-781): add isTicketprinter entity mapping to persist field in archive tables
- Added isTicketprinter mapping in Query/Process.php to read is_ticketprinter from buerger table - Added isTicketprinter mapping in Query/ProcessStatusArchived.php to read from archive tables - Fixes issue where is_ticketprinter was saved to buerger but not transferred to buergerarchivtoday and buergerarchiv
1 parent b76c50c commit b8aa67b

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

zmsdb/src/Zmsdb/Query/Process.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,7 @@ public function getEntityMapping()
349349
'__clientsCount' => 'process.AnzahlPersonen',
350350
'wasMissed' => 'process.wasMissed',
351351
'externalUserId' => 'process.external_user_id',
352+
'isTicketprinter' => 'process.is_ticketprinter',
352353
], 'strlen');
353354
}
354355

zmsdb/src/Zmsdb/Query/ProcessStatusArchived.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ public function getEntityMapping()
6161
"finished"
6262
)'
6363
),
64+
'isTicketprinter' => 'process.is_ticketprinter',
6465
];
6566
}
6667

0 commit comments

Comments
 (0)