[IMP] Set icons to state of wizards
[odoo/odoo.git] / addons / account / account_installer.xml
1 <openerp>
2   <data>
3     <record id="view_account_installer" model="ir.ui.view">
4       <field name="name">account.installer.view</field>
5       <field name="model">account.installer</field>
6       <field name="type">form</field>
7       <field name="inherit_id" ref="base.res_config_installer"/>
8       <field name="arch" type="xml">
9         <data>
10           <form position="attributes">
11             <attribute name="string">Accounting Modules Installation</attribute>
12           </form>
13
14           <separator string="title" position="attributes">
15             <attribute name="string"
16                        >Configure Your Accounting System</attribute>
17           </separator>
18           <xpath expr="//label[@string='description']"
19                  position="attributes">
20             <attribute name="string">You can enhance OpenERP's basic accounting support with a few additional OpenERP applications</attribute>
21           </xpath>
22
23           <group colspan="8">
24             <separator string="Accounting" colspan="4"/>
25             <field name="charts"/>
26             <field name="account_analytic_default"/>
27             <field name="account_analytic_plans"/>
28             <field name="account_payment"/>
29             <field name="account_followup"/>
30             <field name="account_asset"/>
31           </group>
32         </data>
33       </field>
34     </record>
35
36     <record id="action_account_installer" model="ir.actions.act_window">
37       <field name="name">Accounting Modules Installation</field>
38       <field name="type">ir.actions.act_window</field>
39       <field name="res_model">account.installer</field>
40       <field name="view_id" ref="view_account_installer"/>
41       <field name="view_type">form</field>
42       <field name="view_mode">form</field>
43       <field name="target">new</field>
44     </record>
45
46     <record id="account_installer_todo" model="ir.actions.todo">
47       <field name="action_id" ref="action_account_installer"/>
48       <field name="sequence">3</field>
49     </record>
50   </data>
51 </openerp>