This question has been flagged
3 Replies
12528 Views

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

Avatar
Discard
Best Answer

 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.

Avatar
Discard
Best Answer

hi,

you may try this:

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

Avatar
Discard
Best Answer

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}"/> 
Avatar
Discard