[IMP] changes the xml description of the graphs to use the new graph view (and to make sure the result is as close as possible) (addon project)

bzr revid: ged@openerp.com-20131224102922-g7nbwftaktd4g2v4
This commit is contained in:
Gery Debongnie 2013-12-24 11:29:22 +01:00
parent def9e99aa4
commit e6c2dd738b
3 changed files with 8 additions and 11 deletions

View File

@ -591,9 +591,8 @@
<field name="model">project.task</field>
<field name="arch" type="xml">
<graph string="Project Tasks" type="bar">
<field name="project_id"/>
<field name="planned_hours" operator="+"/>
<field name="delay_hours" operator="+"/>
<field name="project_id" type="row"/>
<field name="planned_hours" type="measure"/>
</graph>
</field>
</record>

View File

@ -22,11 +22,10 @@
<field name="name">project.task.history.cumulative.graph</field>
<field name="model">project.task.history.cumulative</field>
<field name="arch" type="xml">
<!-- <field name="project_id"/> -->
<graph string="Project Tasks" type="bar">
<field name="date"/>
<field name="planned_hours" operator="+"/>
<field name="type_id" group="True"/>
<graph string="Project Tasks" type="bar" stacked="True">
<field name="date" type="row"/>
<field name="type_id" type="row"/>
<field name="planned_hours" type="measure"/>
</graph>
</field>
</record>

View File

@ -44,9 +44,8 @@
<field name="model">report.project.task.user</field>
<field name="arch" type="xml">
<graph string="Tasks Analysis" type="bar">
<field name="name"/>
<field name="stage_id" group="True"/>
<field name="no_of_days" operator="+"/>
<field name="name" type="row"/>
<field name="no_of_days" type="measure"/>
</graph>
</field>
</record>