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