mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fix: Splitting on ASN barcodes even if not enabled (#5740)
* Fixes the barcodes always splitting on ASNs, even if splitting was disabled
This commit is contained in:
parent
1197437750
commit
21f96f0679
@ -88,64 +88,71 @@ class BarcodePlugin(ConsumeTaskPlugin):
|
|||||||
self.detect()
|
self.detect()
|
||||||
|
|
||||||
# Update/overwrite an ASN if possible
|
# Update/overwrite an ASN if possible
|
||||||
located_asn = self.asn
|
if (
|
||||||
if located_asn is not None:
|
settings.CONSUMER_ENABLE_ASN_BARCODE
|
||||||
|
and (located_asn := self.asn) is not None
|
||||||
|
):
|
||||||
logger.info(f"Found ASN in barcode: {located_asn}")
|
logger.info(f"Found ASN in barcode: {located_asn}")
|
||||||
self.metadata.asn = located_asn
|
self.metadata.asn = located_asn
|
||||||
|
|
||||||
# try reading tags from barcodes
|
# try reading tags from barcodes
|
||||||
if settings.CONSUMER_ENABLE_TAG_BARCODE:
|
if (
|
||||||
tags = self.tags
|
settings.CONSUMER_ENABLE_TAG_BARCODE
|
||||||
if tags is not None and len(tags) > 0:
|
and (tags := self.tags) is not None
|
||||||
if self.metadata.tag_ids:
|
and len(tags) > 0
|
||||||
self.metadata.tag_ids += tags
|
):
|
||||||
else:
|
if self.metadata.tag_ids:
|
||||||
self.metadata.tag_ids = tags
|
self.metadata.tag_ids += tags
|
||||||
logger.info(f"Found tags in barcode: {tags}")
|
else:
|
||||||
|
self.metadata.tag_ids = tags
|
||||||
|
logger.info(f"Found tags in barcode: {tags}")
|
||||||
|
|
||||||
separator_pages = self.get_separation_pages()
|
# Lastly attempt to split documents
|
||||||
if not separator_pages:
|
if settings.CONSUMER_ENABLE_BARCODES:
|
||||||
return "No pages to split on!"
|
|
||||||
|
|
||||||
# We have pages to split against
|
separator_pages = self.get_separation_pages()
|
||||||
|
if not separator_pages:
|
||||||
|
return "No pages to split on!"
|
||||||
|
|
||||||
# Note this does NOT use the base_temp_dir, as that will be removed
|
# We have pages to split against
|
||||||
tmp_dir = Path(
|
|
||||||
tempfile.mkdtemp(
|
|
||||||
dir=settings.SCRATCH_DIR,
|
|
||||||
prefix="paperless-barcode-split-",
|
|
||||||
),
|
|
||||||
).resolve()
|
|
||||||
|
|
||||||
from documents import tasks
|
# Note this does NOT use the base_temp_dir, as that will be removed
|
||||||
|
tmp_dir = Path(
|
||||||
# Create the split document tasks
|
tempfile.mkdtemp(
|
||||||
for new_document in self.separate_pages(separator_pages):
|
dir=settings.SCRATCH_DIR,
|
||||||
copy_file_with_basic_stats(new_document, tmp_dir / new_document.name)
|
prefix="paperless-barcode-split-",
|
||||||
|
|
||||||
task = tasks.consume_file.delay(
|
|
||||||
ConsumableDocument(
|
|
||||||
# Same source, for templates
|
|
||||||
source=self.input_doc.source,
|
|
||||||
mailrule_id=self.input_doc.mailrule_id,
|
|
||||||
# Can't use same folder or the consume might grab it again
|
|
||||||
original_file=(tmp_dir / new_document.name).resolve(),
|
|
||||||
),
|
),
|
||||||
# All the same metadata
|
).resolve()
|
||||||
self.metadata,
|
|
||||||
)
|
|
||||||
logger.info(f"Created new task {task.id} for {new_document.name}")
|
|
||||||
|
|
||||||
# This file is now two or more files
|
from documents import tasks
|
||||||
self.input_doc.original_file.unlink()
|
|
||||||
|
|
||||||
msg = "Barcode splitting complete!"
|
# Create the split document tasks
|
||||||
|
for new_document in self.separate_pages(separator_pages):
|
||||||
|
copy_file_with_basic_stats(new_document, tmp_dir / new_document.name)
|
||||||
|
|
||||||
# Update the progress to complete
|
task = tasks.consume_file.delay(
|
||||||
self.status_mgr.send_progress(ProgressStatusOptions.SUCCESS, msg, 100, 100)
|
ConsumableDocument(
|
||||||
|
# Same source, for templates
|
||||||
|
source=self.input_doc.source,
|
||||||
|
mailrule_id=self.input_doc.mailrule_id,
|
||||||
|
# Can't use same folder or the consume might grab it again
|
||||||
|
original_file=(tmp_dir / new_document.name).resolve(),
|
||||||
|
),
|
||||||
|
# All the same metadata
|
||||||
|
self.metadata,
|
||||||
|
)
|
||||||
|
logger.info(f"Created new task {task.id} for {new_document.name}")
|
||||||
|
|
||||||
# Request the consume task stops
|
# This file is now two or more files
|
||||||
raise StopConsumeTaskError(msg)
|
self.input_doc.original_file.unlink()
|
||||||
|
|
||||||
|
msg = "Barcode splitting complete!"
|
||||||
|
|
||||||
|
# Update the progress to complete
|
||||||
|
self.status_mgr.send_progress(ProgressStatusOptions.SUCCESS, msg, 100, 100)
|
||||||
|
|
||||||
|
# Request the consume task stops
|
||||||
|
raise StopConsumeTaskError(msg)
|
||||||
|
|
||||||
def cleanup(self) -> None:
|
def cleanup(self) -> None:
|
||||||
self.temp_dir.cleanup()
|
self.temp_dir.cleanup()
|
||||||
|
@ -402,6 +402,7 @@ class TestBarcode(
|
|||||||
|
|
||||||
self.assertEqual(len(documents), 2)
|
self.assertEqual(len(documents), 2)
|
||||||
|
|
||||||
|
@override_settings(CONSUMER_ENABLE_BARCODES=True)
|
||||||
def test_separate_pages_no_list(self):
|
def test_separate_pages_no_list(self):
|
||||||
"""
|
"""
|
||||||
GIVEN:
|
GIVEN:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user