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
    • Textile
    • Kov
    • Nábytek
    • Jídlo
    • Brewery
    • Korporátní dárky
    Zdraví a fitness
    • Sportovní klub
    • Prodejna brýli
    • Fitness Centrum
    • Wellness praktikové
    • Lékárna
    • Kadeřnictví
    Transakce
    • Údržbář
    • IT hardware a podpora
    • 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
    Browse all Industries
  • 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
    • Services for Partners
    • 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 make downloading a pdf file

Odebírat

Get notified when there's activity on this post

This question has been flagged
pdfdownload
2 Odpovědi
15187 Zobrazení
Avatar
Matthieu

Hello,


I'm currently creating an Odoo 9 module and I've got a Class with a report_coupon function called by a button.

Here is my class :

class loyalty_coupon(models.Model):

    _name = 'loyalty.coupon'

    _columns = {

        'name': fields.char('Name', size=32, select=1, required=True, help='An internal identification for this loyalty coupon'),

       'loyalty_program_id': fields.many2one('loyalty.program', 'Loyalty Program', help='The Loyalty Program this coupon belongs to'),

       'reduction': fields.float('Reduction', help='The amount of reduction of this coupon in EUR'),

       'date': fields.date('Date Limit', help='The date limit of the coupon'),

       'limited': fields.boolean('Limited', help='The kind of coupon'),

       'used': fields.boolean('Used', help='The state of the coupon, used or not used'),

       'barcode': fields.char('Barcode', help="International Article Number used for coupon identification.", oldname='ean13', copy=False),

    }

    @api.one

    def report_coupon(self):

       _logger.info("IMPRESS")

I want this function to allow the user to download a pdf file generated (composed of attributes of the class).

How can I do this ? :)


Thank you in advance for your replies and help !



0
Avatar
Zrušit
Avatar
Emipro Technologies Pvt. Ltd.
Nejlepší odpověď

Hi,

Please make one button inside your form. i.e. 

<button name="report_coupon"  type="object" string="Download PDF" />

According to the button defination you need to define one method inside your model with following lines of code. thats it.

@api.multi
def report_coupon(self):
return self.env['report'].get_action(self, 'modulename.xmlidofyourreport') #modulename.custom_report_coupon

  

Above line of code will give the option to download pdf report on clicking of that button.

Please try it in your module.


1
Avatar
Zrušit
Matthieu
Autor

Well, thank you, it's better but i've got an error :

raise ValueError('External ID not found in the system: %s' % (xmlid))

ValueError: External ID not found in the system:

account.report_coupon

Emipro Technologies Pvt. Ltd.

I have updated my answer, you just need to give external ID of your report. thats it.

Matthieu
Autor

Thank you ! Now, a new error appeared :

Bad Report ReferenceThis report is not loaded into the database: loyalty.report_coupon

Why is it still not working ? What's wrong ?

Avatar
Matthieu
Autor Nejlepší odpověď

Currently, I have the following reports and records in an XML file called "report.xml" :

<template id="report_coupon">

  <t t-call="report.external_layout">

   <div class="page">

    <div class="row">

     <h3>Title</h3>

    </div>

   </div>

  </t>

</template>

<template id="report_without_prices">

  <t t-call="report.html_container">

   <t t-foreach="doc_ids" t-as="doc_id">

    <t t-raw="translate_doc(doc_id, doc_model, 'partner_id.lang', 'account.coupon')"/>

   </t>

  </t>

</template>

In my view, I have

<report

  id="custom_report_coupon"

  model="account.invoice"

 string="Coupons"

  report_type="qweb-pdf"

  name="account.report_coupon"

  attachment_use="False"

  file="account.report_coupon"

/>

So, my question is how to call this from a button and allow the user to download a pdf file of this view ?


Thanks in advance !

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
Related Posts Odpovědi Zobrazení Aktivita
Configure a link to download a PDF file
pdf download Link
Avatar
0
kvě 24
2815
Download Pdf File On local Machine ?
pdf python download
Avatar
0
bře 15
5320
Quote Builder With Custom Rental Report (Studio)
pdf
Avatar
0
říj 25
549
Quote Builder With Custom Rental Report (Studio)
pdf
Avatar
0
říj 25
4
How to edit the header of the quote template Vyřešeno
pdf
Avatar
Avatar
Avatar
2
srp 25
1351
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