为一个模型openerp创建两个图形视图 [英] Create two graph view for one model openerp

查看:65
本文介绍了为一个模型openerp创建两个图形视图的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想为一个模型openerp创建两个图形视图,我想为每个菜单定义两个菜单,以显示一个图形视图, 例示一个国家的内容图,例按性别的人

I want Create two graph view for one model openerp, I like to define Two menu for each one display a graph view, exemple one content graph by country the ather by gender

推荐答案

您需要在xml中创建两个图形视图.

You need to create two graph view in xml.

    <record id="country_graph_id" model="ir.ui.view">
        <field name="name">country.graph</field>
        <field name="model">your.model</field>
        <field name="arch" type="xml">
            <graph string="By Country" type="bar">
                <field name="your fields"/>
                <field name="your_field2"/>
            </graph>
        </field>
    </record>

    <record id="country_gender_id" model="ir.ui.view">
        <field name="name">gender.graph</field>
        <field name="model">your.model</field>
        <field name="arch" type="xml">
            <graph string="By Gender" type="bar">
                <field name="your_field3"/>
                <field name="your_field4"/>
            </graph>
        </field>
    </record>

在那之后,您需要创建两个动作和两个菜单,例如

after that, you need to create two actions and two menus like,

<record id="action_for_country_graph" model="ir.actions.act_window">
    <field name="name">By Country</field>
    <field name="res_model">your.model</field>
    <field name="view_type">form</field>
    <field name="view_mode">graph</field>
    <field name="view_id" ref="country_graph_id"/>
</record>

<record id="action_for_gender_graph" model="ir.actions.act_window">
    <field name="name">By gender</field>
    <field name="res_model">your.model</field>
    <field name="view_type">form</field>
    <field name="view_mode">graph</field>
    <field name="view_id" ref="gender_graph_id"/>
</record>


<menuitem action="action_for_country_graph" id="menu_country_graph_id"
    sequence="1" name='Country Graph' parent='parent.menu'/>

<menuitem action="action_for_gender_graph" id="menu_gender_graph_id"
    sequence="2" name='Gender Graph' parent='parent.menu'/>

这篇关于为一个模型openerp创建两个图形视图的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