Skip to Content
Menu
Dette spørgsmål er blevet anmeldt
3 Besvarelser
9818 Visninger

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
Kassér
Bedste svar

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
Kassér
Forfatter

Thank you brother.

It really works.

Bedste svar

Thanks so much !

Avatar
Kassér
Related Posts Besvarelser Visninger Aktivitet
2
sep. 19
5099
2
feb. 24
3232
1
aug. 23
4843
6
apr. 23
17075
2
dec. 22
6289