[IMP] mail: improved display of openchatter in form views
[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="arch" type="xml">
9                 <form string="Analytic Account" version="7.0">
10                     <sheet string="Analytic Account">
11                         <div class="oe_right oe_button_box" name="buttons">
12                         </div>
13
14                         <div class="oe_title">
15                         <label for="name" class="oe_edit_only"/>
16                             <h1>
17                                 <field name="name" class="oe_inline"/>
18                             </h1>
19                             <div name="project"/>
20                         </div>
21
22                         <group name="main">
23                             <group>
24                                 <field name="partner_id" on_change="on_change_partner_id(partner_id, name)" attrs="{'required':[('type','=','contract')]}"/>
25                                 <field name="manager_id"/>
26                                 <field name="code"/>
27                                 <field name="currency_id" attrs="{'invisible': ['|',('type', '&lt;&gt;', 'view'), ('company_id', '&lt;&gt;', False)]}"/>
28                             </group>
29                             <group>
30                                 <field name="type"/>
31                                 <field name="parent_id" on_change="on_change_parent(parent_id)" attrs="{'invisible': [('type','in',['contract','template'])]}"/>
32                                 <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'}"/>
33                                 <field name="company_id" on_change="on_change_company(company_id)" widget="selection" groups="base.group_multi_company" attrs="{'required': [('type','&lt;&gt;','view')]}"/>
34                             </group>
35                         </group>
36                         <notebook>
37                             <page string="Contract Information" name="contract_page" attrs="{'invisible':[('type','not in',['contract', 'template'])]}">
38                                 <group string="Renewal" name="contract">
39                                     <p colspan="2" class="oe_grey oe_edit_only">
40                                         Once the end date of the contract is
41                                         passed or the maximum number of service
42                                         units is reached, the account manager
43                                         is warned by email to renew the contract.
44                                     </p>
45                                     <field name="date_start"/>
46                                     <label for="date" string="End Date"/>
47                                     <div name="duration">
48                                         <field name="date" class="oe_inline"/>
49                                     </div>
50                                 </group>
51                                 <separator string="Terms and Conditions" name="description"/>
52                                 <field name="description"/>
53                             </page>
54                         </notebook>
55                     </sheet>
56                     <div class="oe_chatter">
57                         <field name="message_follower_ids" widget="mail_followers"/>
58                         <field name="message_ids" widget="mail_thread"/>
59                     </div>
60                 </form>
61             </field>
62         </record>
63      </data>
64 </openerp>