Ir al contenido
Odoo Menú
  • Identificarse
  • Pruébalo gratis
  • Aplicaciones
    Finanzas
    • Contabilidad
    • Facturación
    • Gastos
    • Hoja de cálculo (BI)
    • Documentos
    • Firma electrónica
    Ventas
    • CRM
    • Ventas
    • TPV para tiendas
    • TPV para restaurantes
    • Suscripciones
    • Alquiler
    Sitios web
    • Creador de sitios web
    • Comercio electrónico
    • Blog
    • Foro
    • Chat en directo
    • eLearning
    Cadena de suministro
    • Inventario
    • Fabricación
    • PLM
    • Compra
    • Mantenimiento
    • Calidad
    Recursos Humanos
    • Empleados
    • Reclutamiento
    • Ausencias
    • Evaluación
    • Referencias
    • Flota
    Marketing
    • Marketing social
    • Marketing por correo electrónico
    • Marketing por SMS
    • Eventos
    • Automatización de marketing
    • Encuestas
    Servicios
    • Proyecto
    • Partes de horas
    • Servicio de campo
    • Servicio de asistencia
    • Planificación
    • Citas
    Productividad
    • Conversaciones
    • Aprobaciones
    • IoT
    • VoIP
    • Información
    • WhatsApp
    Aplicaciones de terceros Studio de Odoo Plataforma de Odoo Cloud
  • Industrias
    Comercio al por menor
    • Librería
    • Tienda de ropa
    • Tienda de muebles
    • Tienda de ultramarinos
    • Ferretería
    • Juguetería
    Alimentación y hostelería
    • Bar y taberna
    • Restaurante
    • Comida rápida
    • Casa de huéspedes
    • Distribuidor de bebidas
    • Hotel
    Inmueble
    • Agencia inmobiliaria
    • Estudio de arquitectura
    • Construcción
    • Gestión inmobiliaria
    • Jardinería
    • Asociación de propietarios
    Consultoría
    • Empresa contable
    • Partner de Odoo
    • Agencia de marketing
    • Bufete de abogados
    • Adquisición de talentos
    • Auditorías y certificaciones
    Fabricación
    • Textil
    • Metal
    • Muebles
    • Alimentos
    • Brewery
    • Regalos de empresas
    Salud y bienestar
    • Club deportivo
    • Óptica
    • Gimnasio
    • Terapeutas
    • Farmacia
    • Peluquería
    Oficios
    • Handyman
    • Hardware y asistencia informática
    • Sistemas de energía solar
    • Zapatero
    • Servicios de limpieza
    • Servicios de calefacción, ventilación y aire acondicionado
    Otros
    • Organización sin ánimo de lucro
    • Agencia de protección del medio ambiente
    • Alquiler de paneles publicitarios
    • Estudio fotográfico
    • Alquiler de bicicletas
    • Distribuidor de software
    Browse all Industries
  • Comunidad
    Aprender
    • Tutoriales
    • Documentación
    • Certificaciones
    • Formación
    • Blog
    • Podcast
    Potenciar la educación
    • Programa de formación
    • Scale Up! El juego empresarial
    • Visita Odoo
    Obtener el software
    • Descargar
    • Comparar ediciones
    • Versiones
    Colaborar
    • GitHub
    • Foro
    • Eventos
    • Traducciones
    • Convertirse en partner
    • Services for Partners
    • Registrar tu empresa contable
    Obtener servicios
    • Encontrar un partner
    • Encontrar un asesor fiscal
    • Contacta con un experto
    • Servicios de implementación
    • Referencias de clientes
    • Ayuda
    • Actualizaciones
    GitHub YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Solicitar 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
  • Proyecto
  • 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

Dynamic template call/embeding

Suscribirse

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

Se marcó esta pregunta
qwebtemplatesreportrenderrender_template
1 Responder
9854 Vistas
Avatar
Maxime MARAIS

Hi all,

I'm creating a module in order to print a invoice based on a template chosen dynamically and configured in the partner's information. Adding a field on partner model to define a template to use is achieved and works well. 

Now, I'm trying to connect both. The concept is to add a new template inheriting account.report_invoice_document with a low priority and, within this template, to call/embed a dynamically defined template by replacing all its <div class="page">.

