Skip to Content
Odoo Menu
  • Prisijungti
  • Išbandykite nemokamai
  • Programėlės
    Finansai
    • Apskaita
    • Pateikimas apmokėjimui
    • Sąnaudos
    • Skaičiuoklė (BI)
    • Dokumentai
    • Pasirašymas
    Pardavimai
    • CRM
    • Pardavimai
    • Kasų sistema - Parduotuvė
    • Kasų sistema - Restoranas
    • Prenumeratos
    • Nuoma
    Svetainės
    • Svetainių kūrėjimo įrankis
    • El. Prekyba
    • Internetinis Tinklaraštis
    • Forumas
    • Tiesioginis pokalbis
    • eMokymasis
    Tiekimo grandinė
    • Atsarga
    • Gamyba
    • PLM
    • Įsigijimai
    • Priežiūra
    • Kokybė
    Žmogaus ištekliai
    • Darbuotojai
    • Įdarbinimas
    • Atostogos
    • Įvertinimai
    • Rekomendacijos
    • Transporto priemonės
    Rinkodara
    • Socialinė rinkodara
    • Rinkodara el. paštu
    • SMS rinkodara
    • Renginiai
    • Rinkodaros automatizavimas
    • Apklausos
    Paslaugos
    • Projektas
    • Darbo laiko žiniaraščiai
    • Priežiūros tarnyba
    • Pagalbos tarnyba
    • Planavimas
    • Rezervacijos
    Produktyvumas
    • Diskucija
    • Patvirtinimai
    • IoT
    • VoIP
    • Žinių biblioteka
    • WhatsApp
    Trečiųjų šalių programos Odoo Studija Odoo debesijos platforma
  • Pramonės šakos
    Mažmeninė prekyba
    • Knygynas
    • Drabužių parduotuvė
    • Baldų parduotuvė
    • Maisto prekių parduotuvė
    • Techninės įrangos parduotuvė
    • Žaislų parduotuvė
    Food & Hospitality
    • Barai ir pub'ai
    • Restoranas
    • Greitasis maistas
    • Guest House
    • Gėrimų platintojas
    • Hotel
    Nekilnojamasis turtas
    • Real Estate Agency
    • Architektūros įmonė
    • Konstrukcija
    • Estate Managament
    • Sodininkauti
    • Turto savininkų asociacija
    Konsultavimas
    • Accounting Firm
    • Odoo Partneris
    • Marketing Agency
    • Teisinė firma
    • Talentų paieška
    • Auditai & sertifikavimas
    Gamyba
    • Textile
    • Metal
    • Furnitures
    • Maistas
    • Brewery
    • Įmonių dovanos
    Sveikata & Fitnesas
    • Sporto klubas
    • Akinių parduotuvė
    • Fitneso Centras
    • Sveikatos praktikai
    • Vaistinė
    • Kirpėjas
    Trades
    • Handyman
    • IT įranga ir palaikymas
    • Saulės energijos sistemos
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Kiti
    • Nonprofit Organization
    • Aplinkos agentūra
    • Reklaminių stendų nuoma
    • Fotografavimas
    • Dviračių nuoma
    • Programinės įrangos perpardavėjas
    Browse all Industries
  • Bendrija
    Mokykitės
    • Mokomosios medžiagos
    • Dokumentacija
    • Sertifikatai
    • Mokymai
    • Internetinis Tinklaraštis
    • Tinklalaidės
    Skatinkite švietinimą
    • Švietimo programa
    • Scale Up! Verslo žaidimas
    • Aplankykite Odoo
    Gaukite programinę įrangą
    • Atsisiųsti
    • Palyginkite versijas
    • Leidimai
    Bendradarbiauti
    • Github
    • Forumas
    • Renginiai
    • Vertimai
    • Tapkite partneriu
    • Services for Partners
    • Registruokite jūsų apskaitos įmonę
    Gaukite paslaugas
    • Susiraskite partnerį
    • Susirask buhalterį
    • Susitikti su konsultantu
    • Diegimo paslaugos
    • Klientų rekomendavimas
    • Palaikymas
    • Atnaujinimai
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Gaukite demo
  • Kainodara
  • Pagalba

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

  • CRM
  • e-Commerce
  • Apskaita
  • Atsarga
  • PoS
  • Projektas
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Žymos (View all)
odoo accounting v14 pos v15
About this forum
Pagalba

Replace the print option on top of form with a Print button. How can I achieve that?

Prenumeruoti

Get notified when there's activity on this post

This question has been flagged
qwebreportingodoo12.0
1 Atsakyti
10477 Rodiniai
Portretas
Paulo Matos

Hello everyone,
Based on some samples, I was abble to create a sample pdf report.
Now, I can see the print option on top my form.

