Ir al contenido
Odoo Menú
  • Iniciar sesión
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • PdV para tiendas
    • PdV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en vivo
    • eLearning
    Cadena de suministro
    • Inventario
    • Manufactura
    • PLM
    • Compras
    • Mantenimiento
    • Calidad
    Recursos humanos
    • Empleados
    • Reclutamiento
    • Vacaciones
    • Evaluaciones
    • Referencias
    • Flotilla
    Marketing
    • Redes sociales
    • Marketing por correo
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyectos
    • Registro de horas
    • Servicio externo
    • Soporte al cliente
    • Planeación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Artículos
    • WhatsApp
    Aplicaciones externas Studio de Odoo Plataforma de Odoo en la nube
  • Industrias
    Venta minorista
    • Librería
    • Tienda de ropa
    • Mueblería
    • Tienda de abarrotes
    • Ferretería
    • Juguetería
    Alimentos y hospitalidad
    • Bar y pub
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidora de bebidas
    • Hotel
    Bienes inmuebles
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión de bienes inmuebles
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Firma contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Manufactura
    • Textil
    • Metal
    • Muebles
    • Comida
    • Cervecería
    • Regalos corporativos
    Salud y ejercicio
    • Club deportivo
    • Óptica
    • Gimnasio
    • Especialistas en bienestar
    • Farmacia
    • Peluquería
    Trades
    • Personal de mantenimiento
    • Hardware y soporte de TI
    • Sistemas de energía solar
    • Zapateros y fabricantes de calzado
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin fines de lucro
    • Agencia para la protección del medio ambiente
    • Alquiler de anuncios publicitarios
    • Fotografía
    • Alquiler de bicicletas
    • Distribuidor de software
    Descubre todas las industrias
  • Odoo Community
    Aprende
    • Tutoriales
    • Documentación
    • Certificaciones
    • Capacitación
    • Blog
    • Podcast
    Fortalece la educación
    • Programa educativo
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtén el software
    • Descargar
    • Compara ediciones
    • Versiones
    Colabora
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Conviértete en partner
    • Servicios para partners
    • Registra tu firma contable
    Obtén servicios
    • Encuentra un partner
    • Encuentra un contador
    • Contacta a un consultor
    • Servicios de implementación
    • Referencias de clientes
    • Soporte
    • Actualizaciones
    GitHub YouTube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicita una demostración
  • Precios
  • Ayuda

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

  • CRM
  • e-Commerce
  • Contabilidad
  • Inventario
  • PoS
  • Proyectos
  • MRP
All apps
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Debe estar registrado para interactuar con la comunidad.
Todas las publicaciones Personas Insignias
Etiquetas (Ver todo)
odoo accounting v14 pos v15
Acerca de este foro
Ayuda

Erreur client Odoo

Suscribirse

Reciba una notificación cuando haya actividad en esta publicación

Se marcó esta pregunta
1 Responder
447 Vistas
Avatar
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
Avatar
Descartar
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

Avatar
D Enterprise
Mejor respuesta

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
Avatar
Descartar
¿Le interesa esta conversación? ¡Participe en ella!

Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.

Registrarse
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento en Odoo.sh
  • Soporte
  • Actualizaciones del software
  • Desarrollos personalizados
  • Educación
  • Encuentra un contador
  • Encuentra un partner
  • Conviértete en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contáctanos
  • Empleos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidad
  • Seguridad
الْعَرَبيّة 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 es un conjunto de aplicaciones de código abierto que cubren todas las necesidades de tu empresa: CRM, comercio electrónico, contabilidad, inventario, punto de venta, gestión de proyectos, etc.

La propuesta única de valor de Odoo es ser muy fácil de usar y estar totalmente integrado.

Sitio web hecho con

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