This template could be something like the following (these examples do not work and cause an Internal Server Error when trying to print the invoice)

<odoo>
    <template id="custom_invoice_dynamic" inherit_id="account.report_invoice_document" priority="999">
        <xpath expr="//div[@class='page']" position="replace">
            <div class="page">
                <t t-call="get_template()"></t>
            </div>
        </xpath>
    </template>
</odoo>

or

<odoo>
    <template id="custom_invoice_dynamic" inherit_id="account.report_invoice_document" priority="999">
        <xpath expr="//div[@class='page']" position="replace">
            <div class="page">
                <t t-raw="get_template()"></t>
            </div>
        </xpath>
    </template>
</odoo>

With <t t-call="get_template()">, it fails, QWeb engine trying to find a template named "get_template()".

It seems I may have more luck with <t t-raw="get_template()"> as expressions enclosed into t-raw are interpreted.

I tried to define get_template in an AbstractModel, but this fails:

QWebException: 'NoneType' object is not callable Traceback (most recent call last):
  File "/usr/lib/python2.7/dist-packages/odoo/addons/base/ir/ir_qweb/qweb.py", line 315, in _compiled_fn
    return compiled(self, append, values, options, log)
  File "<template>", line 1, in template_account_report_invoice_document_1365
  File "<template>", line 3, in body_call_content_1364 TypeError: 'NoneType' object is not callable
Error to render compiling AST TypeError: 'NoneType' object is not callable Template: account.report_invoice_document Path: /templates/t/t/div/t Node: <t t-raw="get_template()"/>

The thing is I'm not very at ease with Odoo programming. I tried to understand the "Custom Reports" section in https://www.odoo.com/documentation/10.0/reference/reports.html but this documentation is not really clear to me. I miss something, for sure.

File : custom_invoice_report.py (imported through __init__.py)

from odoo import models, fields, api

class CustomInvoiceReport(models.AbstractModel):
    _name = "report.custom_invoice.custom_invoice_dynamic"
    _template = "custom_invoice.custom_invoice_dynamic"
    def get_template(self):
        # TEMPORARY RETURNS CONSTANT FOR DEVELOPMENT PURPOSE
        return 'custom_invoice.test'
    @api.multi
    def render_html(self, docids, data=None):
        report_obj = self.env['report']
        report = report_obj._get_report_from_name(self._template)
        docargs = {
            'get_template': self.get_template,
            'doc_ids': self._ids,
            'doc_model': report.model,
            'docs': self,
        }
        return report_obj.render(self._template, docargs)

Could someone help me, please? 

Thanks.

1
Avatar
Descartar
Avatar
salah BELHAMICHE
Mejor respuesta

There is an issue about that in v10 , check the following link: 

\https://github.com/odoo/odoo/issues/16641

0
Avatar
Descartar
Maxime MARAIS
Autor

Woh... Thanks for pointing this ! Do you know about a turn-around?

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

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

Inscribirse
Publicaciones relacionadas Respuestas Vistas Actividad
QWeb format text and field in same line Resuelto
qweb templates report odooV8
Avatar
Avatar
1
dic 23
19854
Error in creating a custom paperformat Resuelto
qweb templates report paperformat
Avatar
Avatar
1
ago 17
7561
Insert a pdf file/page into the qweb report view template
pdf view qweb templates report
Avatar
Avatar
Avatar
3
abr 25
3297
Template Render Error Resuelto
error templates render render_template templatefallback
Avatar
1
ago 24
2667
How to set a page in landscape orientation in a portrait report template? (Odoo 16)
qweb templates report landscape odoo16
Avatar
Avatar
Avatar
2
may 24
3737
Comunidad
  • Tutoriales
  • Documentación
  • Foro
Código abierto
  • Descargar
  • GitHub
  • Runbot
  • Traducciones
Servicios
  • Alojamiento Odoo.sh
  • Ayuda
  • Actualizar
  • Desarrollos personalizados
  • Educación
  • Encontrar un asesor fiscal
  • Encontrar un partner
  • Convertirse en partner
Sobre nosotros
  • Nuestra empresa
  • Activos de marca
  • Contacta con nosotros
  • Puestos de trabajo
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Información 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 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