Handle the ASN assignment last, after the splitting (#5745)

This commit is contained in:
Trenton H 2024-02-13 08:26:13 -08:00 committed by GitHub
parent 09ab694d05
commit 907b6d1294
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -87,14 +87,6 @@ class BarcodePlugin(ConsumeTaskPlugin):
# Locate any barcodes in the files
self.detect()
# Update/overwrite an ASN if possible
if (
settings.CONSUMER_ENABLE_ASN_BARCODE
and (located_asn := self.asn) is not None
):
logger.info(f"Found ASN in barcode: {located_asn}")
self.metadata.asn = located_asn
# try reading tags from barcodes
if (
settings.CONSUMER_ENABLE_TAG_BARCODE
@ -154,6 +146,15 @@ class BarcodePlugin(ConsumeTaskPlugin):
# Request the consume task stops
raise StopConsumeTaskError(msg)
# Update/overwrite an ASN if possible
# After splitting, as otherwise each split document gets the same ASN
if (
settings.CONSUMER_ENABLE_ASN_BARCODE
and (located_asn := self.asn) is not None
):
logger.info(f"Found ASN in barcode: {located_asn}")
self.metadata.asn = located_asn
def cleanup(self) -> None:
self.temp_dir.cleanup()