mirror of
https://github.com/inventree/InvenTree.git
synced 2025-04-29 20:16:44 +00:00
Prevent AttributeError from being thrown
Ref: https://github.com/inventree/InvenTree/issues/2587
This commit is contained in:
parent
dd3ac58f38
commit
ea1f1b398e
@ -43,7 +43,7 @@ def extract_purchase_price(apps, schema_editor):
|
|||||||
if lines.exists():
|
if lines.exists():
|
||||||
|
|
||||||
for line in lines:
|
for line in lines:
|
||||||
if line.purchase_price is not None:
|
if getattr(line, 'purchase_price', None) is not None:
|
||||||
|
|
||||||
# Copy pricing information across
|
# Copy pricing information across
|
||||||
item.purchase_price = line.purchase_price
|
item.purchase_price = line.purchase_price
|
||||||
|
Loading…
x
Reference in New Issue
Block a user