[IMP] account: bank statement reconciliation widget (part 2)
[odoo/odoo.git] / addons / account / wizard / account_tax_chart_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4
5         <record id="view_account_tax_chart" model="ir.ui.view">
6             <field name="name">account.tax.chart.form</field>
7             <field name="model">account.tax.chart</field>
8             <field name="arch" type="xml">
9                 <form string="Account tax charts" version="7.0">
10                     <group>
11                         <label for="period_id"/>
12                         <div>
13                             <field name="period_id" class="oe_inline"/>
14                             <label string="(If you do not select a specific period, all open periods will be selected)" class="oe_inline"/>
15                         </div>
16                         <field name="target_move"/>
17                         </group>
18                     <footer>
19                         <button string="Open Charts" name="account_tax_chart_open_window" type="object" class="oe_highlight"/>
20                         or
21                         <button string="Cancel" class="oe_link" special="cancel"/>
22                     </footer>
23                 </form>
24             </field>
25         </record>
26
27         <record id="action_account_tax_chart" model="ir.actions.act_window">
28             <field name="name">Chart of Taxes</field>
29             <field name="res_model">account.tax.chart</field>
30             <field name="view_type">form</field>
31             <field name="view_mode">tree,form</field>
32             <field name="domain">[]</field>
33             <field name="view_id" ref="view_account_tax_chart"/>
34             <field name="target">new</field>
35         </record>
36
37         <menuitem
38             icon="STOCK_INDENT"
39             action="action_account_tax_chart"
40             id="menu_action_tax_code_tree"
41             parent="menu_finance_charts"
42             groups="group_account_user,group_account_manager"
43             sequence="12"/>
44
45     </data>
46 </openerp>