Skip ke Konten
Odoo Menu
  • Login
  • Uji coba gratis
  • Aplikasi
    Keuangan
    • Akuntansi
    • Faktur
    • Pengeluaran
    • Spreadsheet (BI)
    • Dokumen
    • Tanda Tangan
    Sales
    • CRM
    • Sales
    • POS Toko
    • POS Restoran
    • Langganan
    • Rental
    Website
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Rantai Pasokan
    • Inventaris
    • Manufaktur
    • PLM
    • Purchase
    • Maintenance
    • Kualitas
    Sumber Daya Manusia
    • Karyawan
    • Rekrutmen
    • Cuti
    • Appraisal
    • Referensi
    • Armada
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Acara
    • Otomatisasi Marketing
    • Survei
    Layanan
    • Project
    • Timesheet
    • Layanan Lapangan
    • Meja Bantuan
    • Planning
    • Appointment
    Produktivitas
    • Diskusi
    • Approval
    • IoT
    • VoIP
    • Pengetahuan
    • WhatsApp
    Aplikasi pihak ketiga Odoo Studio Platform Odoo Cloud
  • Industri-Industri
    Retail
    • Toko Buku
    • Toko Baju
    • Toko Furnitur
    • Toko Kelontong
    • Toko Hardware
    • Toko Mainan
    Makanan & Hospitality
    • Bar dan Pub
    • Restoran
    • Fast Food
    • Rumah Tamu
    • Distributor Minuman
    • Hotel
    Real Estate
    • Agensi Real Estate
    • Firma Arsitektur
    • Konstruksi
    • Estate Management
    • Perkebunan
    • Asosiasi Pemilik Properti
    Konsultansi
    • Firma Akuntansi
    • Mitra Odoo
    • Agensi Marketing
    • Firma huku
    • Talent Acquisition
    • Audit & Sertifikasi
    Manufaktur
    • Tekstil
    • Logam
    • Perabotan
    • Makanan
    • Brewery
    • Corporate Gift
    Kesehatan & Fitness
    • Sports Club
    • Toko Kacamata
    • Fitness Center
    • Wellness Practitioners
    • Farmasi
    • Salon Rambut
    Perdagangan
    • Handyman
    • IT Hardware & Support
    • Sistem-Sistem Energi Surya
    • Pembuat Sepatu
    • Cleaning Service
    • Layanan HVAC
    Lainnya
    • Organisasi Nirlaba
    • Agen Lingkungan
    • Rental Billboard
    • Fotografi
    • Penyewaan Sepeda
    • Reseller Software
    Browse semua Industri
  • Komunitas
    Belajar
    • Tutorial-tutorial
    • Dokumentasi
    • Sertifikasi
    • Pelatihan
    • Blog
    • Podcast
    Empower Education
    • Program Edukasi
    • Game Bisnis 'Scale Up!'
    • Kunjungi Odoo
    Dapatkan Softwarenya
    • Download
    • Bandingkan Edisi
    • Daftar Rilis
    Kolaborasi
    • Github
    • Forum
    • Acara
    • Terjemahan
    • Menjadi Partner
    • Layanan untuk Partner
    • Daftarkan perusahaan Akuntansi Anda.
    Dapatkan Layanan
    • Temukan Mitra
    • Temukan Akuntan
    • Temui penasihat
    • Layanan Implementasi
    • Referensi Pelanggan
    • Bantuan
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dapatkan demo
  • Harga
  • Bantuan

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

  • CRM
  • e-Commerce
  • Akuntansi
  • Inventaris
  • PoS
  • Project
  • MRP
All apps
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Anda harus terdaftar untuk dapat berinteraksi di komunitas.
Semua Post Orang Lencana-Lencana
Label (Lihat semua)
odoo accounting v14 pos v15
Mengenai forum ini
Help

Dynamic template call/embeding

Langganan

Dapatkan notifikasi saat terdapat aktivitas pada post ini

Pertanyaan ini telah diberikan tanda
qwebtemplatesreportrenderrender_template
1 Balas
9878 Tampilan
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
Buang
Avatar
salah BELHAMICHE
Jawaban Terbai

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

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

0
Avatar
Buang
Maxime MARAIS
Penulis

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

Menikmati diskusi? Jangan hanya membaca, ikuti!

Buat akun sekarang untuk menikmati fitur eksklufi dan agar terlibat dengan komunitas kami!

Daftar
Post Terkait Replies Tampilan Aktivitas
QWeb format text and field in same line Diselesaikan
qweb templates report odooV8
Avatar
Avatar
1
Des 23
19878
Error in creating a custom paperformat Diselesaikan
qweb templates report paperformat
Avatar
Avatar
1
Agu 17
7601
Insert a pdf file/page into the qweb report view template
pdf view qweb templates report
Avatar
Avatar
Avatar
3
Apr 25
3344
Template Render Error Diselesaikan
error templates render render_template templatefallback
Avatar
1
Agu 24
2706
How to set a page in landscape orientation in a portrait report template? (Odoo 16)
qweb templates report landscape odoo16
Avatar
Avatar
Avatar
2
Mei 24
3771
Komunitas
  • Tutorial-tutorial
  • Dokumentasi
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Terjemahan
Layanan
  • Odoo.sh Hosting
  • Bantuan
  • Peningkatan
  • Custom Development
  • Pendidikan
  • Temukan Akuntan
  • Temukan Mitra
  • Menjadi Partner
Tentang Kami
  • Perusahaan kami
  • Aset Merek
  • Hubungi kami
  • Tugas
  • Acara
  • Podcast
  • Blog
  • Pelanggan
  • Hukum • Privasi
  • Keamanan
الْعَرَبيّة 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 adalah rangkaian aplikasi bisnis open source yang mencakup semua kebutuhan perusahaan Anda: CRM, eCommerce, akuntansi, inventaris, point of sale, manajemen project, dan seterusnya.

Mudah digunakan dan terintegrasi penuh pada saat yang sama adalah value proposition unik Odoo.

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