[FIX] event: invoice creation from registrations

bzr revid: jvo@tinyerp.com-20100518112826-3sjz8lgljwv15z2a
This commit is contained in:
Jay (Open ERP) 2010-05-18 16:58:26 +05:30
parent 4b1b0d9009
commit 3a1c5f23a4
1 changed files with 2 additions and 1 deletions

View File

@ -82,8 +82,9 @@ class event_make_invoice(osv.osv_memory):
tax_ids.append(tax.id)
vals = value['value']
c_name = reg.contact_id and ('-' + self.pool.get('res.partner.contact').name_get(cr, uid, [reg.contact_id.id])[0][1]) or ''
vals.update({
'name': reg.invoice_label + '-' + reg.name,
'name': reg.invoice_label + '-' + c_name,
'price_unit': reg.unit_price,
'quantity': reg.nb_register,
'product_id':reg.event_id.product_id.id,