[FIX] product: if 'date' is passed as False in context of price_get_multi(), it shoul...
[odoo/odoo.git] / addons / product / pricelist.py
index 4b59856..0e25be6 100644 (file)
@@ -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')