Please advice me How to remove "Create and Edit..." from many2one field.? that item shows below in the many2one fields which I filtered with domain option.
OpenERP version 7
Please advice me How to remove "Create and Edit..." from many2one field.? that item shows below in the many2one fields which I filtered with domain option.
OpenERP version 7
我没有太多想法。也许为此您必须对网络插件进行更改。
但另一种解决方案是您可以进行many2one字段选择。在您的 xml 中添加widget="selection"
属性。
<field name="Your_many2one_field" widget="selection">
Many2one 小部件(默认)
选项:您可以与此小部件一起使用的其他可能选项。
示例:
<field name="field_name" options="{'no_quick_create': True, 'no_create_edit' : True}"/>
您可以参考Ludwik Trammer 的帖子
它在 openerp v7.0 中进行了测试,在其中我们可以通过下载存在的模块来删除“创建和编辑”,
并添加属性 'create':false, 'create_edit': false 像这样
<field name="partner_id" options="{'limit': 10, 'create': false, 'create_edit': false}"/>
这里给出了一个很好的教程 https://www.odoo.com/apps/7.0/web_m2x_options/
对于 Odoo 8.0 和 9.0,您应该使用 no_create 和 no_open。
no_create:
设置为 True 以禁用在下拉列表中创建新条目的选项。
no_open:
设置为 True 以禁用下拉列表右侧的按钮,该按钮弹出一个允许编辑所选实例的窗口。
<field name="field_name" options="{'no_create': True, 'no_open': True}" />
在xml文件中放:
<field name="my_field_name" options="{'no_create' : True}"/>
我希望这行得通!
在 XML 文件中:
请将 options="{'no_create': True}"添加到您的字段中,这将删除创建按钮
只需在选项中添加no_open、no_create、no_create_edit 即可
<field name="partner_id" options='{"no_open": True,"no_create": 1, "no_create_edit": 1}'/>
我试过了,它工作正常。
For those who don't want the 'selection' widget (it is less powerful, doesn't offer search capability) this is another method, tested in 8.
<xpath expr="//field[@name='partner_id']" position="attributes">
<attribute name="options">{'no_create': '1', 'no_create_edit': '1'}</attribute>
</xpath>
在你的 XML 文件中
<field name="your_field_name" options="{'no_quick_create':True,'no_create_edit':True,'no_open': True,}"/>
odoo 的解决方案在这里,对于 many2one 关系领域。
在下面列出的官方 odoo 版本中工作,默认功能。
<field name="patient_id" options="{'no_quick_create': true, 'no_create_edit': false}"/>
笔记: