[FIX] website_quote: quote template does not take into account variant prices.

In a quote_line, if the product is a product variant, the unit price must be
the sum of the sale price and the price extra.

opw: 625957
This commit is contained in:
Goffin Simon 2015-02-18 13:16:51 +01:00
parent 1581c43026
commit 427835e47f
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ class sale_quote_line(osv.osv):
if product_obj.description_sale:
name += '\n' + product_obj.description_sale
vals.update({
'price_unit': product_obj.list_price,
'price_unit': product_obj.lst_price,
'product_uom_id': product_obj.uom_id.id,
'website_description': product_obj and (product_obj.quote_description or product_obj.website_description) or '',
'name': name,