Skip to Content
Menu
This question has been flagged
2 Replies
5473 Views

Hello seniors,

I want to know about how to edit reporting(pivot view) in odoo12 Project module. Please give me a guidance to do it. For example i want to do is this .. i want to add progress just like (assigned to, assigned date, company, customer, etc... in reporting (pivot view) . Please help me to do this ASAP. Your help is highly appreciating.Sorry for my bad English.

Avatar
Discard
Best Answer

hi 
you need to inherit this view  project.view_project_task_pivot and add your field :

an example:

    <record id="view_project_task_pivot_inherited" model="ir.ui.view">

            <field name="name">project.task.pivot.inherited</field>

          <field name="inherit_id" ref="project.view_project_task_pivot"/>

            <field name="model">project.task</field>

            <field name="arch" type="xml">

                    <xpath expr="//field[@ name='project_id' position="after"/>

                    <field name="YOUR FIELD" type="row" />

            </xpath>

       </field>

    </record>

Avatar
Discard
Author

It's work fine , thanks bro

Best Answer

Hi, is it the same process in order to activate pivot view in Contact/Partners part?

Avatar
Discard
Related Posts Replies Views Activity
14
Nov 24
839432
1
Mar 22
1502
2
Jan 21
3170
2
Jun 19
2526
0
Mar 24
227