[Add] point_of_sale: add the missing file

bzr revid: sbh@tinyerp.com-20100318123756-pqedu3eabie83fot
This commit is contained in:
sbh (Open ERP) 2010-03-18 18:07:56 +05:30
parent 0ab01daf59
commit e41aae3014
3 changed files with 36 additions and 1 deletions

View File

@ -50,7 +50,8 @@ Main features :
'wizard/pos_open_statement.xml',
'wizard/pos_close_statement.xml',
'wizard/pos_box_entries.xml',
'wizard/pos_box_out.xml',
'wizard/pos_box_out.xml',
'wizard/pos_details.xml',
'pos_view.xml',
'pos_sequence.xml',
'posrule_data.xml',

View File

@ -42,6 +42,7 @@ import pos_open_statement
import pos_close_statement
import pos_box_entries
import pos_box_out
import pos_details
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -0,0 +1,33 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<!-- pos.details -->
<record id="view_pos_details" model="ir.ui.view">
<field name="name">POS Details</field>
<field name="model">pos.details</field>
<field name="type">form</field>
<field name="arch" type="xml">
<form string="POS Details :">
<group col="2" colspan="4">
<field name="date_start"/>
<field name="date_end"/>
<button icon='gtk-cancel' special="cancel"
string="Close" />
<button name="print_report" string="Print Report"
colspan="1" type="object" icon="gtk-ok" />
</group>
</form>
</field>
</record>
<act_window name="POS Details"
res_model="pos.order"
src_model="pos.details"
view_mode="form"
target="new"
key2="client_action_multi"
id="action_report_pos_details"/>
</data>
</openerp>