[FIX] hr_timesheet_invoice: name_get() only support to receive a list of ids as parameter

bzr revid: qdp-launchpad@openerp.com-20120726123158-08ajmydd95ixpp2d
This commit is contained in:
Quentin (OpenERP) 2012-07-26 14:31:58 +02:00
parent d5364580da
commit 9dab28d36e
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ class account_analytic_line(osv.osv):
if not product:
raise osv.except_osv(_('Error'), _('There is no product defined for the line %s. Please select one or force the product through the wizard.') % (line_name))
factor = invoice_factor_obj.browse(cr, uid, factor_id, context=context2)
factor_name = product_obj.name_get(cr, uid, product_id, context=context2)[1]
factor_name = product_obj.name_get(cr, uid, [product_id], context=context2)[0][1]
if factor.customer_name:
factor_name += ' - ' + factor.customer_name