Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

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

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

How to write domain for many2one field based on many2many field?

Naroči se

Get notified when there's activity on this post

This question has been flagged
many2manydomain_filterodoo9
6619 Prikazi
Avatar
vadivel

Hi Everyone.I have a situation here in v9.I have customized a form for employee benfits.

class HROvertime(osv.osv):
    _name = "hr.overtime"
    _description = "HR Overtime"

    _columns = {

        'name': fields.char('Name', size=256, required=True),
        'date_start': fields.date('Start Date',required=True,readonly=True),
        'date_end': fields.date('End Date',required=True,readonly=True),
        'employee_id': fields.many2one('hr.employee','Employee',required=True),
        'contract_id': fields.many2one('hr.contract','Contract',required=True),
        'user_id': fields.many2one('res.users','User'),
        'hours_claimed': fields.float(string='Total Hours Claimed', store=True, readonly=True, compute='_total_hours', track_visibility='always'),

        'overtime_ids': fields.one2many('hr.overtime.line','overtime_id','HR Overtime Line'),

}

-----------------------------------------------------------------------------------

the fields below are for one2many lines:

class HROvertimeLine(osv.osv):
    _name = "hr.overtime.line"
    _description = "HR Overtime Line"
    _columns = {
        'overtime_id': fields.many2one('hr.overtime','HR Overtime'),
        'name': fields.char('Description', size=256),
        'date': fields.date('Date'),
        'hours_claimed': fields.float('Hours Claimed'),
        'salary_rule_id': fields.many2one('hr.salary.rule','Salary Rule'),
        'approved': fields.boolean('Approved'),
    }

---------------------------------------------------------------------------------------------------------------

here for salary_rule_id, i have defined new field named 'job_ids' as many2many fieldin hr.salary.rule object(so we can assign some job type's(hr.job).

class HRSalaryRule(osv.osv):
    _inherit = "hr.salary.rule"
    _columns = {
        'job_ids':fields.many2many('hr.job', 'hr_job_salary_rule_rel', 'job_id', 'rule_id', 'Job Title'),
    }

So i can configure some of job type's in this many2many field, so can restrict displaying all salary rules except assigned job type of particular employee.

I mean if i select employee in Overtime form(hr.overtime), then in one2many line item when i select salary_rule_id, i can have only selected employee's job type salary rules only filtered for selection.Kindly give me the domain filteration for this issue.Thanks in advance.

0
Avatar
Opusti
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Prijavi
Related Posts Odgovori Prikazi Aktivnost
How to set tree view domain filter uid in many2many field Solved
many2many domain_filter odoo9
Avatar
Avatar
1
nov. 19
7774
Domain filter checking for product in many2many list in Sale Order Line item throws javascript error 'No conversion for undefined' on empty m2m list
tree many2many domain_filter odoo9
Avatar
0
mar. 16
7157
[11.0] Hide records from many2many
many2many domain_filter
Avatar
0
avg. 20
2905
Filtering relationship field Selection Based on another field in CRM Module
many2many context domain_filter
Avatar
Avatar
Avatar
2
nov. 24
3648
Set by default a specific "operation type" in a many2many MO field
many2many domain_filter operations
Avatar
0
jun. 23
2459
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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