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

Odoo 13 : Problems with one2many/many2one filters

Odebírat

Get notified when there's activity on this post

This question has been flagged
many2oneone2manyFiltersOdoo13
1 Odpovědět
2280 Zobrazení
Avatar
Tessa Roberts

Hello everyone !


I'm having problems creating filters for "one2many" and "many2one" fields.


For one of the projects I'm working on in Odoo v13, there is a custom model named "res.partner.contact".


In the "res.partner" model definition, a "one2many" field of type "res.partner.contact" has been added. 

This field is called "contacts" and is labelled "Partner contacts". 

This new "res.partner.contact" model contains the contact's name, date of birth and relationship to the "res.partner". And a "many2one" field of type "res.partner".


"res.partner" model definition


class ResPartner(models.Model):
    _inherit = "res.partner"
    _description="Partners"
    [...]
  contacts = fields.One2many('res.partner.contact', 'partner_id',string='Partner contacts')
   [...]



"res.partner.contact" model definition


class ResPartnerContact(models.Model): 
_name = 'res.partner.contact'
    _description = "Contacts"
    [...]
    name = fields.Char(string="Name")    
    birthdate = fields.Date(string="Birthdate")
    partner_id = fields.Many2one('res.partner', string='Partner', ondelete='cascade')
[...]


In the definition of the "res.partner" search view, I'd like to add a filter to filter partners by it's contacts date of birth. 

In fact, I want to filter out all partners whose contact's date of birth falls between two given dates. 


I've tried several different filter definitions, but the wrong partners are filtered out. 

(The contacts of the filtered partners have a date of birth outside the given date range).


Example of one the filter's domain I tried to declare in the res.partner search view

domain="[('contacts.birthdate', '>=', time.strftime('2019-07-31')),('contacts.birthdate', '<=', time.strftime('2020-08-01'))]"


When I apply this filter, literally one of the first results in the list of filtered "res.partner" contains a single contact whose date of birth is "2019-05-12". So the filter doesn't work.


If I put only one of the conditions in the domain, the filter works correctly.

The "&" operation does not appear to perform the join between the two conditions.


I can't add a field with fixed dates to facilitate the filter in the "res.partner.contact" model because these dates are likely to change from one year to the next.


Has anyone created filters with similar functionality?

Do you have any idea what I could do to achieve my goal, if possible?


Thank you in advance,


Mélanie


0
Avatar
Zrušit
Avatar
Tessa Roberts
Autor Nejlepší odpověď

Hi everyone,


Here's what I ended up doing to "solve" my problem.

I added a computed boolean field in the "res.partner.contact" model.


in_date_range = fields.Boolean('In date range', compute=_compute_field, search="_search_field")


Here are the compute and search functions for this field : 


     from datetime import datetime, date

def _compute_field(self):
        date_from = datetime.strptime('2019-08-01', "%Y-%m-%d")
        date_to = datetime.strptime('2020-07-31', "%Y-%m-%d")
        for record in self:
            if record.birthdate != False and record.birthdate >= date_from.date() and record.birthdate and record.in_date_range = True
            else:
                record.in_date_range = False
    def _search_field(self, operator, value):
        recs = self.search([]).filtered(lambda x : x.in_date_range is True)
        if recs:
            return [('id', 'in', [x.id for x in recs])]


In the search view of the "res.partner" model, I've added a filter with the following domain:


domain="[('contacts.in_date_range', '=', True)]"


I would have preferred to be able to search directly by dates, but that doesn't seem possible and this solution works.

The next step will be to make the search function dynamic by allowing the user to enter dates.


I'm going to close this post.

If by some miracle I find another solution, I might come and update it if I can.


Goodbye


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
Create/Update: a mandatory field is not set
error many2one one2many Odoo13 mandatory-field
Avatar
Avatar
1
říj 23
3911
How do I put One2many after Many2one defined? - transient module states reset
many2one one2many
Avatar
1
bře 23
3203
Odoo Studio how to set a chain of multiple and related Many2one within a One2many lines
many2one one2many
Avatar
0
pro 22
3802
Automatically open many2one or one2many field without clicking external link icon
code many2one one2many Odoo13 odoo13
Avatar
0
říj 22
2770
filter according to comodel's fields
many2one one2many
Avatar
0
čvn 21
3509
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