From d1ac15baa94f029ca262d81f0dfadf297f562a9f Mon Sep 17 00:00:00 2001 From: Dominik Bruhn Date: Sat, 8 Jun 2024 18:56:25 +0200 Subject: [PATCH] Enhancement: support delete originals after split / merge (#6935) --------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- docs/api.md | 5 + src-ui/messages.xlf | 44 ++++++--- .../merge-confirm-dialog.component.html | 4 + .../merge-confirm-dialog.component.ts | 11 ++- .../split-confirm-dialog.component.html | 4 + .../split-confirm-dialog.component.spec.ts | 9 ++ .../split-confirm-dialog.component.ts | 24 ++++- .../document-detail.component.spec.ts | 2 +- .../document-detail.component.ts | 1 + .../bulk-editor/bulk-editor.component.spec.ts | 19 ++++ .../bulk-editor/bulk-editor.component.ts | 3 + src/documents/bulk_edit.py | 46 +++++++-- src/documents/serialisers.py | 15 +++ src/documents/tests/test_api_bulk_edit.py | 94 +++++++++++++++++++ src/documents/tests/test_bulk_edit.py | 86 ++++++++++++++++- src/documents/views.py | 19 +++- 16 files changed, 354 insertions(+), 32 deletions(-) diff --git a/docs/api.md b/docs/api.md index c38018f71..94ece85ab 100644 --- a/docs/api.md +++ b/docs/api.md @@ -417,9 +417,14 @@ The following methods are supported: - The ordering of the merged document is determined by the list of IDs. - Optional `parameters`: - `"metadata_document_id": DOC_ID` apply metadata (tags, correspondent, etc.) from this document to the merged document. + - `"delete_originals": true` to delete the original documents. This requires the calling user being the owner of + all documents that are merged. - `split` - Requires `parameters`: - `"pages": [..]` The list should be a list of pages and/or a ranges, separated by commas e.g. `"[1,2-3,4,5-7]"` + - Optional `parameters`: + - `"delete_originals": true` to delete the original document after consumption. This requires the calling user being the owner of + the document. - The split operation only accepts a single document. - `rotate` - Requires `parameters`: diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 2cdb7a78a..56cfa9ae4 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -2302,11 +2302,11 @@ src/app/components/document-detail/document-detail.component.ts - 1151 + 1152 src/app/components/document-detail/document-detail.component.ts - 1192 + 1193 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -2970,11 +2970,18 @@ 24 + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + Note that only PDFs will be included. src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html - 30 + 34 @@ -2991,6 +2998,13 @@ 28 + + Delete original document after successful split + + src/app/components/common/confirm-dialog/split-confirm-dialog/split-confirm-dialog.component.html + 49 + + View @@ -5475,7 +5489,7 @@ src/app/components/document-detail/document-detail.component.ts - 1169 + 1170 src/app/guards/dirty-saved-view.guard.ts @@ -5957,21 +5971,21 @@ Split operation will begin in the background. src/app/components/document-detail/document-detail.component.ts - 1128 + 1129 Error executing split operation src/app/components/document-detail/document-detail.component.ts - 1137 + 1138 Rotate confirm src/app/components/document-detail/document-detail.component.ts - 1149 + 1150 src/app/components/document-list/bulk-editor/bulk-editor.component.ts @@ -5982,49 +5996,49 @@ This operation will permanently rotate the original version of the current document. src/app/components/document-detail/document-detail.component.ts - 1150 + 1151 Rotation will begin in the background. Close and re-open the document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1166 + 1167 Error executing rotate operation src/app/components/document-detail/document-detail.component.ts - 1178 + 1179 Delete pages confirm src/app/components/document-detail/document-detail.component.ts - 1190 + 1191 This operation will permanently delete the selected pages from the original document. src/app/components/document-detail/document-detail.component.ts - 1191 + 1192 Delete pages operation will begin in the background. Close and re-open or reload this document after the operation has completed to see the changes. src/app/components/document-detail/document-detail.component.ts - 1206 + 1207 Error executing delete pages operation src/app/components/document-detail/document-detail.component.ts - 1215 + 1216 @@ -6417,7 +6431,7 @@ Merged document will be queued for consumption. src/app/components/document-list/bulk-editor/bulk-editor.component.ts - 819 + 822 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 0da291c94..576861ff2 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 @@ -27,6 +27,10 @@ } +
+ + +

Note that only PDFs will be included.

+
+ + +