odoo更改图形的默认类型

时间:2018-09-11 12:00:14

标签: python odoo odoo-10

每个odoo documentation,如果要更改图形的默认类型,请添加xml标签类型并将其设置为所需的类型,例如:

<graph string="Sales Repersentative/Team performance" type="pie">

尽管如此,此标签没有任何作用,我的代码的一部分是:

<record id="graph_mia_sale_representative_team_performance" model="ir.ui.view">
<field name="name">graph.sale.representative.team.performance</field>
<field name="model">reporting.sale.representative.team.performance</field>
<field name="arch" type="xml">
    <graph string="Sales Repersentative/Team performance" type="pie">
        <field 
            name="calendar_month_name_year" 
            type="row" />
        <field 
            name="revenue"
            type="measure" />
    </graph>
</field>

我的代码没有错误,使用图形类型按钮,我可以完美地更改图形类型而没有错误

我是否缺少某些东西或odoo文档不完整?

1 个答案:

答案 0 :(得分:0)

例如,将带有关联动作的context_graph值发送到图形视图

<field name="context">
    { 'graph_mode': 'pie' }
</field>