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
    • Guest House
    • Distributeur de boissons
    • Hotel
    Real Estate
    • Real Estate Agency
    • Cabinet d'architecture
    • Construction
    • Gestion immobilière
    • Jardinage
    • Association de copropriétaires
    Consulting
    • Accounting Firm
    • Partenaire Odoo
    • Agence Marketing
    • Cabinet d'avocats
    • Aquisition de talents
    • Audit & Certification
    Fabrication
    • Textile
    • Metal
    • Furnitures
    • Food
    • 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
    • Solar Energy Systems
    • Cordonnier
    • Services de nettoyage
    • HVAC Services
    Others
    • Nonprofit Organization
    • 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

Send different Worksheet Report in Field Service

S'inscrire

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

Cette question a été signalée
reportstasksStudio
1 Répondre
3077 Vues
Avatar
Dave

Hi, 

I have several custom worksheets created in Studio for different maintenance tasks in Field Services. Which all work well apart from when I want to send the field service to the client as it will not include the multi line sections, it just replaces them with :-

Door Units                x_project_task_worksheet_template_16_line_fe9aa(2, 3, 4) 

Inside Units              x_project_task_worksheet_template_16_line_cd368(2, 3, 4)


I have the worksheets in the print option when they are open, but when going to the task I am unable to add them as they are not in the task.project model.

How can I add these  worksheets to the task report.


Many thanks  




2
Avatar
Ignorer
Avatar
LandLogic IT s.n.c.
Meilleure réponse

Solution for Including Multiline Sections in Custom Worksheets in Field Services Reports

If you’ve created custom worksheets in Studio for maintenance tasks in Field Services and the multiline sections aren't displaying correctly in reports (replaced with something like x_project_task_worksheet_template_16_line_fe9aa(2, 3, 4)), here's how you can resolve the issue.

Issue

The custom worksheets created in Studio display correctly in the Odoo interface, but when printing or generating reports, the One2many fields (multiline sections) are not rendered properly. Instead, they appear as technical references, e.g., x_project_task_worksheet_template_16_line_cd368(2, 3, 4).

This happens because the automatically generated templates from Studio don't handle One2many fields directly in the QWeb report.

Solution: Customize the QWeb Template

To fix this issue, you need to manually customize the QWeb template that renders the report for the worksheet. Follow these steps:

  1. Identify the QWeb Template:
    • The automatically generated QWeb template for the worksheet can be found under Settings > Technical > User Interface > Views (enable developer mode if needed).
    • Locate the template by its external ID. In this case, it might look like industry_fsm_report.report_custom_x_project_task_worksheet_template_16.
  2. Modify the Template to Handle One2many Fields:
    • Edit the template and replace the default rendering for the One2many field with a loop to display its data.
    • Here's an example of how you can update the template:
      <div t-att-class="('col-5' if report_type == 'pdf' else 'col-lg-3 col-12') + ' fw-bold'">
          Door Units
      </div>
      <div nolabel="1" colspan="2" t-att-class="'col-7' if report_type == 'pdf' else 'col-lg-9 col-12'">
          <table class="table table-sm">
              <thead>
                  <tr>
                      <th>Quantity</th>
                      <th>Sequence</th>
                      <th>Description</th>
                  </tr>
              </thead>
              <tbody>
                  <t t-foreach="worksheet.x_studio_one2many_field" t-as="line">
                      <tr>
                          <td><t t-esc="line.x_studio_qty"/></td>
                          <td><t t-esc="line.x_studio_sequence"/></td>
                          <td><t t-esc="line.x_name"/></td>
                      </tr>
                  </t>
              </tbody>
          </table>
      </div>
      
      Replace x_studio_one2many_field, x_studio_qty, x_studio_sequence, and x_name with the actual technical names of your One2many field and its subfields.
  3. Test the Report:
    • Save the changes and regenerate the report.
    • Check that the multiline sections now display correctly with the expected data.

Explanation

The solution involves manually iterating through the records of the One2many field in the QWeb template using t-foreach. Each row is rendered dynamically based on the values stored in the One2many field, ensuring the data is displayed properly in the report.

Additional Notes

  • If the worksheet isn't linked to the project.task model directly, you might need to add a Many2one relation in Studio or via code to associate the worksheet with the task.
  • This solution is applicable for any module or report in Odoo where Studio-generated One2many fields aren't displaying correctly.
  • For advanced customizations, consider developing a custom Odoo module instead of relying entirely on Studio.

This approach ensures that your custom worksheets will display all multiline sections properly in the reports generated from Field Services tasks. 😊

0
Avatar
Ignorer
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é
Odoo Studio Issue: Trying to Modify Existing Reports
reports Studio
Avatar
Avatar
1
janv. 22
5714
Create new Report in Module Employee / Fields not available
employee reports Studio
Avatar
0
nov. 23
1822
Access rights for report update and creation.
reports access rights Studio
Avatar
Avatar
1
août 25
1788
How to add a page break on your pdf report using Studio ? Résolu
reports customization quickstart Studio
Avatar
Avatar
Avatar
Avatar
Avatar
5
févr. 24
10453
Snippets of reports in odoo enterprise studio (ODOO15)
designer reports Enterprise Studio
Avatar
0
oct. 22
3046
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