feat: add dateinameTemplate support to barcode scanner and display document names in inbox detail view
Build and Push Multi-Platform Images / build-and-push (push) Successful in 33s

This commit is contained in:
2026-05-05 14:57:26 +02:00
parent 3ace13eb67
commit 61d97464c3
4 changed files with 42 additions and 7 deletions
@@ -17,6 +17,7 @@ export interface MatchedBarcode {
value: string;
templateId: number | null;
templateName: string | null;
dateinameTemplate: string | null;
splitBefore: boolean;
actions: BarcodeActionType[];
}
@@ -113,6 +114,7 @@ export class BarcodeScannerService implements OnApplicationBootstrap {
value: qr.value,
templateId: tpl?.Id ?? null,
templateName: tpl?.Name ?? null,
dateinameTemplate: tpl?.DateinameTemplate ?? null,
splitBefore: tpl?.SplitBefore ?? false,
actions: tpl?.Actions ?? [],
};