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

Change PDF report name on wizard

S'inscrire

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

Cette question a été signalée
wizardreport
2 Réponses
4139 Vues
Avatar
Arthur LEHAVRE

I'm using Odoo 17 and I added a custom button on the project form view that displays wizard view to recap some informations and then export them inside a PDF report. Everything works fine except one thing : I can't change the name of the PDF. 

When I don't generate the report through the native print button instead, in the project model, the field   works fine. But through a custom button, it doesn't, it keeps using the field  .

Any idea about how to change report file name through wizard?

Thanks a lot

Here is my code :


   
       My Custom PDF
       report.custom_module.my_report
       qweb-pdf
       custom_module.my_report
       custom_module.my_report
       'the name of the file'
       report
   
/
0
Avatar
Ignorer
Avatar
Arthur LEHAVRE
Auteur Meilleure réponse

Thanks a lot for your answer. Unfortunatly, I still have the issue. The report file name use the string instead of print_report_name. It drives me mad ! 

0
Avatar
Ignorer
Avatar
Jainesh Shah(Aktiv Software)
Meilleure réponse

Hello Arthur LEHAVRE ,


To change the name of the PDF generated by your custom button in Odoo 17, you need to ensure that the filename is dynamically set in your report action. Here’s a step-by-step guide on how to achieve this:


1. Define the report action:

//Code 1 in Comment//


2. Modify the wizard to generate the report:


Ensure your wizard calls the report action with the context needed to set the filename.

//Code 2 in Comment//


3. Adjust the button in the form view to call the wizard:

   

Make sure your button in the project form view calls the wizard action.

//Code 3 in Comment//


4. Ensure the wizard action is defined:

   

Make sure your wizard action is correctly defined in the XML file.

//Code 4 in Comment//


Hope this helps.

   

If you need any help in customisation feel free to contact us.

       

Thanks & Regards,

Email:  odoo@aktivsoftware.com           

Skype: kalpeshmaheshwari

0
Avatar
Ignorer
Jainesh Shah(Aktiv Software)

Code 1:

<report
id="my_custom_report"
model="project.project"
string="My Custom PDF"
report_type="qweb-pdf"
name="custom_module.my_report"
file="custom_module.my_report"
print_report_name="(object.name or 'report_name') + '_Report'"
/>

Code 2 :

class MyCustomWizard(models. TransientModel):
_name = 'custom_module.my_custom_wizard'
_description = 'Custom Wizard for PDF Report'

def action_generate_report(self):
return self.env.ref('custom_module.my_custom_report').report_action(self)

Code 3:

<record id="view_project_form" model="ir.ui.view">
<field name="name">project.form</field>
<field name="model">project.project</field>
<field name="arch" type="xml">
<form string="Project">
<!-- Your existing form view structure -->
<button name="action_generate_report" type="object" string="Generate PDF" class="btn-primary"/>
<!-- Your existing form view structure -->
</form>
</field>
</record>

Code 4:

<record id="action_my_custom_wizard" model="ir.actions.act_window">
<field name="name">My Custom Wizard</field>
<field name="res_model">custom_module.my_custom_wizard</field>
<field name="view_mode">form</field>
<field name="target">new</field>
</record>

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é
Blank report PDF from Wizard Résolu
wizard report
Avatar
Avatar
2
avr. 24
3674
External ID not found in the system
wizard report
Avatar
4
oct. 20
6593
How to print report without closing wizard?
wizard report
Avatar
Avatar
1
mars 15
6121
How to generate a report from a wizard?
wizard reporting report
Avatar
Avatar
1
avr. 24
33167
Close wizard after print report Résolu
wizard report odooV8
Avatar
Avatar
Avatar
Avatar
3
févr. 24
13548
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