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
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Boekhouding
- Voorraad
- PoS
- Project
- MRP
Deze vraag is gerapporteerd
Hi aneesh,
Try this, <field name="many2one_field_name" options="{"no_open": 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}"/>
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!
Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!
Aanmelden