blob: d62fb501592cd098f93e694cda7ad0b927ecc918 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<record id="view_task_project_user_graph_inherited" model="ir.ui.view">
<field name="name">report.project.task.user.graph.inherited</field>
<field name="model">report.project.task.user</field>
<field name="inherit_id" ref="project.view_task_project_user_graph" />
<field name="arch" type="xml">
<graph string="Tasks Analysis" type="bar" sample="1" disable_linking="1">
<field name="project_id" position="after">
<field name="hours_planned" type="measure"/>
<field name="remaining_hours" type="measure"/>
</field>
</graph>
</field>
</record>
</data>
</odoo>
|