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

Render excel file from Website/portal

Suscribirse

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

Se marcó esta pregunta
portalexcelxlsxxlsxls_reports
1 Responder
8311 Vistas
Avatar
Khalid

How to call/request from Odoo website portal to genetate excel file report.

I'm using "report_xlsx" for the excel file report.

For PDF reports it works perfectly something like that:

pdf = request.env['report'].sudo().get_pdf(cases, 'module.report_name', data=datas)

pdfhttpheaders = [

('Content-Type', 'application/pdf'), ('Content-Length', len(pdf)),

('Content-Disposition', 'attachment; filename=Report.pdf;')

]

return request.make_response(pdf, headers=pdfhttpheaders)


For excel I tried the following:

xlsx = {'type': 'ir.actions.report.xml',

'report_name': 'module.report_name.xlsx',

'datas': datas,

'name': 'Report Name'

}

  xlsxhttpheaders = [

 ('Content-Type', 'application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'), ('Content-Length', len(xlsx)),

 ('Content-Disposition', 'attachment; filename=Report.xlsx;')

return request.make_response( xlsx , headers= xlsxhttpheaders )

But it does not work.....

Any tips ?

1
Avatar
Descartar
Cybrosys Techno Solutions Pvt.Ltd

Hi
You can refer to the blog: https://www.cybrosys.com/blog/generate-xlsx-report-using-controller-odoo-14

Hope it helps

Avatar
Piotr Cierkosz
Mejor respuesta

Well, I guess the simplest way would be to use an existing module for that. Please check the app store:

https://apps.odoo.com/apps/modules/11.0/report_xlsx/

0
Avatar
Descartar
Khalid
Autor

Maybe I did not explain my issue clearly.

I'm already using report_xlsx and my report is working fine within the normal interface.

My issue is how to call the same report from the website portal. I can't seem to make it work.

Piotr Cierkosz

You mean from the front-end /customer portal? What is the error?

Khalid
Autor

Yes, on the front-end customer portal.

The error:

2018-04-23 17:24:51,306 72725 INFO db1 werkzeug: 192.168.20.1 - - [23/Apr/2018 17:24:51] "POST /my/km_reports HTTP/1.1" 500 -

2018-04-23 17:24:51,312 72725 ERROR db1 werkzeug: Error on request:

Traceback (most recent call last):

File "/usr/lib/python2.7/dist-packages/werkzeug/serving.py", line 180, in run_wsgi

execute(self.server.app)

File "/usr/lib/python2.7/dist-packages/werkzeug/serving.py", line 168, in execute

application_iter = app(environ, start_response)

File "/opt/odoo/odoo-10_07_23_017/odoo/service/server.py", line 250, in app

return self.app(e, s)

File "/opt/odoo/odoo-10_07_23_017/odoo/service/wsgi_server.py", line 184, in application

return application_unproxied(environ, start_response)

File "/opt/odoo/odoo-10_07_23_017/odoo/service/wsgi_server.py", line 170, in application_unproxied

result = handler(environ, start_response)

File "/opt/odoo/odoo-10_07_23_017/odoo/http.py", line 1308, in __call__

return self.dispatch(environ, start_response)

File "/opt/odoo/odoo-10_07_23_017/odoo/http.py", line 1282, in __call__

return self.app(environ, start_wrapped)

File "/usr/lib/python2.7/dist-packages/werkzeug/wsgi.py", line 591, in __call__

return self.app(environ, start_response)

File "/opt/odoo/odoo-10_07_23_017/odoo/http.py", line 1486, in dispatch

return response(environ, start_response)

File "/usr/lib/python2.7/dist-packages/werkzeug/wrappers.py", line 1220, in __call__

app_iter, status, headers = self.get_wsgi_response(environ)

File "/usr/lib/python2.7/dist-packages/werkzeug/wrappers.py", line 1210, in get_wsgi_response

return app_iter, self.status, headers.to_wsgi_list()

File "/usr/lib/python2.7/dist-packages/werkzeug/datastructures.py", line 1194, in to_wsgi_list

return [(to_native(k), v.encode('latin1')) for k, v in self]

AttributeError: 'int' object has no attribute 'encode'

¿Le interesa esta conversación? ¡Participe en ella!

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

Registrarse
Publicaciones relacionadas Respuestas Vistas Actividad
how to create xls report for the sale.order?
customization sale.order xlsx xls xls_reports
Avatar
Avatar
Avatar
2
jun 23
9454
Odoo 9 CE to Odoo 14 CE xls reports migration
xlsx xls xls_reports Odoo9 v14
Avatar
0
mar 21
3186
How to use report_xls module in Odoo ?
xls xls_reports
Avatar
0
nov 17
3972
CacheMiss: 'mrp.bom.line(459,).product_tmpl_id' Resuelto
xlsx xls_reports odoo16 Odoo16
Avatar
Avatar
1
feb 25
1538
odoo 16 enterprise, export custom report xlsx format. Resuelto
enterprise excel studio xlsx
Avatar
Avatar
Avatar
2
ene 24
4514
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.

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