Se rendre au contenu
Odoo Menu
  • Se connecter
  • Essai gratuit
  • Applications
    Finance
    • Comptabilité
    • Facturation
    • Notes de frais
    • Feuilles de calcul (BI)
    • Documents
    • Signature
    Ventes
    • CRM
    • Ventes
    • PdV Boutique
    • PdV Restaurant
    • Abonnements
    • Location
    Sites web
    • Site Web
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Chaîne d'approvisionnement
    • Inventaire
    • Fabrication
    • PLM
    • Achats
    • Maintenance
    • Qualité
    Ressources Humaines
    • Employés
    • Recrutement
    • Congés
    • Évaluations
    • Recommandations
    • Parc automobile
    Marketing
    • Marketing Social
    • E-mail Marketing
    • SMS Marketing
    • Événements
    • Marketing Automation
    • Sondages
    Services
    • Projet
    • Feuilles de temps
    • Services sur Site
    • Assistance
    • Planification
    • Rendez-vous
    Productivité
    • Discussion
    • Validations
    • Internet des Objets
    • VoIP
    • Connaissances
    • WhatsApp
    Applications tierces Odoo Studio Plateforme Cloud d'Odoo
  • Industries
    Commerce de détail
    • Librairie
    • Magasin de vêtements
    • Magasin de meubles
    • Épicerie
    • Quincaillerie
    • Magasin de jouets
    Food & Hospitality
    • Bar et Pub
    • Restaurant
    • Fast-food
    • Maison d’hôtes
    • Distributeur de boissons
    • Hôtel
    Immobilier
    • Agence immobilière
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consultance
    • Cabinet d'expertise comptable
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Métal
    • Meubles
    • Alimentation
    • Brewery
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Trades
    • Bricoleur
    • Matériel informatique et support
    • Systèmes photovoltaïques
    • Cordonnier
    • Services de nettoyage
    • Services CVC
    Autres
    • Organisation à but non lucratif
    • Agence environnementale
    • Location de panneaux d'affichage
    • Photographie
    • Leasing de vélos
    • Revendeur de logiciel
    Browse all Industries
  • Communauté
    Apprenez
    • Tutoriels
    • Documentation
    • Certifications
    • Formation
    • Blog
    • Podcast
    Renforcer l'éducation
    • Programme éducatif
    • Business Game Scale-Up!
    • Rendez-nous visite
    Obtenir le logiciel
    • Téléchargement
    • Comparez les éditions
    • Versions
    Collaborer
    • Github
    • Forum
    • Événements
    • Traductions
    • Devenez partenaire
    • Services for Partners
    • Enregistrer votre cabinet comptable
    Nos Services
    • Trouver un partenaire
    • Trouver un comptable
    • Rencontrer un conseiller
    • Services de mise en œuvre
    • Références clients
    • Assistance
    • Mises à niveau
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Obtenir une démonstration
  • Tarification
  • Aide

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

  • CRM
  • e-Commerce
  • Comptabilité
  • Inventaire
  • PoS
  • Projet
  • MRP
All apps
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Vous devez être inscrit pour interagir avec la communauté.
Toutes les publications Personnes Badges
Étiquettes (Voir toutl)
odoo accounting v14 pos v15
À propos de ce forum
Aide

Problem with printing custom report

S'inscrire

Recevez une notification lorsqu'il y a de l'activité sur ce poste

Cette question a été signalée
printcustomreportcouponV9
3 Réponses
7440 Vues
Avatar
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
Avatar
Ignorer
Matthieu
Auteur

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
Auteur

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 ?

Avatar
Matthieu
Auteur Meilleure réponse

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

-1
Avatar
Ignorer
yasmina

please ,how did you solve the problem???

Vous appréciez la discussion ? Ne vous contentez pas de lire, rejoignez-nous !

Créez un compte dès aujourd'hui pour profiter de fonctionnalités exclusives et échanger avec notre formidable communauté !

S'inscrire
Publications associées Réponses Vues Activité
Strip string from a field with defined separator in invoice report Résolu
invoice print custom report
Avatar
1
mars 22
3269
Print custom Report of Routing from Manufacturing Order?
print custom report routing odoo8
Avatar
Avatar
Avatar
2
oct. 17
6058
Custom Report Résolu
custom report
Avatar
Avatar
Avatar
2
sept. 21
4510
how to check if report has been printed
print report
Avatar
Avatar
1
nov. 16
5251
How to create print option
print coupon
Avatar
1
mai 16
4933
Communauté
  • Tutoriels
  • Documentation
  • Forum
Open Source
  • Téléchargement
  • Github
  • Runbot
  • Traductions
Services
  • Hébergement Odoo.sh
  • Assistance
  • Migration
  • Développements personnalisés
  • Éducation
  • Trouver un comptable
  • Trouver un partenaire
  • Devenez partenaire
À propos
  • Notre société
  • Actifs de la marque
  • Contactez-nous
  • Emplois
  • Événements
  • Podcast
  • Blog
  • Clients
  • Informations légales • Confidentialité
  • Sécurité.
الْعَرَبيّة 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 est une suite d'applications open source couvrant tous les besoins de votre entreprise : CRM, eCommerce, Comptabilité, Inventaire, Point de Vente, Gestion de Projet, etc.

Le positionnement unique d'Odoo est d'être à la fois très facile à utiliser et totalement intégré.

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