[FIX]sale : Notes field of sale order lines is not being translated in customer language --author=Nehal Panchal (OpenERP)

bzr revid: mma@tinyerp.com-20121101125756-5syxb3jy0xf9j0za
This commit is contained in:
Mayur Maheshwari (OpenERP) 2012-11-01 18:27:56 +05:30
parent b006809773
commit 658c697acc
1 changed files with 2 additions and 2 deletions

View File

@ -903,7 +903,7 @@ class sale_order_line(osv.osv):
result = {}
warning_msgs = {}
product_obj = product_obj.browse(cr, uid, product, context=context)
product_obj = product_obj.browse(cr, uid, product, context=context_partner)
uom2 = False
if uom:
@ -922,7 +922,7 @@ class sale_order_line(osv.osv):
result['tax_id'] = self.pool.get('account.fiscal.position').map_tax(cr, uid, fpos, product_obj.taxes_id)
if not flag:
result['name'] = self.pool.get('product.product').name_get(cr, uid, [product_obj.id], context=context_partner)[0][1]
result['name'] = product_obj.name_get(cr, uid, [product_obj.id], context=context_partner)[0][1]
if product_obj.description_sale:
result['name'] += '\n'+product_obj.description_sale
domain = {}