İçereği Atla
Odoo Menü
  • Portal
  • Ücretsiz deneyin
  • Uygulamalar
    Finans
    • Muhasebe
    • Faturalama
    • Masraf Yönetimi
    • Elektronik Çizelge (BI)
    • Belgeler
    • İmza
    Satış
    • Müşteri İlişkileri Yönetimi (CRM)
    • Satış
    • Satış Noktası Mağaza
    • Satış Noktası Restoran
    • Abonelikler
    • Kiralama
    Web Sitesi
    • Web Sitesi Oluşturucu
    • eTicaret
    • Blog
    • Forum
    • Canlı Sohbet
    • eÖğrenme
    Tedarik Zinciri
    • Envanter
    • Üretim
    • Ürün Yaşam Döngüsü Yönetimi
    • Satın Alma
    • Bakım
    • Kalite
    İnsan Kaynakları
    • Çalışanlar
    • İşe Alım
    • İzin
    • Değerlendirme
    • Referans
    • Filo Yönetimi
    Pazarlama
    • Sosyal Medyada Pazarlama
    • E-posta ile Pazarlama
    • SMS ile Pazarlama
    • Etkinlikler
    • Pazarlama Otomasyonu
    • Anket
    Hizmetler
    • Proje Yönetimi
    • Çalışma Çizelgeleri
    • Saha Hizmeti
    • Yardım Masası
    • Planlama
    • Randevular
    Verimlilik
    • Sohbet
    • Onay
    • Nesnelerin İnterneti
    • VoIP
    • Bilgi Bankası
    • WhatsApp
    Üçüncü taraf uygulamalar Odoo Stüdyo Odoo Bulut Platformu
  • Sektörler
    Perakende satış
    • Kitapçı
    • Giyim Mağazası
    • Mobilya Mağazası
    • Gıda Marketi
    • Hırdavat Dükkanı
    • Oyuncak Dükkanı
    Gıda ve Konaklama
    • Bar ve Pub
    • Restoran
    • Fast Food Restoranı
    • Konuk Evi
    • İçecek Distribütörü
    • Otel
    Gayrimenkul
    • Emlak Acentesi
    • Mimarlık Firması
    • İnşaat
    • Emlak Yönetimi
    • Bahçe Tasarımı
    • Mülk Sahipleri Derneği
    Uzmanlık
    • Muhasebe Firması
    • Odoo Partner
    • Pazarlama Ajansı
    • Hukuk Firması
    • Yetenek Kazanımı
    • Denetim ve Belgelendirme
    Üretim
    • Tekstil
    • Metal
    • Mobilyalar
    • Gıda
    • Bira fabrikası
    • Kurumsal Hediye
    Sağlık ve Spor
    • Spor Kulübü
    • Optik Mağazası
    • Fitness Merkezi
    • Sağlıklı Yaşam Merkezi
    • Eczane
    • Kuaför Salonu
    Ticaret
    • Tamirci
    • BT Donanım & Destek
    • Güneş Enerjisi Sistemleri
    • Ayakkabı İmalatçısı
    • Temizlik Hizmetleri
    • HVAC Hizmetleri
    Diğerleri
    • Kar Amacı Gütmeyen Kuruluş
    • Çevre Ajansı
    • Reklam Panosu Kiralama
    • Fotoğrafçılık
    • Bisiklet Kiralama
    • Yazılım Bayisi
    Tüm Sektörlere Göz Atın
  • Topluluk
    Öğrenim
    • Eğitim Araçları
    • Dokümantasyon
    • Sertifikasyonlar
    • Eğitim Etkinlikleri
    • Blog
    • Podcast
    Eğitim ve Gelişim
    • Eğitim Programı
    • Scale Up! İşletme Oyunu
    • Odoo'yu Ziyaret Edin
    Yazılım
    • İndirin
    • Sürümleri Kıyaslayın
    • Sürümler
    İş Birliği
    • Github
    • Forum
    • Etkinlikler
    • Çeviriler
    • Partner Olun
    • Partnerler için Hizmetler
    • Muhasebe Firmanızı Kaydettirin
    Hizmetler
    • Partner Bulun
    • Muhasebeci Bulun
    • Bir danışmanla görüşün
    • Kurulum Hizmetleri
    • Müşteri Referansları
    • Destek
    • Sürüm Yükseltme
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Demo randevusu alın
  • Fiyatlandırma
  • Yardım

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

  • Müşteri İlişkileri Yönetimi
  • e-Commerce
  • Muhasebe
  • Envanter
  • PoS
  • Proje Yönetimi
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Etiketler (View all)
odoo accounting v14 pos v15
About this forum
Yardım

Correct way to make domains for multiple or conditions?

Abone Ol

Get notified when there's activity on this post

Bu soru işaretlendi
domainpolishinvisibleodoo8
2 Cevaplar
22952 Görünümler
Avatar
Yenthe Van Ginneken (Mainframe Monkey)

Hi guys,


I'm having some issues with domains. I know I can use | if I have an or condition. Initially I had the following code:

<field name="gebruik_zorgverlener_adres" attrs="{'invisible': ['|',('gebruik_organisatie_adres','=',True),('gebruik_prive_adres','=',True)]}"/>

<field name="gebruik_organisatie_adres" attrs="{'invisible': ['|',('gebruik_zorgverlener_adres','=',True),('gebruik_prive_adres','=',True)]}"/>

