mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +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…
Reference in New Issue
Block a user