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

Context in python code with multiple partner_ids

Abonare

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

Această întrebare a fost marcată
buttonscontextodooV8
6681 Vizualizări
Imagine profil
Johan Vergeer

I am creating a smart button that has to display the number of contracts that a customer has.

For this I have used context but when I debug I notice that it runs the code for multiple partners, first for the actual partner_id, then for the administrator and next for the own company.

This is the xml code I have used:

 <button class="oe_inline oe_stat_button" type="action"
  icon="fa-star"
context="{'partner_id': active_id}"
name="%(action_res_partner_contracts)d">
<div><strong>Contractant</strong><br/>
<field name="contractant_count" context="{'partner_id':active_id}"/></div>
</button>

And this is the python code for taking the contract count:

 contractant_count = fields.Integer("Contracts Count", compute="_contracts_count") 

First I tried to work with context to check if the current partner_id is the active_id.
While debugging I notice that it does get the right amount for the contracts, but when it goes to the own company or the admin partner_id (which both have 0 contracts), contract_count goes back to 0

@api.one
def _contracts_count(self):
    if self.id == self.env.context.get("active_id", False):
    res = len(self.contractanten.ids)
    return res

After that I just wanted to check if the contacts count is 0, when the amount is greater then 0, return the amount of contacts.

 @api.one 
def _contracts_count(self):
    if len(self.contractanten.ids) > 0:
    res = len(self.contractanten.ids)
    return res

This also does not seem to work.

Could someone help me figure this out?

Thanks,

Johan    

===================================UPDATE====================================

Someone told me I shouldn't use context. Instead I have used this code.


contracts_count = fields.Integer("Contracts Count", compute="_contracts_count")

@api.one
    def _contracts_count(self)
    res = int(self.env["res.partner.contractanten"].search_count([("partner_id.id", "=", self.id)]))
   return res

This should work better but I still do not get the desired result.

I will keep posting updates.


0
Imagine profil
Abandonează
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 update field value on button click using odoo v8 . Rezolvat
buttons odooV8
Imagine profil
Imagine profil
1
mar. 15
8962
How to add a button at the top of the sales order detail?
buttons sales.order odooV8
Imagine profil
Imagine profil
Imagine profil
Imagine profil
3
dec. 22
6347
NotImplementedError: '__setitem__' not supported on frozendict Rezolvat
error context odooV8
Imagine profil
Imagine profil
Imagine profil
Imagine profil
9
iul. 25
18842
Get product price with particular context in Odoo 8
currency context odooV8
Imagine profil
0
apr. 20
3217
Context lost in button action
action buttons context v11.0
Imagine profil
Imagine profil
1
iun. 24
4426
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