Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

How to use domains for required fields of many2one when having multiple many2ones?

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
domainmany2onemodelsdomain_filterodoo8.0
4 Odpowiedzi
7502 Widoki
Awatar
Yenthe Van Ginneken (Mainframe Monkey)

Hi guys,

I have two different many2one relations. This are the fields that I define in my model:

     _columns = {
        'product_id': fields.many2one('product.product','Product'),
        'car_id': fields.many2one('fleet.vehicle', 'Car'),
        'analytic_account_id': fields.many2one('account.analytic.account', 'Analytic Account'),
        'analytic_car_account_id': fields.many2one('account.analytic.account', 'Analytic Account 2'),
        'name': fields.text('Description', required=True),
        'quantity': fields.float('Quantity', required=True),
        'uom_id': fields.many2one('product.uom', 'Unit of Measure',required=True),
        'price_unit': fields.float('Unit Price', required=True),
        'price_subtotal': fields.function(_amount_line, string='Sub Total', type="float",digits_compute= dp.get_precision('Account')),
        'car_license_plate': fields.text('Nummerplaat', required=True),
        'car_rent_price': fields.float('Prijs', required=True),
        'car_number_of_units': fields.integer('Aantal'),
    }

As you can see I have multiple fields that are required, since they really need to be filled in. Most of these fields are used in the many2one product_id and four of these fields are for the many2one car_id.
As you can see in the XML view:

 <div attrs="{'invisible': [('recurring_invoices','=',False)]}">
                        <field name="recurring_invoice_line_ids" >
                            <tree string="Account Analytic Lines" editable="bottom">
                                <field name="product_id" on_change="product_id_change(product_id, uom_id, quantity, False, parent.partner_id, False, parent.pricelist_id, parent.company_id)"/>
                                <field name="name"  attrs="{'required':[('product_id', '=', True)]}"/>
                                <field name="quantity" attrs="{'required':[('product_id', '=', True)]}"/>
                                <field name="uom_id" attrs="{'required':[('product_id', '=', True)]}"/>
                                <field name="price_unit" attrs="{'required':[('product_id', '=', True)]}"/>
                                <field name="price_subtotal"/>
                            </tree>
                        </field>
                        <field name="recurring_invoice_car_line_ids">
				<tree string="Account Analytic Lines" editable="bottom">
					<field name="car_id" on_change="car_id_change(car_id, car_license_plate, car_rent_price)"/>
					<field name="car_license_plate" attrs="{'required':[('car_id', '=', True)]}"/>
					<field name="car_rent_price" attrs="{'required':[('car_id', '=', True)]}"/>
					<field name="car_number_of_units" attrs="{'required':[('car_id', '=', True)]}"/>
				</tree>
			</field> 
</div>

My question is now how can I guarantee that the fields must be filled in, depending on the requirements?
All the samples:
A user wants to add one product to the many2one product_id but nothing to car_id. 
=> Only the fields for the many2one product are required (as specified in the model).
A user wants to add one car to the many2one car_id but nothing to product_id
=> Only the fields for the many2one car_id are required (as specified in the model).
A user wants to add both product(s) and car(s) to both many2one relations  (as specified in the model).
=> All fields on the many2one product_id should be filled in and all fields on the many2one car_id should be filled in.

How exactly should I do this? I know I need domains but I don't know how to only force the user to fill in fields when something in the many2one is filled in..
I've tried a few ways but I keep getting this dialog


0
Awatar
Odrzuć
Awatar
Yenthe Van Ginneken (Mainframe Monkey)
Autor Najlepsza odpowiedź

The problem is in the domains logic and where they're applied.
You can make a field in the many2one required by doing something along these lines:

 <field name="recurring_invoice_car_line_ids">
				<tree string="Account Analytic Lines" editable="bottom">
					<field name="car_id" on_change="car_id_change(car_id, car_license_plate, car_rent_price)" attrs="{'required':[('car_id', '!=', '')]}"/>
					<field name="car_license_plate"/> <field name="car_rent_price" attrs="{'required':[('car_id', '!=', '')]}"/>
					<field name="car_number_of_units" attrs="{'required':[('car_id', '!=', '')]}"/>
				</tree>
			</field>
This means you only need to fill in the fields car_number_of_units and car_rent_price when there is an id set in the many2one. If there are no records it is not required. The fields that have no domain are not required to be filled in at any time.

attrs="{'required':[('car_id', '!=', '')]}" 

This statement literally says that the field should only be required when there is some id on the field car_id. When there is nothing it shouldn't be required.

1
Awatar
Odrzuć
Awatar
Zbik
Najlepsza odpowiedź

You replace '==' by '=' and verify solutions again.

1
Awatar
Odrzuć
Yenthe Van Ginneken (Mainframe Monkey)
Autor

Thanks for the reply Zbik! I've changed this but no succes. I've updated my whole question with all the new code but there is still something wrong. Any idea?

Zbik

In _column definition you have many ... required=True, remove them if possible.

Yenthe Van Ginneken (Mainframe Monkey)
Autor

Since your answer did help me I've upvoted it! I've made an own answer on this topic too with the solution and the explenation. Who knows somebody will need it one day! Thanks Zbik!

Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
How to set this specific domain in XML?
domain xml many2one odoo8.0
Awatar
Awatar
3
kwi 15
39864
Dynamic domain depending on user selection Rozwiązane
partner domain many2one domain_filter relation
Awatar
Awatar
Awatar
3
wrz 23
9721
How can i use a field from 3th model for Domain ?
domain many2one domain_filter odoo v15
Awatar
0
mar 23
2419
Many2one Domain (Filter by user security groups)
security domain many2one domain_filter domains
Awatar
0
sie 16
4923
How to fill up Many2Many after user took an option from a selection? Rozwiązane
domain many2one selection many2many odoo8.0
Awatar
Awatar
1
mar 15
18883
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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