openerp-india team mailing list archive
-
openerp-india team
-
Mailing list archive
-
Message #12741
[Bug 1011927] Re: price_get_multi does not work for a list of pricelists
Hello Amit,
Thankyou. Yes, you are correct, I know of no current scenario which
uses this. I use it to create a custom pricelist table, and it is
obviously far more efficient to call the method once with a list than to
loop through calling it once per pricelist.
--
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/1011927
Title:
price_get_multi does not work for a list of pricelists
Status in OpenERP Addons (modules):
Confirmed
Bug description:
In pricelist.py, in product, price_get calls price_get_multi
If a list of pricelist_ids is passed, the complete list returned is
the same price multiple times!
The bug is that pricelist_version_ids is retrieved as a list, which does not at all link to pricelist_ids.
Then, in the loop (for pricelist_id in pricelist_ids) the cr.execute always uses pricelist_version_ids[0]!, not the pricelist_version_id for current pricelist.
The only way for this to work is to retrieve one pricelist at a time.
To manage notifications about this bug go to:
https://bugs.launchpad.net/openobject-addons/+bug/1011927/+subscriptions
References