Fix: Typo

This commit is contained in:
tanshu 2016-03-22 13:23:27 +05:30
parent 3f7ae4225d
commit 33c385ea91
1 changed files with 1 additions and 1 deletions

View File

@ -182,7 +182,7 @@ def show_term(request):
if extended:
product = {'ProductID': item.id, 'Name': item.full_name, 'Price': item.price, 'Units': item.units,
'Fraction': item.fraction, 'FractionUnits': item.fraction_units,
'ProductYield': item.product_yield, 'IsSold' item.is_sold, 'SalePrice': item.sale_price}
'ProductYield': item.product_yield, 'IsSold': item.is_sold, 'SalePrice': item.sale_price}
else:
product = {'ProductID': item.id, 'Name': item.full_name, 'Price': item.price}
local_results.append(product)