Skip to Content
Odoo Meniu
  • Autentificare
  • Try it free
  • Aplicații
    Finanțe
    • Contabilitate
    • Facturare
    • Cheltuieli
    • Spreadsheet (BI)
    • Documente
    • Semn
    Vânzări
    • CRM
    • Vânzări
    • POS Shop
    • POS Restaurant
    • Abonamente
    • Închiriere
    Site-uri web
    • Constructor de site-uri
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Lanț Aprovizionare
    • Inventar
    • Producție
    • PLM
    • Achiziție
    • Maintenance
    • Calitate
    Resurse Umane
    • Angajați
    • Recrutare
    • Time Off
    • Evaluări
    • Referințe
    • Flotă
    Marketing
    • Social Marketing
    • Marketing prin email
    • SMS Marketing
    • Evenimente
    • Automatizare marketing
    • Sondaje
    Servicii
    • Proiect
    • Foi de pontaj
    • Servicii de teren
    • Centru de asistență
    • Planificare
    • Programări
    Productivitate
    • Discuss
    • Aprobări
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Aplicații Terțe Odoo Studio Platforma Odoo Cloud
  • Industrii
    Retail
    • Book Store
    • Magazin de îmbrăcăminte
    • Magazin de Mobilă
    • Magazin alimentar
    • Magazin de materiale de construcții
    • Magazin de jucării
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Distribuitor de băuturi
    • Hotel
    Proprietate imobiliara
    • Real Estate Agency
    • Firmă de Arhitectură
    • Construcție
    • Estate Managament
    • Grădinărit
    • Asociația Proprietarilor de Proprietăți
    Consultanta
    • Firma de Contabilitate
    • Partener Odoo
    • Agenție de marketing
    • Law firm
    • Atragere de talente
    • Audit & Certification
    Producție
    • Textil
    • Metal
    • Mobilier
    • Mâncare
    • Brewery
    • Cadouri corporate
    Health & Fitness
    • Club Sportiv
    • Magazin de ochelari
    • Centru de Fitness
    • Wellness Practitioners
    • Farmacie
    • Salon de coafură
    Trades
    • Handyman
    • IT Hardware and Support
    • Asigurare socială de stat
    • Cizmar
    • Servicii de curățenie
    • HVAC Services
    Altele
    • Organizație nonprofit
    • Agenție de Mediu
    • Închiriere panouri publicitare
    • Fotografie
    • Închiriere biciclete
    • Asigurare socială
    Browse all Industries
  • Comunitate
    Învăță
    • Tutorials
    • Documentație
    • Certificări
    • Instruire
    • Blog
    • Podcast
    Empower Education
    • Program Educațional
    • Scale Up! Business Game
    • Visit Odoo
    Obține Software-ul
    • Descărcare
    • Compară Edițiile
    • Lansări
    Colaborați
    • Github
    • Forum
    • Evenimente
    • Translations
    • Devino Partener
    • Services for Partners
    • Înregistrează-ți Firma de Contabilitate
    Obține Servicii
    • Găsește un Partener
    • Găsiți un contabil
    • Meet an advisor
    • Servicii de Implementare
    • Referințe ale clienților
    • Suport
    • Actualizări
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obține un demo
  • Prețuri
  • Ajutor

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

  • CRM
  • e-Commerce
  • Contabilitate
  • Inventar
  • PoS
  • Proiect
  • MRP
All apps
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
All Posts Oameni Insigne
Etichete (View all)
odoo accounting v14 pos v15
Despre acest forum
Suport

Problem with printing custom report

Abonare

Primiți o notificare când există activitate la acestă postare

Această întrebare a fost marcată
printcustomreportcouponV9
3 Răspunsuri
7433 Vizualizări
Imagine profil
Matthieu

Hello,

After many things tried, I've still a problem.

I'm developping a custom loyalty coupon module and I want to print them.

I've got a popup view with a preview of a coupon that seems like this :

http://i.imgur.com/JcoHQit.png

In this picture, the print button is in a file called "views.xml" and the code is :

