mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Fixes the barcode setting always overriding the ASN, even if one wasn't found
This commit is contained in:
parent
22bedd9957
commit
a3842d9228
@ -124,9 +124,10 @@ def consume_file(
|
||||
return "File successfully split"
|
||||
|
||||
# try reading the ASN from barcode
|
||||
if settings.CONSUMER_ENABLE_ASN_BARCODE:
|
||||
if settings.CONSUMER_ENABLE_ASN_BARCODE and reader.asn is not None:
|
||||
# Note this will take precedence over an API provided ASN
|
||||
# But it's from a physical barcode, so that's good
|
||||
overrides.asn = reader.asn
|
||||
if overrides.asn:
|
||||
logger.info(f"Found ASN in barcode: {overrides.asn}")
|
||||
|
||||
# continue with consumption if no barcode was found
|
||||
|
Loading…
x
Reference in New Issue
Block a user