[FIX] sale_marging: Calculated cost price as per pricelist

lp bug: https://launchpad.net/bugs/689924 fixed

bzr revid: pso@tinyerp.com-20101221102410-lylp224ghp45qkpi
This commit is contained in:
pso 2010-12-21 15:54:10 +05:30
parent 96c353e309
commit f32adf267a
1 changed files with 4 additions and 1 deletions

View File

@ -29,9 +29,12 @@ 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)
frm_cur = self.pool.get('res.users').browse(cr, uid, uid).company_id.currency_id.id
to_cur = self.pool.get('res.partner').browse(cr, uid, partner_id).property_product_pricelist.currency_id.id
if product:
purchase_price = self.pool.get('product.product').browse(cr, uid, product).standard_price
res['value'].update({'purchase_price': purchase_price})
price = self.pool.get('res.currency').compute(cr, uid, frm_cur, to_cur, purchase_price, round=False)
res['value'].update({'purchase_price': price})
return res
def _product_margin(self, cr, uid, ids, field_name, arg, context=None):