跳至内容
菜单
此问题已终结
3 回复
13617 查看

Dear Sir/Madom,
I need to restrict my manytoone to show only option of 'Create and Edit...', ie I needn't want to display the all options but only need to have a option for create.
Thank You

形象
丢弃
最佳答案

 Hi aneesh,

Try this, <field name="many2one_field_name" options="{&quot;no_open&quot;: True}" />

here, options - JSON object specifying configuration option for the field’s widget (including default widgets)

And if you don't want to allow create or edit then. give widget="selection" on that field. <field name="many2one_field_name" widget="selection" />

for more details, visit this http://www.odoo.com/documentation/8.0/reference/views.html#lists

Hope this will help you.

形象
丢弃
最佳答案

hi,

you may try this:

<field name="product_id" options='{"create":False,"create_edit": False,"no_open": True}'/>

形象
丢弃
最佳答案

Hi,

You can achieve this as follows:

Install module web_m2x_options https://www.odoo.com/apps/modules/8.0/web_m2x_options/

Then set limit as zero for listing in many2one field.

Ex:    <field name="partner_id" options="{'limit': 0}"/> 
形象
丢弃