From fc64073273980635c7f721f94c95652bb13b1a6a Mon Sep 17 00:00:00 2001 From: Stephane Wirtel Date: Tue, 27 Jan 2009 16:34:48 +0100 Subject: [PATCH] [FIX] Use a limit in the domain lp bug: https://launchpad.net/bugs/321512 fixed bzr revid: stephane@tinyerp.com-20090127153448-bzd3oso8vjuii8xy --- addons/point_of_sale/pos_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/point_of_sale/pos_view.xml b/addons/point_of_sale/pos_view.xml index da6102f3df1..6963fe31d61 100644 --- a/addons/point_of_sale/pos_view.xml +++ b/addons/point_of_sale/pos_view.xml @@ -240,7 +240,7 @@ form tree - [('create_date','like',time.strftime('%Y-%m-%d'))] + [('create_date', '>=', time.strftime('%Y-%m-%d 00:00:00')),('create_date', '<=', time.strftime('%Y-%m-%d 23:59:59'))]