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
Build and Push Multi-Platform Images / build-and-push (push) Successful in 33s
This commit is contained in:
@@ -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 ?? [],
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user