Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

How to filter the jobs based on services in odoo10?

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
filterdomainodoo10
1 Răspunde
3731 Vizualizări
Imagine profil
MUHAMMED ASLAM

My models are

class LmcPhone(models.Model):

     _name = 'lmc.phone'     

     service_id = fields.Many2one('lmc.service', required=True, string="Service")

     lmc_job_id = fields.Many2one('lmc.job', string="Job", domain=[('id', '=', 'service_id.job_ids')])


class LmcService(models.Model):

    _name = 'lmc.service'   

    name = fields.Char(string="Service")

    job_ids = fields.One2many('lmc.job', 'service_id', string="Job")

    

class LmcJob(models.Model):

    _name = 'lmc.job'

    name = fields.Char(string="Job")

    service_id = fields.Many2one('lmc.service')

notes

I set the domain in lmc_job_id field.I know it is not true.Please How help me how to set the correct domain here.Thanks in advance

0
Imagine profil
Abandonează
Imagine profil
Denis Baranov
Cel mai bun răspuns

Hi,

a few comments for the future:

  •  in your domain you compare id and a list. In such a case instead of '=' you should use the operator 'in'

  • the right leaf should not be place inside '',  if it is dynamic

Thus, the correct  domain should be similar to [('id','in',service_id.job_ids.ids)]

Do not forget to place service_id on an xml form view for LmcPhone. Otherwise, it would not work. 


Update: the simpliest domain is <field name="lmc_job_id" domain="[('service_id', '=', service_id)]"/>


1
Imagine profil
Abandonează
MUHAMMED ASLAM
Autor

Thanks for the comment.

in my python code i use

lmc_job_id = fields.Many2one('lmc.job', string="Job", domain=[('id','in', 'service_id.job_ids.ids')])

and my xml views

<field name="service_id" widget="selection"/>

<field name="lmc_job_id" domain="[('id', 'in', 'service_id.job_ids.ids')]"/>

but an error occured in selecting job from the lmc.phone model

error is raise ValueError("Invalid domain term %r" % (leaf,))

ValueError: Invalid domain term (u'id', u'in', u'service_id.job_ids.ids')

is any thong wrong in my code?

Denis Baranov

'service_id.job_ids.ids': there should be no quote marks.

Just domain=[('id','in', service_id.job_ids.ids)])

MUHAMMED ASLAM
Autor

i use like that domain=[('id','in', service_id.job_ids.ids)])

but a run time error is occured.

RuntimeError: maximum recursion depth exceeded while calling a Python object.

I don't no how happend like this.

Denis Baranov

Please: try to remove it from Python, and leave it only in xml

MUHAMMED ASLAM
Autor

I remove it from python.but i still got another error.

Uncaught Error: AttributeError: object has no attribute 'job_ids'.

Denis Baranov

Hello, let's do it simplier: <field name="lmc_job_id" domain="[('service_id', '=', service_id)]"/>. It would definetely work. I updated the answer. Please accept if it works

MUHAMMED ASLAM
Autor

Thank you so much for wonderful answer. Thanks It Libertas

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

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
How to hide edit button in purchase order for specific states? Rezolvat
filter domain edit odoo10
Imagine profil
Imagine profil
Imagine profil
Imagine profil
Imagine profil
10
ian. 24
16676
Problem with domain on view. How to filter this?
filter views domain odoo10
Imagine profil
Imagine profil
Imagine profil
6
dec. 17
9734
Filter many2one field with functional field
filter domain
Imagine profil
Imagine profil
Imagine profil
5
sept. 20
13570
Problem with column iteration in domain filter
filter domain
Imagine profil
1
mar. 15
6218
How to allow read parent tasks to followers
filter domain
Imagine profil
Imagine profil
Imagine profil
2
mar. 15
8405
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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