Merge pull request #1303 from paperless-ngx/bugfix-barcode-and-dirs

Bugfix: Interaction between barcode and directories as tags
This commit is contained in:
Quinn Casey 2022-07-29 12:25:40 -07:00 committed by GitHub
commit 4b45e94beb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -87,6 +87,8 @@ def consume_file(
override_created=None,
):
path = Path(path).resolve()
# check for separators in current document
if settings.CONSUMER_ENABLE_BARCODES:
@ -122,7 +124,11 @@ def consume_file(
newname = f"{str(n)}_" + override_filename
else:
newname = None
barcodes.save_to_dir(document, newname=newname)
barcodes.save_to_dir(
document,
newname=newname,
target_dir=path.parent,
)
# if we got here, the document was successfully split
# and can safely be deleted