<button string="Print" icon="gtk-print" type="object" name="%(action_report_coupon)d" class="oe_highlight"/>

In the same class, I've created a declaration for my report as this :

<report

  id="action_report_coupon"

 model="loyalty.coupon"

  report_type="qweb-pdf"

  string="Print"

  name="loyalty.report"

  file="loyalty.report"

/>

loyalty, here, is the name of the python file loyalty.py (the model class for my module) which contains the class loyalty.coupon.

In another file, called by the report above, there is my template for the pdf that will be print by clicking the previous button. Its name is "report.xml" and its code is :

<?xml version="1.0" encoding="utf-8"?>

<odoo>

<template id="loyalty.report_coupon_document">

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

   <div class="page">
    <!-- content -->

   </div>

  </t>

</template>

<template id="report_coupon">

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

   <t t-foreach="docs" t-as="o">

    <t t-call="loyalty.report_coupon_document" t-lang="o.lang"/>

   </t>

  </t>

</template>

</odoo>

But, it's still not working. I don't understand where the problem is, even if it's possible to read an error message when clicking on the button that is :

AttributeError: 'loyalty.coupon' object has no attribute '354'


Please, help me. The lack of information about this is a big problem for me, that is a beginner with Odoo.


Thank you so much in advance !

0
Imagine profil
Abandonează
Matthieu
Autor

I forgot something : I have a class in "loyalty.py" with the render_html function for the report :

class reportCoupon(models.AbstractModel):

_name = 'report.loyalty.report_coupon'

@api.multi

def render_html(self, data):

docargs = {

'doc_ids': self.ids,

'doc_model': 'loyalty.coupon',

'docs': self.env['loyalty.coupon'].browse(self.ids),

'Date': fields.date.today(),

}

return self.env['report'].render('loyalty.report_coupon', values=docargs)

Matthieu
Autor

At /report/pdf/account.report_invoice/1, there is there pdf version of the account report.

But, when I go at /report/pdf/loyalty.report_coupon/1, there is nothing at all. just an "Internal Server Error".

And in the log, I can see "IndexError: list index out of range".

When I go at not existing url as /report/pdf/not_existing.report_test/1, it's the same error.

So maybe, I think the controller don't create the report to print at all ?

How can I solve that ?

Imagine profil
Matthieu
Autor Cel mai bun răspuns

I've solved my problem. Now I can print coupons as needed.

-1
Imagine profil
Abandonează
yasmina

please ,how did you solve the problem???

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

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

Înscrie-te
Related Posts Răspunsuri Vizualizări Activitate
Strip string from a field with defined separator in invoice report Rezolvat
invoice print custom report
Imagine profil
1
mar. 22
3269
Print custom Report of Routing from Manufacturing Order?
print custom report routing odoo8
Imagine profil
Imagine profil
Imagine profil
2
oct. 17
6057
Custom Report Rezolvat
custom report
Imagine profil
Imagine profil
Imagine profil
2
sept. 21
4509
how to check if report has been printed
print report
Imagine profil
Imagine profil
1
nov. 16
5251
How to create print option
print coupon
Imagine profil
1
mai 16
4930
Comunitate
  • Tutorials
  • Documentație
  • Forum
Open Source
  • Descărcare
  • Github
  • Runbot
  • Translations
Servicii
  • Hosting Odoo.sh
  • Suport
  • Actualizare
  • Custom Developments
  • Educație
  • Găsiți un contabil
  • Găsește un Partener
  • Devino Partener
Despre Noi
  • Compania noastră
  • Active de marcă
  • Contactați-ne
  • Locuri de muncă
  • Evenimente
  • Podcast
  • Blog
  • Clienți
  • Aspecte juridice • Confidențialitate
  • Securitate
الْعَرَبيّة 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 este o suită de aplicații de afaceri open source care acoperă toate nevoile companiei dvs.: CRM, comerț electronic, contabilitate, inventar, punct de vânzare, management de proiect etc.

Propunerea de valoare unică a Odoo este să fie în același timp foarte ușor de utilizat și complet integrat.

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