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

[SOLVED] How to do a 'where' in self.env[].search() ?

Abonare

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

Această întrebare a fost marcată
envsearch()
2 Răspunsuri
28692 Vizualizări
Imagine profil
Quentin Villanova

Hi !

I'm new to Odoo 13 and Python so everything is a bit confusing at the moment.

My problem is that I need to do a request like "SELECT ... FROM ... WHERE ...", but I don't understand how I should do it here.

I have the first part which looks like that "self.env['my.table'].search([('the_this_i_want')])".

I would like to add something like "self.env['my.table'].search([('the_thing_i_want')]).where([('id','=',self.id)])".

Thanks.


0
Imagine profil
Abandonează
Imagine profil
Răzvan Anastasescu
Cel mai bun răspuns

What you put in search parameter (called domain) it's your where criteria.

You really should read the ORM documentation about domain search

The domain it's written in Polish Notation system, because you can normalize (stringify) the search string (useful from client-side) - more in this post.

For your example:

self.env['my.model'].search([('id', '=', self.id)])

The same (searching by id or a list of ids) can also be done using special browse method like this

self.env['my.model'].browse(self.id)
self.env['my.model'].browse([1, 2, 3])

You have to be careful because browse doesn't check if the record really exists in the DataBase, if you want to be sure it exists, you can use exists() method after it, like this:

self.env['my.model'].browse([1, 2, 3]).exists()

By default, if you write multiple conditions, they are treated as AND

self.env['my.model'].search([('my_field', '=', 'value'), ('my_other_field', '!=', False)])

To build more complex searches, you really have to check documentation, understand how to write complex domains using RPN (with ORs and ANDs) and look in Odoo code for more examples

3
Imagine profil
Abandonează
Ray Carnes (ray)

Great answer! I updated it to add a link to a post explaining Polish Notation as it applies to Odoo domains.

Imagine profil
Quentin Villanova
Autor Cel mai bun răspuns

Hi, thanks a lot for your reply.

Ok so it gives me some ligth on my problem. So I put my criteria in "search()", but if I do that it returns me an id, but it's not the thing I want.

I should give you a more precise example.

I want a date stored in my DB, in a table called 'ticket'. But it want this date depends on a specifique id.

So I should do something like : "self.env['ticket'].search([('id','=',self.id)])"

But where do I say that I want the "date" and not the id ?

In SQL it would looks like : "SELECT date FROM ticket WHERE id = self.id.

Thanks a lot for your help.

1
Imagine profil
Abandonează
Marcos Oitabén

It returns a ticket object, not only the id. (But if you try to print it, you will only get the id printed)
ticket = self.env['ticket'].search([('id','=',self.id)])
ticket.name_of_field
eg: ticket.name, ticket.date, ticket.id

Quentin Villanova
Autor

I didn't know that ! OMG tanks a lot, you save me precious time !

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 do I set environment variables when Odoo Upgrade fails?
upgrading env
Imagine profil
2
sept. 24
44
Multicompany Issue
multicompany env
Imagine profil
Imagine profil
Imagine profil
2
aug. 24
1953
Object has no attribute 'env' error when trying to use self.env. I want to run code on module install (via init). What's the best approach? Rezolvat
init env
Imagine profil
Imagine profil
Imagine profil
6
aug. 18
21050
I want to create new self.env.<something>
env v15 v17
Imagine profil
0
dec. 23
17
How to trigger onchange when creating records through server in V13 Rezolvat
onchange env v13
Imagine profil
1
apr. 24
8006
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