[FIX] hr_timesheet_invoice: name_get() only support to receive a list of ids as parameter
[odoo/odoo.git] / addons / hr_timesheet_invoice / wizard / hr_timesheet_invoice_create.py
index 0945b8f..c9b2439 100644 (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