[FIX] product: if 'date' is passed as False in context of price_get_multi(), it shoul...
authorAlexis de Lattre <>
Fri, 17 May 2013 07:02:10 +0000 (12:32 +0530)
committerRavi Gohil (OpenERP) <rgo@tinyerp.com>
Fri, 17 May 2013 07:02:10 +0000 (12:32 +0530)
lp bug: https://launchpad.net/bugs/1175983 fixed

bzr revid: rgo@tinyerp.com-20130517070210-0dno7syscybo0h7j

addons/product/pricelist.py

index 4b59856..271c2b7 100644 (file)
@@ -151,9 +151,7 @@ class product_pricelist(osv.osv):
         if context is None:
             context = {}
 
-        date = time.strftime('%Y-%m-%d')
-        if 'date' in context:
-            date = context['date']
+        date = context.get('date') or time.strftime('%Y-%m-%d')
 
         currency_obj = self.pool.get('res.currency')
         product_obj = self.pool.get('product.product')