In odoo 10 am trying to change the property of filter in many to one field in a form view how is it possible? I mean for now the search filter in form is in 'ilike' condition and i need to change it for '=ilike'
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Accounting
- Inventory
- PoS
- Project management
- MRP
This question has been flagged
2
Replies
3244
Views
Hello, if i'm correct you want to do domain on your field : 'your_field = fields.One2many('field', domain='[('id', ilike, '1'')' you will do it like that.
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up
can you please more explain?