Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

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

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

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

Zaprenumeruj

Otrzymaj powiadomienie o aktywności w tym poście

To pytanie dostało ostrzeżenie
qwebreportingodoo12.0
1 Odpowiedz
10493 Widoki
Awatar
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
Awatar
Odrzuć
Awatar
Mitul Shingala
Najlepsza odpowiedź

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
Awatar
Odrzuć
Paulo Matos
Autor

@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

Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
How can I display all tasks (including completed ones) in a QWeb report in Odoo?
qweb reporting
Awatar
Awatar
2
wrz 24
3054
How to print Invoice Number and Customer Details (address) on every report page? Rozwiązane
reporting odoo12.0
Awatar
Awatar
1
sty 20
4962
Run a code after printing a report. How can I achieve that? Rozwiązane
reporting odoo12.0
Awatar
Awatar
Awatar
2
lis 19
5374
How do i create report in Qweb? Rozwiązane
qweb reporting
Awatar
Awatar
Awatar
Awatar
Awatar
5
sie 19
47548
How to update default header in PDF report (qWeb)? Rozwiązane
qweb reporting
Awatar
Awatar
Awatar
Awatar
Awatar
4
cze 18
21244
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة 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 to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

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