[IMP] account: bank statement reconciliation widget (part 3: missing files lost durin...
[odoo/odoo.git] / addons / account / wizard / account_use_model_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4
5         <record id="view_account_use_model" model="ir.ui.view">
6             <field name="name">account.use.model.form</field>
7             <field name="model">account.use.model</field>
8             <field name="arch" type="xml">
9                     <form string="Create Entries From Models" version="7.0">
10                         <group>
11                             <field name="model"/>
12                         </group>
13                         <footer>
14                             <button string="Create Entries" name="create_entries" type="object" class="oe_highlight"/>
15                             or
16                             <button string="Cancel" class="oe_link" special="cancel"/>
17                         </footer>
18                     </form>
19             </field>
20         </record>
21
22         <record id="view_account_use_model_create_entry" model="ir.ui.view">
23             <field name="name">account.use.model.create.entry.form</field>
24             <field name="model">account.use.model</field>
25             <field name="arch" type="xml">
26                 <form string="Use Model" version="7.0">
27                     <label string = "Are you sure you want to create entries?"/>
28                     <footer>
29                         <button string="Ok" name="create_entries" type="object" default_focus='1' class="oe_highlight"/>
30                         or
31                         <button string="Cancel" class="oe_link" special="cancel"/>
32                     </footer>
33                </form>
34             </field>
35         </record>
36
37         <record id="action_account_use_model_create_entry" model="ir.actions.act_window">
38             <field name="name">Manual Recurring</field>
39             <field name="res_model">account.use.model</field>
40             <field name="view_type">form</field>
41             <field name="view_mode">tree,form</field>
42             <field name="view_id" ref="view_account_use_model_create_entry"/>
43             <field name="target">new</field>
44         </record>
45
46     </data>
47 </openerp>