[ADD,IMP]:account chart for configurable chart and improvements
[odoo/odoo.git] / addons / project / project_installer.xml
1 <openerp>
2   <data>
3     <record id="view_project_installer" model="ir.ui.view">
4       <field name="name">project.installer.view</field>
5       <field name="model">project.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">Project Modules Installation</attribute>
12           </form>
13
14           <separator string="title" position="attributes">
15             <attribute name="string"
16                        >Project Management</attribute>
17           </separator>
18            <xpath expr='//separator[@string="vsep"]' position='attributes'>
19                   <attribute name='string'></attribute>
20                 </xpath>
21           <xpath expr="//label[@string='description']"
22                  position="attributes">
23             <attribute name="string">Various OpenERP applications are available to bring your project management to the next levels of control and flexibility.</attribute>
24           </xpath>
25           <group colspan="8">
26             <field name="project_crm"/>
27             <field name="project_long_term" groups="base.group_extended"/>
28             <field name="project_wiki"/>
29             <field name="hr_timesheet_sheet"/>
30             <field name="hr_timesheet_invoice"/>
31             <field name="account_budget" groups="base.group_extended"/>
32             <field name="project_messages" groups="base.group_extended"/>
33             <separator string="Methodologies" colspan="4"/>
34             <field name="scrum"/>
35             <field name="project_gtd"/>
36           </group>
37         </data>
38       </field>
39     </record>
40
41     <record id="action_project_installer" model="ir.actions.act_window">
42       <field name="name">Project Modules Installation</field>
43       <field name="type">ir.actions.act_window</field>
44       <field name="res_model">project.installer</field>
45       <field name="view_id" ref="view_project_installer"/>
46       <field name="view_type">form</field>
47       <field name="view_mode">form</field>
48       <field name="target">new</field>
49     </record>
50
51     <record id="project_installer_todo" model="ir.actions.todo">
52       <field name="action_id" ref="action_project_installer"/>
53       <field name="sequence">3</field>
54     </record>
55      <record id="project_ir_actions_todo_tree" model="ir.ui.view">
56                     <field name="model">ir.actions.todo</field>
57                     <field name="name">project_installer_action_replace</field>
58                     <field name="type">tree</field>
59                     <field name="inherit_id" ref="base.ir_actions_todo_tree"/>
60                     <field name="arch" type="xml">
61                                 <xpath expr="//button[@string='Launch']" position="replace">
62                                 <button name="%(action_project_installer)d" states="open,skip" string="Launch" type="action" icon="gtk-execute" help="Launch Configuration Wizard"/>
63                                 </xpath>
64                         </field>
65         </record>
66   </data>
67 </openerp>