Since this is a specific form, I do not want to have that "print" option on top of the form. I want to have a "Print" button instead.

1. So, how can I remove that print button on top of the form?
2. How can I pass a function/action for the print button in ways it prints the report I have created?
I already have the button "Print" on the form...

- I added the button to the form:

        <header>
          <button name="print_report" string="Print" states="confirm" type="object"/>
        </header>

       
- The report code on the xml:

        <template id ="mymodule.report_nametouseontemplate">
            <t t-call="web.html_container">
                <t t-foreach ="docs" t-as ="o">
                    <t t-call ="web.external_layout">
                        <div class="page">
                            <div class="oe_structure"/>
                            <!-- REPORT STRUCTURE STARTS HERE -->
                            <h1>Test Report Top Level Header</h1>
                            <h2>Test Report Item: <span t-field="o.name"/></h2>
                        </div>
                    </t>
                </t>
            </t>
        </template>


        <report
            id="report_test_report"
            string="Test Report"
            model="mymodule.moduletoprintfrom"
            report_type="qweb-pdf"
            name="mymodule.report_nametouseontemplate"
            file="file.nametoprint"
        />       


With this code I can sucessfully print the desired report, but only from the "print" option from the top of the form.
Now, I need to remove this "print" option from the top and add this print function to the "Print" button I have added to the form.

Another question I have:

Under template tag, I have the id: <template id ="mymodule.report_nametouseontemplate">
Under report tag, I have the name: <.... name="mymodule.report_nametouseontemplate">

Do I have to use the same exact value for "id" and "name" for the same report?
And by the way, feel free to instruct me on the best approach on building reports.

Thank you very much

Best regards

Paulo

0
Portretas
Atmesti
Portretas
Mitul Shingala
Best Answer

Hello for remove the "Print" option you have to do change like

<report id="report_test_report"
            string="Test Report"
            model="mymodule.moduletoprintfrom"
            report_type="qweb-pdf"
            name="mymodule.report_nametouseontemplate"
            menu="False"
            file="file.nametoprint"/>       


Then, you want print the report from button so you have to do python code like..

@api.multi

def print_report(self):

     return self.env.ref('your_module_name.report_test_report').report_action(self)


=> for your another question "Do I have to use the same exact value for "id" and "name" for the same report? 

", yes you have to give the template_id reference into <report> tag's name attribute for the same report. Here you are doing that is correct.

3
Portretas
Atmesti
Paulo Matos
Autorius

@Mutil, thank you my friend.

I can't believe it was so simple...

It was some how tricky for me because had already tried the self.env.ref('your_module_name.report_test_report').report_action(self).

Problem is, I was passing the "report_name" instead of "report id" and was getting a "'ir.ui.view' object has no attribute 'report_action'".

Saved my weekend

Best regards

Paulo

Enjoying the discussion? Don't just read, join in!

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

Registracija
Related Posts Replies Rodiniai Veikla
How can I display all tasks (including completed ones) in a QWeb report in Odoo?
qweb reporting
Portretas
Portretas
2
rugs. 24
3041
How to print Invoice Number and Customer Details (address) on every report page? Solved
reporting odoo12.0
Portretas
Portretas
1
saus. 20
4957
Run a code after printing a report. How can I achieve that? Solved
reporting odoo12.0
Portretas
Portretas
Portretas
2
lapkr. 19
5371
How do i create report in Qweb? Solved
qweb reporting
Portretas
Portretas
Portretas
Portretas
Portretas
5
rugp. 19
47536
How to update default header in PDF report (qWeb)? Solved
qweb reporting
Portretas
Portretas
Portretas
Portretas
Portretas
4
birž. 18
21234
Bendrija
  • Mokomosios medžiagos
  • Dokumentacija
  • Forumas
Atvirasis kodas
  • Atsisiųsti
  • Github
  • Runbot
  • Vertimai
Paslaugos
  • Odoo.sh talpinimas
  • Palaikymas
  • Atnaujinti
  • Pritaikytas programavimo kūrimas
  • Švietimas
  • Susirask buhalterį
  • Susiraskite partnerį
  • Tapkite partneriu
Apie mus
  • Mūsų įmonė
  • Prekės ženklo turtas
  • Susisiekite su mumis
  • Darbo pasiūlymai
  • Renginiai
  • Tinklalaidės
  • Internetinis Tinklaraštis
  • Klientai
  • Teisinis • Privatumas
  • Saugumas
الْعَرَبيّة 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 yra atvirojo kodo verslo programų rinkinys, kuris apima visas įmonės poreikius: CRM, El. Prekybą, Apskaitą, Atsargų, Kasų sistemą, Projektų valdymą ir kt.

Unikali Odoo vertės pasiūla – būti tuo pačiu metu labai lengvai naudojama ir visiškai integruota sistema.

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