6.0 merged at revision 4841
** Changed in: openobject-addons
Status: Fix Committed => Fix Released
--
You received this bug notification because you are a member of OpenERP
Indian Team, which is subscribed to OpenERP Addons.
https://bugs.launchpad.net/bugs/853070
Title:
product property lookup function invalid
Status in OpenERP Addons (modules):
Fix Released
Bug description:
in V6, when creating an invoice, adding a product, there is a call at the
function product_id_change.
In this function there is a search for default accounting properties which
seems wrong:
Following part
if not in_pro_id:
in_pro_id = property_obj.search(cr, uid,
[('name','=','property_account_income_categ'),('res_id','=','product.template,'+str(res.categ_id.id)+''),('company_id','=',company_id)])
Should be
in_pro_id = property_obj.search(cr, uid,
[('name','=','property_account_income_categ'),('res_id','=','product.category,'+str(res.categ_id.id)+''),('company_id','=',company_id)])
and
if not exp_pro_id:
exp_pro_id = property_obj.search(cr, uid,
[('name','=','property_account_expense_categ'),('res_id','=','product.template,'+str(res.categ_id.id)+''),('company_id','=',company_id)])
should be:
if not exp_pro_id:
exp_pro_id = property_obj.search(cr, uid,
[('name','=','property_account_expense_categ'),('res_id','=','product.category,'+str(res.categ_id.id)+''),('company_id','=',company_id)])
To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-addons/+bug/853070/+subscriptions
_______________________________________________
Mailing list: https://launchpad.net/~openerp-india
Post to : [email protected]
Unsubscribe : https://launchpad.net/~openerp-india
More help : https://help.launchpad.net/ListHelp