<field name="gebruik_prive_adres" groups="my_module.group_sel_manager" attrs="{'invisible': ['|',('gebruik_zorgverlener_adres','=',True),('gebruik_organisatie_adres','=',True)]}"/

Which is basically saying that when one of those fields is checked on that all others should become invisible. This piece of code works fine!
When I now add a fourth field and add another or condition to all those attrs it will not however. My attempt:

<field name="gebruik_zorgverlener_adres" attrs="{'invisible': ['|',('gebruik_organisatie_adres','=',True),('gebruik_prive_adres','=',True), ('gebruik_maatschappelijke_zetel_adres','=',True)]}"/>

<field name="gebruik_organisatie_adres" attrs="{'invisible': ['|',('gebruik_zorgverlener_adres','=',True),('gebruik_prive_adres','=',True), ('gebruik_maatschappelijke_zetel_adres','=',True)]}"/>

<field name="gebruik_prive_adres" groups="my_module.group_sel_manager" attrs="{'invisible': ['|',('gebruik_zorgverlener_adres','=',True),('gebruik_organisatie_adres','=',True), ('gebruik_maatschappelijke_zetel_adres','=',True)]}"/>

<field name="gebruik_maatschappelijke_zetel_adres" attrs="{'invisible': ['|',('gebruik_zorgverlener_adres','=',True),('gebruik_prive_adres','=',True), ('gebruik_organisatie_adres','=',True)]}"/>

I simply added another field to all those or conditions for all fields but yet this totally fails. When I now test this code not one checkbox will be hidden or shown depending on what I do.
So, what is the correct way to write an or domain so that always only one of those four checkboxes is shown to the user? and is there no other way to write the domain then by calling ALL other field names? There must be a shorter way to code this?

Thank you,
Yenthe

1
Avatar
Vazgeç
Temur

as "or" operator '|' is a default one, it's not necessary to use it here at all. Try to write all the same domains without any operator, remove all '|'-s, like this:

 attrs="{'invisible': [('gebruik_organisatie_adres','=',True),('gebruik_prive_adres','=',True), ('gebruik_maatschappelijke_zetel_adres','=',True)]}" 
Jérémy Kersten (jke)

@temur, default operator is AND !

Avatar
Axel Mendoza
En İyi Yanıt

@Yenthe

Your domains could be get it fixed by adding another '|', like:

<field name="gebruik_zorgverlener_adres" attrs="{'invisible': ['|','|',('gebruik_organisatie_adres','=',True),('gebruik_prive_adres','=',True), ('gebruik_maatschappelijke_zetel_adres','=',True)]}"/>

<field name="gebruik_organisatie_adres" attrs="{'invisible': ['|','|',('gebruik_zorgverlener_adres','=',True),('gebruik_prive_adres','=',True), ('gebruik_maatschappelijke_zetel_adres','=',True)]}"/>

<field name="gebruik_prive_adres" groups="my_module.group_sel_manager" attrs="{'invisible': ['|','|',('gebruik_zorgverlener_adres','=',True),('gebruik_organisatie_adres','=',True), ('gebruik_maatschappelijke_zetel_adres','=',True)]}"/>

<field name="gebruik_maatschappelijke_zetel_adres" attrs="{'invisible': ['|','|',('gebruik_zorgverlener_adres','=',True),('gebruik_prive_adres','=',True), ('gebruik_organisatie_adres','=',True)]}"/>

The thing is that you need to put all the operators in the beginning of the domain to be used like an stack to be matching the domain terms.

2
Avatar
Vazgeç
Yenthe Van Ginneken (Mainframe Monkey)
Üretici

Thanks a lot Axel, great answer.

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

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

Üye Ol
İlgili Gönderiler Cevaplar Görünümler Aktivite
Domain in many2many relation
domain odoo8
Avatar
Avatar
1
Şub 16
4135
Domain on selection field
domain odoo8
Avatar
Avatar
1
Mar 15
16620
Correct way to create a domain with in condition and multiple & (AND) conditions? Çözüldü
domain polish odoo9
Avatar
Avatar
Avatar
4
Mar 24
26373
Selection field value depend of the domain
domain field selection odoo8
Avatar
Avatar
1
Kas 20
5489
Fied be Invisible if Many2Many value is selected. Çözüldü
filter domain many2many invisible
Avatar
Avatar
Avatar
7
Haz 20
7658
Topluluk
  • Eğitim Araçları
  • Dokümantasyon
  • Forum
Açık Kaynak
  • İndirin
  • Github
  • Runbot
  • Çeviriler
Hizmetler
  • Odoo.sh Hosting
  • Destek
  • Sürüm Yükseltme
  • Özel Geliştirmeler
  • Eğitim
  • Muhasebeci Bulun
  • Partner Bulun
  • Partner Olun
Hakkında
  • Şirketimiz
  • Pazarlama Gereçleri
  • İletişim
  • Kariyer
  • Etkinlikler
  • Podcast
  • Blog
  • Müşteriler
  • Hukuki • Gizlilik
  • Güvenlik
الْعَرَبيّة 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, müşteri ilişkileri yönetimi, eTicaret, muhasebe, envanter, satış noktası, proje yönetimi gibi şirketinizin tüm ihtiyaçlarını karşılayan bir açık kaynak işletme uygulamaları paketidir.

Odoo’nun eşsiz değer önermesi, aynı anda hem kullanımının çok kolay olup hem de tamamen entegre olmasıdır.

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