Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

Understanding OpenERP domain filter?

Subscribe

Get notified when there's activity on this post

This question has been flagged
7 Replies
100274 Views
Avatar
Remya
3
Avatar
Discard
Avatar
Remya
Author Best Answer

Explaination of OpenERP domain filter with simple example:

Consider the following fields in XML view.

<field name="field1"/>

<field name="field2"/>

<field name="field3"/>

 

Single condition:

 

Simple condition in programming:                           

if field1 = 10

In OpenERP domain filter, it will be written as:

syntax : Each tuple in the domain has three fields ->  ('field_name', 'operator', value)

field_name : a valid name of field of the object model or in the database table

operator : valid operators are =, !=, >, >=, <, <=, like, ilike, in, not in, child_of, parent_left, parent_right (openerp/osv/expression.py)

value : a valid value to compare with the values of field_name, depending on its type.

ie, domain = [('field1','=',10)] # where field1 should be a field in the model and 10 will be the value

or domain = [('field1','=',field2)] # where field1 and field2 should be the fields in the model

Condition AND

Simple condition in programming:    

if field1 = 5 and field2 = 10

In OpenERP domain filter, it will be written as:

ie, domain = [('field1','=',5),('field2','=',10)]

or domain = [('field1','=',field3),('field1','=',field3)]

Note : Note that if you don't specify any condition at the beginning and condition will be applied.

Condition OR

Simple condition in programming:    

if field1 = 5 or field2 = 10

In OpenERP domain filter, it will be written as:

ie, domain = ['|', ('field1','=',5),('field2','=',10)]

or domain = ['|', ('field1','=',field3),('field1','=',field3)]

 

Multiple Condition

Simple condition in programming:  

if field1 = 5 or (field2 ! = 10 and field3 = 12)

In OpenERP domain filter, it will be written as:

domain = ['|',('field1','=',5),('&',('field2','!=',10),('field3','=','12'))]

 

Also this post from Vivek will be helpful to all. Cheers!!

28
Avatar
Discard
Muhammad

Hi there, thank you for the explanation. Can you help me to understand this domain filter for contracts: [('employee_id.user_id', 'in', [usr.id for usr in user.user_ids])] Thank you in advance.

Mathieu Laflamme

I can't understand that s*** sorry! Help needed!

['&', '|',

('product_id','=',product_id),

'&',

('product_tmpl_id.product_variant_ids','=',product_id),

('product_id','=',False),

('type', '=', 'normal')]

Mathieu Laflamme

This is part of Odoo 10 mrp_production_view.xml...

Adnier Rosello

Hi Muhammad, that code can be interpreted as:

(('product_id','=',product_id) or (('product_tmpl_id.product_variant_ids','=',product_id) and ('product_id','=',False))) and ('type', '=', 'normal')

keep in mind the order of parentheses.

Avatar
Mohamed El Mokhtar
Best Answer

HI, thenk you for the explanation.

Can you help me, i want to do the filtering with a simple condition but using a value of the function type field

see the code

gerant_structure_id = fields.Integer('Structure id', compute='_getStructureIdForCurrentUser')

    @api.one
    def _getStructureIdForCurrentUser(self):
        structure_id = self.env['afya.structure.sante'].search([('gerant_id', '=', self.env.uid )]).id
        self.gerant_structure_id = structure_id


view ...

<record model="ir.actions.act_window" id="compte_wallet_list_action">
            <field name="name">Compte_Wallet</field>
            <field name="domain">[('structure_sante_id', '=',  gerant_structure_id)]</field>
            <field name="res_model">afya.compte.wallet</field>
            <field name="view_mode">tree</field>

</record>


0
Avatar
Discard
Avatar
Peregrin Tuk
Best Answer

I'm looking for some insight about a tiny detail:

Regarding this definition

    domain = ['|',('field1','=',5),('&',('field2','!=',10),('field3','=','12'))]

what's/why the difference between the lack of quotes like in 5 or 10 values and and the quoted one like in '12' ?

Thanks

0
Avatar
Discard
Karthik Arumugam

The coder may declared the fields3 as string fields and other 2 fields as integer

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
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now