[REF] point_of_sale: fix the yml partner_id warning

bzr revid: ara@tinyerp.com-20101122095007-b5128lopvy02ux1a
This commit is contained in:
ARA (OpenERP) 2010-11-22 15:20:07 +05:30
parent bd8d5628c4
commit e3fdc5e329
1 changed files with 2 additions and 0 deletions

View File

@ -752,6 +752,7 @@ class pos_order(osv.osv):
'period_id': period,
'tax_code_id': tax_code_id,
'tax_amount': tax_amount,
'partner_id': order.partner_id and order.partner_id.id or False
}, context=context)
# For each remaining tax with a code, whe create a move line
@ -817,6 +818,7 @@ class pos_order(osv.osv):
or 0.0,
'journal_id': order.sale_journal.id,
'period_id': period,
'partner_id': order.partner_id and order.partner_id.id or False
}, context=context))