From: Alexis de Lattre <> Date: Fri, 17 May 2013 06:57:44 +0000 (+0530) Subject: [FIX] product: if 'date' is passed as False in context of price_get_multi(), it shoul... X-Git-Tag: InsPy_master01~464^2~400^2^2 X-Git-Url: http://git.inspyration.org/?a=commitdiff_plain;h=fd8add387e59e97a05e33583132ea1ec719bc753;p=odoo%2Fodoo.git [FIX] product: if 'date' is passed as False in context of price_get_multi(), it should be set to current date and not False (Maintenance Case: 592247) lp bug: https://launchpad.net/bugs/1175983 fixed bzr revid: rgo@tinyerp.com-20130517065744-il8sfm61rlcu9h2f --- fd8add387e59e97a05e33583132ea1ec719bc753 diff --cc addons/product/pricelist.py index 4b59856,98a6239..0e25be6 --- a/addons/product/pricelist.py +++ b/addons/product/pricelist.py @@@ -151,8 -151,8 +151,8 @@@ class product_pricelist(osv.osv) if context is None: context = {} -- date = time.strftime('%Y-%m-%d') - if 'date' in context: ++ date = context.get('date') or time.strftime('%Y-%m-%d') + if 'date' in context and context['date']: date = context['date'] currency_obj = self.pool.get('res.currency')