[FIX] Add tests for parsing integers and floats, fix parsing of floats in case user...
[odoo/odoo.git] / addons / project_issue_sheet / project_issue_sheet_view.xml
1 <?xml version="1.0"?>
2 <openerp>
3     <data>
4         <record model="ir.ui.view" id="project_issue_form_view">
5             <field name="name">Project Issue Tracker Form</field>
6             <field name="model">project.issue</field>
7             <field name="inherit_id" ref="project_issue.project_issue_form_view" />
8             <field name="type">form</field>
9             <field name="arch" type="xml">
10                 <field name="project_id" position="attributes">
11                     <attribute name="on_change">on_change_project(project_id)</attribute>
12                 </field>
13                 <xpath expr="/form/notebook" position="before">
14                     <field invisible="1" name="analytic_account_id"
15                         domain="[('parent_id','!=',False),('partner_id', '=', partner_id),('type', '!=', 'view')]"
16                         on_change='on_change_account_id(analytic_account_id)'
17                         groups="base.group_extended" />
18                 </xpath>
19                 <xpath expr="//notebook/page[@string='Extra Info']" position="before">
20                         <page string="Worklogs">
21                         <field name="timesheet_ids" colspan="4" nolabel="1" context="{'default_user_id' : user_id, 'default_account_id' : analytic_account_id}">
22                             <tree editable="top" string="Timesheets">
23                                 <field name="name"/>
24                                 <field name="unit_amount" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)" widget="float_time"/>
25                                 <field name="account_id" invisible="0" domain="[('partner_id', '=', parent.partner_id)]" on_change="on_change_account_id(account_id)"/>
26                                 <field name="date"/>
27                                 <field name="user_id"/>
28                                 <field invisible="1" name="journal_id"/>
29                                 <field invisible="1" name="product_id"/>
30                                 <field invisible="1" name="product_uom_id" on_change="on_change_unit_amount(product_id, unit_amount, False, product_uom_id,journal_id)"/>
31                                 <field invisible="1" name="amount"/>
32                                 <field invisible="1" name="general_account_id"/>
33                             </tree>
34                         </field>
35                     </page>
36                 </xpath>
37             </field>
38         </record>
39     </data>
40 </openerp>