From 9aefff38e7b5c495f6d2e76cd1dd75130151e1f2 Mon Sep 17 00:00:00 2001 From: Trenton Holmes Date: Sat, 8 Oct 2022 12:30:43 -0700 Subject: [PATCH] If the original file containing a barcode was in the temporary scratch dir, move the split files to consume dir --- src/documents/tasks.py | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/src/documents/tasks.py b/src/documents/tasks.py index 94b849456..289586e7e 100644 --- a/src/documents/tasks.py +++ b/src/documents/tasks.py @@ -112,10 +112,20 @@ def consume_file( newname = f"{str(n)}_" + override_filename else: newname = None + + # If the file is an upload, it's in the scratch directory + # Move it to consume directory to be picked up + # Otherwise, use the current parent to keep possible tags + # from subdirectories + if path.is_relative_to(settings.SCRATCH_DIR): + save_to_dir = settings.CONSUMPTION_DIR + else: + save_to_dir = path.parent + barcodes.save_to_dir( document, newname=newname, - target_dir=path.parent, + target_dir=save_to_dir, ) # Delete the PDF file which was split