gpt4 book ai didi

python-2.7 - 是否可以在 Openerp 中显示同一对象的多个表单 View 或 TreeView ?

转载 作者:行者123 更新时间:2023-12-01 12:41:36 30 4
gpt4 key购买 nike

我的模块中需要同一对象的多个表单 View ,我创建了多个表单,但 OpenERP 仅显示与该对象相关的一个表单,其他表单被隐藏。我查看了文档,但没有答案。如果有人知道,请帮助。提前致谢。

最佳答案

是的。只需为对象制作一个单独的操作和菜单。例如

<record model="ir.actions.act_window" id="client_form_action">
<field name="name">client.form.action</field>
<field name="res_model">client</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
</record>

<!--This action open the view we specify.-->
<record model="ir.actions.act_window" id="client_form_action1">
<field name="name">client.form.action1</field>
<field name="res_model">client</field>
<field name="view_type">form</field>
<field name="view_mode">form</field>
<field name="view_id" ref="client_form_view_1"/>
</record>

<menuitem id="menu_id" name="Client main menu"/>
<menuitem
id="menu_id_1"
name="Here we don't specify the view"
action="client_form_action" parent="menu_id"/>
<menuitem
id="menu_id_1"
name="Here we specify the view"
action="client_form_action1" parent="menu_id"/>

使用 View Id="some_thing"你可以做到,默认情况下第一个 View 是指定的第二个 View ,你也可以通过给予它们优先级来只显示你想要的 View 。希望这会有所帮助点击here !

关于python-2.7 - 是否可以在 Openerp 中显示同一对象的多个表单 View 或 TreeView ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23993475/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com