From 1e489a0666c0a7dad38fe1edbb741157a6ffa094 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 5 Mar 2025 12:46:51 -0800 Subject: [PATCH] Enhancement: add switch to allow merging non-PDFs with archive version (#9305) --- src-ui/messages.xlf | 17 ++++++--- .../merge-confirm-dialog.component.html | 8 +++- .../merge-confirm-dialog.component.ts | 1 + .../bulk-editor/bulk-editor.component.spec.ts | 21 +++++++++++ .../bulk-editor/bulk-editor.component.ts | 3 ++ src/documents/bulk_edit.py | 12 +++++- src/documents/serialisers.py | 5 +++ src/documents/tests/test_bulk_edit.py | 37 +++++++++++++++++++ 8 files changed, 96 insertions(+), 8 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index cd1a97950..1649d6100 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -3246,18 +3246,25 @@ 24 + + Try to include archive version in merge for non-PDF files + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + Delete original documents after successful merge src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html - 32 + 36 Note that only PDFs will be included. src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html - 34 + 39 @@ -7431,21 +7438,21 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 863 + 866 Custom fields updated. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 885 + 888 Error updating custom fields. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 894 + 897 diff --git a/src-ui/src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html b/src-ui/src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html index 576861ff2..da57feca7 100644 --- a/src-ui/src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html +++ b/src-ui/src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html @@ -28,10 +28,16 @@
+ + +
+
-

Note that only PDFs will be included.

+ @if (!archiveFallback) { +

Note that only PDFs will be included.

+ }