Skip to Content
Menu
This question has been flagged
3 Replies
9257 Views

I was trying to create a pivot in Odoo v11 but when I install the app , It shows this error

ValueError: Wrong value for ir.actions.act_window.view_type: 'pivot'

my xml code is as follows:

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

<field name="name">projection.onetomanydata.pivot</field>

<field name="model">projection.onetomanydata</field>

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

<pivot string="View Achievements">

<field name="date" type="row"/>

<field name="inv" type="row"/>

<field name="target" type="measure"/>

<field name="sales_today" type="row"/>

<field name="inv" type="col"/>

<field name="date" type="col"/>

</pivot>

</field>

</record>
Avatar
Discard
Best Answer

Hello Muhammed Nishad,


You can try this in action view :-

<record id="unique_id" model="ir.actions.act_window">
    <field name="name">name</field>
    <field name="res_model">model.name</field>
    <field name="view_type">form</field>
    <field name="view_mode">graph,pivot</field>

    <field name="search_view_id" ref="search_view_id"/>
</record>


You have to add view_type as form view instead of pivot. You can add view_mode as a pivot.

Hope it will works for you.

Thanks,

Avatar
Discard
Author

Thank you brother.

It really works.

Best Answer

Thanks so much !

Avatar
Discard
Related Posts Replies Views Activity
2
Sep 19
4586
2
Feb 24
2481
1
Aug 23
4347
6
Apr 23
16534
2
Dec 22
5856