[FIX] sale_margin: fix

bzr revid: mra@mra-laptop-20100707071323-lllc9ow3rad5djal
This commit is contained in:
Mustufa Rangwala 2010-07-07 12:43:23 +05:30
parent e4ed76cd59
commit a2a631f4ce
1 changed files with 3 additions and 2 deletions

View File

@ -32,8 +32,9 @@ class sale_order_line(osv.osv):
res = super(sale_order_line, self).product_id_change(cr, uid, ids, pricelist, product, qty=qty,
uom=uom, qty_uos=qty_uos, uos=uos, name=name, partner_id=partner_id,
lang=lang, update_tax=update_tax, date_order=date_order, packaging=packaging, fiscal_position=fiscal_position, flag=flag)
purchase_price = self.pool.get('product.product').browse(cr, uid, product).standard_price
res['value'].update({'purchase_price':purchase_price})
if product:
purchase_price = self.pool.get('product.product').browse(cr, uid, product).standard_price
res['value'].update({'purchase_price':purchase_price})
return res
def _product_margin(self, cr, uid, ids, field_name, arg, context=None):