Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Food & Hospitality
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Guest House
    • Distributor nápojů
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Trades
    • Údržbář
    • IT hardware a podpora
    • Solar Energy Systems
    • Výrobce obuvi
    • Úklidové služby
    • HVAC Services
    Others
    • Nonprofit Organization
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Browse all Industries
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Services for Partners
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

Domain filter odoo11 manyToOne

Odebírat

Get notified when there's activity on this post

This question has been flagged
many2onedomain_filterodoo11
5 Odpovědi
5389 Zobrazení
Avatar
Quentin Soetemondt

Hello,

I need to get out of the equipment of a list following the following conditions:

A = is_bookable

B = maintenance.schedule_date

C = maintenance.end_date

D = context.schedule_date

E = context.end_date

F = maintenance_ids 

So i need : 

(A = true and F = false) or ( A = true and ( (B>E or C<D) or (B<E or C>D) ) )


I have tried this but I can book a equipment when I want to... The restriction of date are not taken... 

[
"|",
"&amp;",("is_bookable","=",True),("maintenance_ids","=",False),
"&amp;",("is_bookable","=",True),
[
"|",["maintenance_ids.schedule_date","&gt;",context.get('end_date')],["maintenance_ids.end_date","&lt;",context.get('schedule_date')],
"|",["maintenance_ids.schedule_date","&lt;",context.get('end_date')],["maintenance_ids.end_date","&gt;",context.get('schedule_date')]
]
]
0
Avatar
Zrušit
Yogesh

maintenance_ids is a o2m or m2m field? to which record schedule_date belongs to if there are many?

Quentin Soetemondt
Autor

Hi Yogesh, thanks for your interest! :)

maintenance_ids is a o2m. One equipment but multiple booking.

Its a module for the booking of equipment so i need to check if the equipment was free for the date the user want. For exemple i have 2 phone. I have a phone book from 01/01/2018 to 31/01/2018. It must be that this phone is not available if someone wants to book a phone of the 04/01/2018 to 08/01/2018

sorry for my english... I hope you understand what i mean..

Quentin THEURET

I don't understand (A = true and F = false) or ( A = true and ( (B>E or C<D) or (B<E or C>D) ) )

Because for me, this equals to :

(A = true) AND (F = false or B > E or C < D or B < E or C > D)

That's a non-sense. I think you should say :

(A = true) AND (F = false OR (B > E and C < D) OR (B < E AND C > D))

That's right ?

Quentin Soetemondt
Autor

Hi Quentin,

Verbatim I need to be able to book a equipment if its date of the beginning and end of its reservation before or after a reservation already existing. No possible overlap

so if I have 3 equipment:

the First E1 is book of the 02/01/2018 to 04/01/2018

The second E2 is book of the 06/01/2018 to 10/01/2018

The third E3 is book of the 02/01/2018 to 10/01/2018

My user like to book a equipment of the 02/01/2018 to 05/02/2018 therefore only E2 can be book.

By against if the user like book of the 01/01/2018 to 11/01/2018 No equipment cannot be Book

It is more clear?

Avatar
Quentin Soetemondt
Autor Nejlepší odpověď

I find this solution

[ ("is_bookable","=",True),
"|",("maintenance_ids","=",False),
"&amp;",
    "|",["maintenance_ids.schedule_date","&gt;",context.get('end_date')],["maintenance_ids.end_date","&lt;",context.get('schedule_date')],
      "|",["maintenance_ids.schedule_date","&lt;",context.get('end_date')],["maintenance_ids.end_date","&gt;",context.get('schedule_date')]]
0
Avatar
Zrušit
Enjoying the discussion? Don't just read, join in!

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

Přihlásit se
Related Posts Odpovědi Zobrazení Aktivita
How to filter the domain of a selectbox depending on the value of another selectbox Vyřešeno
many2one domain_filter odoo11
Avatar
Avatar
1
lis 18
6418
how can filter domain with compute field?
domain_filter odoo11
Avatar
Avatar
Avatar
Avatar
3
srp 20
15888
Why many2one field sets to null when I save record? Vyřešeno
many2one odoo11
Avatar
Avatar
Avatar
2
čvn 20
7111
How can I dynamically filter many2one fields in Odoo 17 models? Vyřešeno
many2one domain_filter dynamic filter
Avatar
Avatar
Avatar
Avatar
3
srp 25
2990
How to display a specific column in many2one field dropdown? Vyřešeno
view many2one odoo11
Avatar
Avatar
Avatar
5
dub 25
16879
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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