[IMP]Improve voew in account
[odoo/odoo.git] / addons / analytic / analytic_view.xml
1 <?xml version="1.0" encoding="utf-8"?>
2 <openerp>
3     <data>
4
5         <record id="view_account_analytic_account_form" model="ir.ui.view">
6             <field name="name">analytic.analytic.account.form</field>
7             <field name="model">account.analytic.account</field>
8             <field name="type">form</field>
9             <field name="arch" type="xml">
10                 <form string="Analytic Account" version="7.0">
11                     <sheet string="Analytic Account">
12                         <label for="name" class="oe_edit_only"/>
13                         <h1>
14                             <field name="name"/>
15                         </h1>
16                         <group>
17                             <group>
18                                 <field name="partner_id" on_change="on_change_partner_id(partner_id, name)" attrs="{'required':[('type','=','contract')]}"/>
19                                 <field name="parent_id" on_change="on_change_parent(parent_id)" attrs="{'invisible': [('type','in',['contract','template'])]}"/>
20                                 <field name="type"/>
21                                 <field name="template_id" on_change="on_change_template(template_id,context)" domain="[('type','=','template')]" attrs="{'invisible': [('type','in',['view', 'normal','template'])]}" context="{'default_type' : 'template'}"/>
22                             </group>
23                             <group>
24                                 <field name="code"/>
25                                 <field name="manager_id"/>
26                                 <field name="company_id" on_change="on_change_company(company_id)" widget="selection" groups="base.group_multi_company" attrs="{'required': [('type','&lt;&gt;','view')]}"/>
27                             </group>
28                         </group>
29                         <notebook>
30                             <page string="Contract Information" name="contract_page" attrs="{'invisible':[('type','not in',['contract', 'template'])]}">
31                                 <group name="master">
32                                     <group string="Validity" name="contract">
33                                         <label for="date_start" string="Duration"/>
34                                         <div name="duration">
35                                             <field name="date_start" class="oe_inline"/> - <field name="date" class="oe_inline"/>
36                                         </div>
37                                     </group>
38                                     <group name="project">
39                                         <separator string="Project Management" name="project_sep" invisible="1"/>
40                                     </group>
41                                 </group>
42                                 <separator string="Terms and Conditions" name="description"/>
43                                 <field name="description"/>
44                             </page>
45                         </notebook>
46                     </sheet>
47                     <div class="oe_chatter">
48                         <field name="message_ids" widget="mail_thread"/>
49                     </div>
50                 </form>
51             </field>
52         </record>
53      </data>
54 </openerp>