Přejít na obsah
Odoo Menu
  • Přihlásit se
  • Vyzkoušejte zdarma
  • Aplikace
    Finance
    • Účetnictví
    • Fakturace
    • Výdaje
    • Spreadsheet (BI)
    • Dokumenty
    • Podpisy
    Prodej
    • CRM
    • Prodej
    • POS Obchod
    • POS Restaurace
    • Předplatné
    • Pronájem
    Webové stránky
    • Webové stránky
    • E-shop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Dodavatelský řetězec
    • Sklad
    • Výroba
    • PLM
    • Nákup
    • Údržba
    • Kvalita
    Lidské zdroje
    • Zaměstnanci
    • Nábor
    • Volno
    • Hodnocení zaměstnanců
    • Doporučení
    • Vozový park
    Marketing
    • Marketing sociálních sítí
    • Emailový marketing
    • SMS Marketing
    • Události
    • Marketingová automatizace
    • Dotazníky
    Služby
    • Projekt
    • Časové výkazy
    • Práce v terénu
    • Helpdesk
    • Plánování
    • Schůzky
    Produktivita
    • Diskuze
    • Schvalování
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Aplikace třetích stran Odoo Studio Odoo cloudová platforma
  • Branže
    Maloobchod
    • Knihkupectví
    • Obchod s oblečením
    • Obchod s nábytkem
    • Potraviny
    • Obchod s hardwarem
    • Hračkářství
    Jídlo a pohostinství
    • Bar a Pub
    • Restaurace
    • Fast Food
    • Penzion
    • Distributor nápojů
    • Hotel
    Nemovitost
    • Realitní kancelář
    • Architektonická firma
    • Stavba
    • Správa nemovitostí
    • Zahradnictví
    • Asociace vlastníků nemovitosti
    Poradenství
    • Účetní firma
    • Odoo Partner
    • Marketingová agentura
    • Právník
    • Akvizice talentů
    • Audit a certifikace
    Výroba
    • Textil
    • Kov
    • Nábytek
    • Jídlo
    • Pivovar
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • Podpora IT & hardware
    • Systémy solární energie
    • Výrobce obuvi
    • Úklidové služby
    • Služby HVAC
    Ostatní
    • Nezisková organizace
    • Agentura pro životní prostředí
    • Pronájem billboardů
    • Fotografování
    • Leasing jízdních kol
    • Prodejce softwaru
    Procházet všechna odvětví
  • Komunita
    Edukační program
    • Tutoriály
    • Dokumentace
    • Certifikace
    • Vzdělávání
    • Blog
    • Podcast
    Podpora vzdělávání
    • Vzdělávací program
    • Scale Up! Hra na firmu
    • Navštivte Odoo
    Získat software
    • Stáhnout
    • Porovnejte edice
    • Verze
    Spolupráce
    • Github
    • Fórum
    • Události
    • Překlady
    • Stát se partnerem
    • Služby pro partnery
    • Registrujte svou účetní firmu
    Získat služby
    • Najít partnera
    • Najít účetní
    • Setkejte se s poradcem
    • Implementační služby
    • Zákaznické reference
    • Podpora
    • Upgrady
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Dohodnout demo
  • Ceník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účetnictví
  • Sklad
  • PoS
  • Projekty
  • MRP
All apps
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
You need to be registered to interact with the community.
All Posts Lidé Odznaky
Štítky (View all)
odoo accounting v14 pos v15
O tomto fóru
Pomoc

How to properly print and translate custom reports ?

Odebírat

Get notified when there's activity on this post

This question has been flagged
2 Odpovědi
8302 Zobrazení
Avatar
PY

Hi !

I've built a module which try to override the invoice report (pdf), to add some more fields to it.

However, sometimes, the file from the account module is used instead of my own file. That happens when I use the print button on the invoice (the red one when invoice is not printed yet). In this cases, the translation work properly, but this is not the file my module provides, so its wrong.

Now, when I use other print buttons, like the one in the "print" dropdown menu, or a custom print button, the pdf generated comes from my module, which is good, but not translated, which is bad, since I included the whole i18n folder in my custom module.

Now, I will show my code.

module/report/account_print_invoice.xml :

    <?xml version="1.0" encoding="utf-8"?>
    <openerp>
        <data>
            <record id="account.account_invoices" model="ir.actions.report.xml">
                <field name="auto" eval="False"/>
                <field name="model">account.invoice</field>
                <field name="report_name">custom.account.invoice</field>
                <field name="name">Invoices</field>
                <field name="report_rml">account_payment_method/report/account_print_invoice.rml</field>
                <field name="attachment">"(object.state in ('open','paid')) and ('INV'+(object.number or '').replace('/','')+'.pdf')"</field>
                <field name="attachment_use" eval="False"/>
                <field name="usage">default</field>
            </record>
            <record id="invoice_form_test_custom" model="ir.ui.view">
                <field name="name">account.invoice.form.test.custom</field>
                <field name="model">account.invoice</field>
                <field name="inherit_id" ref="account.invoice_form"/>
                <field name="arch" type="xml">
                    <header>
                        <button name="custom_invoice_print" string="Print Invoice Custom" type="object"/>
                    </header>
                </field>
            </record>
        </data>
    </openerp>

