[FIX] income account on product for POS

bzr revid: fp@tinyerp.com-20111220175358-d5850rhw001zdwly
This commit is contained in:
Fabien Pinckaers 2011-12-20 18:53:58 +01:00
parent 7049024898
commit 09663a9369
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ class pos_box_out(osv.osv_memory):
stat_done = statement_obj.browse(cr, uid, done_statmt, context=context)
am = 0.0
product = product_obj.browse(cr, uid, data['product_id'], context=context)
acc_id = product.property_account_income
acc_id = product.property_account_income or product.categ_id.property_account_income_categ
if not acc_id:
raise osv.except_osv(_('Error !'), _('please check that account is set to %s')%(product.name))
if not statement_ids: