mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
refactor
This commit is contained in:
parent
f479c0cd27
commit
e06397adc1
@ -979,6 +979,8 @@ class PartPricingView(PartDetail):
|
|||||||
""" returns context with pricing information """
|
""" returns context with pricing information """
|
||||||
ctx = PartPricing.get_pricing(self, quantity, currency)
|
ctx = PartPricing.get_pricing(self, quantity, currency)
|
||||||
part = self.get_part()
|
part = self.get_part()
|
||||||
|
default_currency = inventree_settings.currency_code_default()
|
||||||
|
|
||||||
# Stock history
|
# Stock history
|
||||||
if part.total_stock > 1:
|
if part.total_stock > 1:
|
||||||
price_history = []
|
price_history = []
|
||||||
@ -990,7 +992,7 @@ class PartPricingView(PartDetail):
|
|||||||
continue
|
continue
|
||||||
|
|
||||||
# convert purchase price to current currency - only one currency in the graph
|
# convert purchase price to current currency - only one currency in the graph
|
||||||
price = convert_money(stock_item.purchase_price, inventree_settings.currency_code_default())
|
price = convert_money(stock_item.purchase_price, default_currency)
|
||||||
line = {
|
line = {
|
||||||
'price': price.amount,
|
'price': price.amount,
|
||||||
'qty': stock_item.quantity
|
'qty': stock_item.quantity
|
||||||
|
Loading…
Reference in New Issue
Block a user