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

bzr revid: rgo@tinyerp.com-20130517065744-il8sfm61rlcu9h2f

addons/product/pricelist.py

index 98a6239..0e25be6 100644 (file)
@@ -151,7 +151,7 @@ class product_pricelist(osv.osv):
         if context is None:
             context = {}
 
-        date = time.strftime('%Y-%m-%d')
+        date = context.get('date') or time.strftime('%Y-%m-%d')
         if 'date' in context and context['date']:
             date = context['date']