module/account_invoice.py :

    class account_invoice(osv.osv):
        _inherit = "account.invoice"
        
        def _voucher_ids(self, cr, uid, ids, name, args, context=None):
            result = {}
            for record in self.browse(cr, uid, ids, context=context):
                result[record.id] = []
                for line in record.move_lines:
                    result[record.id].extend(self.pool['account.voucher'].search(
                            cr, uid, [('move_id', '=', line.move_id.id)], 
                            context=context))
            return result
        
        def custom_invoice_print(self, cr, uid, ids, context=None):
            record = self.browse(cr, uid, ids[0], context=context)
            datas = {
                'ids': ids,
                'model': 'account.invoice',
                'form': self.read(cr, uid, ids[0], context=context)
            }
            return {
                'type': 'ir.actions.report.xml',
                'report_name': 'custom.account.invoice',
                'datas': datas,
                'name': 'Invoice ' + record.number  ,
                'nodestroy' : True
            }

module/report/account_print_invoice.py :

    class account_invoice(report_sxw.rml_parse):
        def __init__(self, cr, uid, name, context):
            super(account_invoice, self).__init__(cr, uid, name, context=context)
            self.localcontext.update({
                'time': time,
                'cheque_no': self.cheque_no,
            })
        
        def cheque_no(self, voucher):
            try:
                cheque_no = voucher.cheque_number
                if not cheque_no:
                    # no value in field
                    return ''
                # value in field
                return cheque_no
            except AttributeError:
                # field not defined
                return False

    report_sxw.report_sxw(
        'report.custom.account.invoice',
        'account.invoice',
        'account_payment_method/report/account_print_invoice.rml',
        parser=account_invoice
    )

module/report/account_print_invoice.rml :

    <?xml version="1.0"?>
    <document filename="Invoices.pdf">
      <template title="Invoices" author="OpenERP S.A.(sales@openerp.com)" allowSplitting="20">
        <pageTemplate id="first">
          <frame id="first" x1="34.0" y1="28.0" width="530" height="786"/>
        </pageTemplate>
      </template>
      <stylesheet>
        [...]
      </stylesheet>
      <story>
      
        <para style="terp_default_8">[[ repeatIn(objects,'o') ]]</para>
        <para style="terp_default_8">[[ setLang(o.partner_id.lang) ]]</para>
        [...]
      </story>
    </document>

Note the "o.partner_id.lang", which I have not changed. The default lang of the database is the language I want the reports to be translated to. So my customers language is also set to the desired value.

I hope someone can help me fix this.

Thanks !

EDIT :

I also tried:

  • Upgrading base module
  • Upgrading my module
  • Restarting server
  • Synchronise terms
  • Create new database

EDIT :

And of course I included the i18n folder from the account module.

0
Avatar
Zrušit
Guillaume Seran

In your account_invoice.py file change the name of your function : "custom_invoice_print" by "invoice_print". It will print the correct report.

PY
Autor

That will just override the red button, not the one in the dropdown list, I think.

Avatar
PY
Autor Nejlepší odpověď

Now, I can print the correct version of the account_print_invoice.rml file. I've overriden the invoice_print function, as suggested by Guillaume Seran.

Copy paste the i18n folder from the account module to my custom module didn't work. I had to change:

#. module: account

according to the name of my custom module in both the .po files and the .pot file.

Then, I learned a few things:

  • the button "synchonise terms" only synchronise terms which are already in the "tranlated terms" list above.
  • to add terms located in you .po file, you have to use the "import traduction" menu.
0
Avatar
Zrušit
Avatar
Fridrich Chillwel
Nejlepší odpověď

Bro, I had the same thing, I didn't know what to do while I was solving this problem, I used custom translations, and I want to tell you that it's not a bad thing. It takes the same amount of time as the translation I did myself, but I don't have to worry about it crashing and not responding, and I don't have to worry about them doing everything accurately. So try it and see how you like it.

0
Avatar
Zrušit
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Přihlásit se
Komunita
  • Tutoriály
  • Dokumentace
  • Fórum
Open Source
  • Stáhnout
  • Github
  • Runbot
  • Překlady
Služby
  • Odoo.sh hostování
  • Podpora
  • Upgrade
  • Nestandardní vývoj
  • Edukační program
  • Najít účetní
  • Najít partnera
  • Stát se partnerem
O nás
  • Naše společnost
  • Podklady značky
  • Kontakujte nás
  • Práce
  • Události
  • Podcast
  • Blog
  • Zákazníci
  • Právní dokumenty • Soukromí
  • Zabezpečení
الْعَرَبيّة 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 je balíček open-source aplikací, které pokrývají všechny potřeby vaší společnosti: CRM, e-shop, účetnictví, sklady, kasy, projektové řízení a další.

Unikátní nabídka od Odoo poskytuje velmi jednoduché uživatelské rozhraní a vše je integrované na jednom místě.

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