请咨询我如何删除“创建和编辑......”从many2one场? 该项目下面显示了我与域选项过滤many2one领域。
OpenERP的第7版
请咨询我如何删除“创建和编辑......”从many2one场? 该项目下面显示了我与域选项过滤many2one领域。
OpenERP的第7版
我没有太多的想法。 也许对你不得不在网页插件的变化。
但另一种解决方案是,你可以使many2one字段选择 。 添加widget="selection"
属性,在XML。
<field name="Your_many2one_field" widget="selection">
Many2one部件(默认)
选项 :你可以用这个小工具使用的其他可能的选择。
例如 :
<field name="field_name" options="{'no_quick_create': True, 'no_create_edit' : True}"/>
您可以参考它卢德维克登Trammer的帖子
它在OpenERP的V7.0测试,在其中我们可以通过删除在下载本模块“创建和编辑”,
https://www.odoo.com/apps/7.0/web_m2x_options/#access_token=31af017545174c1eb6745fa70c9b6684&scope=userinfo&state=&expires_in=3600&token_type=Bearer
并添加属性“创造”:假的,“create_edit”:假像这样
<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文件中:
请添加选项=“{‘no_create’:真}”你的字段,将删除创建按钮
对于那些不想要的“选择”窗口小部件谁(它是那么强大,不提供搜索功能),这是另一种方法,在8测试。
<xpath expr="//field[@name='partner_id']" position="attributes">
<attribute name="options">{'no_create': '1', 'no_create_edit': '1'}</attribute>
</xpath>
只需添加no_open,no_create,no_create_edit,期权
<field name="partner_id" options='{"no_open": True,"no_create": 1, "no_create_edit": 1}'/>
我尝试过了,这是工作的罚款。
在你的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}"/>
注意: