[FIX] point_of_sale: fixed a wrong domain

bzr revid: olt@tinyerp.com-20090826134554-qfux7r5kwuy6shsn
This commit is contained in:
Olivier Laurent 2009-08-26 15:45:54 +02:00
parent fa29dc7d9e
commit b7a20ff02c
1 changed files with 1 additions and 1 deletions

View File

@ -176,7 +176,7 @@
<field name="view_type">form</field>
<field name="view_mode">tree,form</field>
<field name="view_id" ref="view_pos_order_tree"/>
<field name="domain">[('date_order','=', time.strftime('%Y-%m-%d 00:00:00'))]</field>
<field name="domain">[('date_order','&gt;=',time.strftime('%Y-%m-%d')),('date_order','&lt;=',time.strftime('%Y-%m-%d'))]</field>
</record>
<menuitem name="Orders of the day" parent="menu_point_ofsale" id="menu_action_pos_order_tree2" action="action_pos_order_tree2"/>