[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 0e25be6..271c2b7 100644 (file)
@@ -152,8 +152,6 @@ class product_pricelist(osv.osv):
             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')
         product_obj = self.pool.get('product.product')