bzr revid: fp@tinyerp.com-20090226165901-tjyhbxt9f597jw52
This commit is contained in:
Fabien Pinckaers 2009-02-26 17:59:01 +01:00
parent 315b23eec5
commit 62cf62081a
1 changed files with 1 additions and 1 deletions

View File

@ -673,7 +673,7 @@ class stock_picking(osv.osv):
else:
invoice_vals = {
'name': picking.name,
'origin': str(picking.name or '') + (picking.origin and (':' + picking.origin) or ''),
'origin': (picking.name or '') + (picking.origin and (':' + picking.origin) or ''),
'type': type,
'account_id': account_id,
'partner_id': partner.id,