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

Erreur client Odoo

Abonare

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

Această întrebare a fost marcată
1 Răspunde
453 Vizualizări
Imagine profil
Rachid

I'm getting this error when i click an action button to print a report


Erreur client Odoo

UncaughtPromiseError > TypeError

Uncaught Promise > Cannot read properties of undefined (reading 'context')

Occured on 147.93.95.212:8069 on 2025-06-24 14:39:01 GMT

TypeError: Cannot read properties of undefined (reading 'context')
    at http://147.93.95.212:8069/web/assets/c7681b7/web.assets_web.min.js:27526:161
    at _executeReportAction (http://147.93.95.212:8069/web/assets/c7681b7/web.assets_web.min.js:9917:175)
    at doAction (http://147.93.95.212:8069/web/assets/c7681b7/web.assets_web.min.js:9930:328)
    at async Object.doActionButton (http://147.93.95.212:8069/web/assets/c7681b7/web.assets_web.min.js:9940:249)
    at async execute (http://147.93.95.212:8069/web/assets/c7681b7/web.assets_web.min.js:9547:266)
    at async executeButtonCallback (http://147.93.95.212:8069/web/assets/c7681b7/web.assets_web.min.js:9540:34)

0
Imagine profil
Abandonează
Rachid
Autor

The problem is that the module works perfectly in local, but on the server it throws this error every time i click the print button

D Enterprise

Step 1: Confirm the Report Exists on the Server
Run this in Odoo shell on the server:
./odoo-bin shell -d your_db_name

Then:
self.env.ref('your_module.report_template_id')

If this raises an error, then the report is not loaded on the server. Make sure the XML file where it’s defined is listed in your __manifest__.py under "data": [...].

Step 2: Fully Upgrade the Module on the Server

./odoo-bin -d your_db_name -u your_module_name

Step 3: Clear Frontend Assets (JS/XML Cache)

Odoo stores static files in bundles. Run:

./odoo-bin -d your_db_name --assets

Or delete all minified assets manually:

rm -rf /your/odoo/path/.local/share/Odoo/filestore/your_db_name/*web.assets*

then restart your odoo server

i hope it is usefull

Imagine profil
D Enterprise
Cel mai bun răspuns

Hii,

i dont know your code but  here is some step please check in your code in your custom module if you create


Step 1: Make sure the report action is called correctly in Python

In your button method, return the report like this:

def action_print_report(self):

    self.ensure_one()  # makes sure you're on one record

    return self.env.ref('your_module.report_template_id').report_action(self)


Step 2: Check that the report is defined properly in XML

In your XML file (your_module/views/report.xml), make sure the report is defined like this:

<report

    id="report_template_id"

    model="your.model"

    string="My Report"

    report_type="qweb-pdf"

    name="your_module.report_template"

    file="your_module.report_template"

/>

If you're using a custom JS button, you must pass context manually.

If the issue remains, try updating the module and clearing your browser cache

i hope it is use full

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
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