mirror of
https://github.com/inventree/InvenTree.git
synced 2025-05-01 04:56:45 +00:00
always adjust pruchase price if one exists
This commit is contained in:
parent
7cb858546e
commit
a1237b4a49
@ -257,7 +257,7 @@ class PurchaseOrder(Order):
|
|||||||
# update quantity and price
|
# update quantity and price
|
||||||
quantity_new = line.quantity + quantity
|
quantity_new = line.quantity + quantity
|
||||||
line.quantity = quantity_new
|
line.quantity = quantity_new
|
||||||
if purchase_price:
|
if line.purchase_price:
|
||||||
line.purchase_price = supplier_part.get_price(quantity_new) / quantity_new
|
line.purchase_price = supplier_part.get_price(quantity_new) / quantity_new
|
||||||
line.save()
|
line.save()
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user