[IMP] kept periods on single line
[odoo/odoo.git] / addons / account / wizard / account_chart_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4         <record id="view_account_chart" model="ir.ui.view">
5             <field name="name">account.chart.form</field>
6             <field name="model">account.chart</field>
7             <field name="type">form</field>
8             <field name="arch" type="xml">
9                 <form string="Account charts" version="7.0">
10                     <header>
11                         <button icon="terp-gtk-go-back-rtl" string="Open Charts" name="account_chart_open_window" type="object"/>
12                     </header>
13                     <group col="4">
14                         <field name="fiscalyear" on_change="onchange_fiscalyear(fiscalyear)"/>
15                         <label align="0.7" string="(If you do not select Fiscal year it will take all open fiscal years)"/>
16                     </group>
17                     <group>
18                         <field name="target_move"/>
19                         <label for="period_from" string="Periods"/>
20                         <div>
21                             <field name="period_from" class="oe_inline"/>-
22                             <field name="period_to" class="oe_inline"/>
23                         </div>
24                     </group>
25                 </form>
26             </field>
27         </record>
28
29         <record id="action_account_chart" model="ir.actions.act_window">
30             <field name="name">Select an Accounting Setup</field>
31             <field name="res_model">account.chart</field>
32             <field name="view_type">form</field>
33             <field name="view_mode">tree,form</field>
34             <field name="view_id" ref="view_account_chart"/>
35             <field name="target">new</field>
36             <field name="help">Display your company chart of accounts per fiscal year and filter by period. Have a complete tree view of all journal items per account code by clicking on an account.</field>
37         </record>
38
39         <menuitem icon="STOCK_INDENT" action="action_account_chart"
40             id="menu_action_account_tree2"
41             name="Chart of Accounts"
42             parent="account.menu_finance_charts" />
43     </data>
44 </openerp>