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

odoo v17 How to add an image and uom in a PDF list bom

S'inscrire

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

Cette question a été signalée
OdooV17Studio17
1753 Vues
Avatar
Roberto Requejo Jiménez

Hello, I am using the following code in odoo v17 using Studio. I am trying to add in a simple PDF report the image and unit of measure in the report but the code doesn´t work 


<t t-name="mrp.report_mrp_bom_custom">

    <div class="o_mrp_bom_report_page container py-3 py-lg-5 px-0 bg-view">

        <div t-if="data.get('lines')">

            <div class="px-3 mb-5">

                <h1>Lista de Materiales</h1>

                <div class="d-flex align-items-center mb-3">

                    <!-- Imagen del Producto Principal usando image_data_uri -->

                    <img t-if="data.get('image_1920')" t-att-src="image_data_uri(data['image_1920'])" class="img-thumbnail me-3" style="max-width: 100px; max-height: 100px;"/>

                    <div>

                        <h3 t-esc="data['name']"/>

                        <!-- Unidad de Medida del Producto Principal -->

                        <p>Unidad de Medida: <span t-esc="data['uom_name']"/></p>

                    </div>

                </div>

            </div>

            <table class="table table-borderless">

                <thead>

                    <tr>

                        <th>Imagen</th>

                        <th>Descripción del Producto</th>

                        <th class="text-end">Cantidad</th>

                        <th class="text-start">Unidad de Medida</th>

                    </tr>

                </thead>

                <tbody>

                    <t t-foreach="data['lines']" t-as="line">

                        <tr>

                            <!-- Imagen de los Productos en la Lista de Materiales usando image_data_uri -->

                            <td>

                                <img t-if="line.get('image_1920')" t-att-src="image_data_uri(line['image_1920'])" class="img-thumbnail" style="max-width: 80px; max-height: 80px;"/>

                            </td>

                            <!-- Descripción del Producto -->

                            <td t-esc="line.get('name', '')"/>

                            <!-- Cantidad -->

                            <td t-esc="line.get('quantity', 0)" t-options="{'widget': 'float', 'decimal_precision': 'Product Unit of Measure'}" class="text-end"/>

                            <!-- Unidad de Medida -->

                            <td t-esc="data['uom_name']" class="text-start"/>

                        </tr>

                    </t>

                </tbody>

            </table>

        </div>

        <div t-else="" class="d-flex align-items-center justify-content-center h-50">

            <h4 class="text-muted">No hay datos disponibles.</h4>

        </div>

    </div>

</t>


Someone can help me?

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é
Invalid Operation: Error while importing module 'dental_clinical_management'
ubuntu22.04 OdooV17
Avatar
Avatar
Avatar
Avatar
Avatar
5
août 25
1948
Creating User Access for Tasks in Odoo with Limited Project,Task Permissions Résolu
v17 OdooV17
Avatar
Avatar
1
févr. 25
13216
Custom Fonts with Odoo studio Résolu
invoices Studio17
Avatar
Avatar
2
déc. 24
1318
Je veux faire une migration de JS odoo 15 vers 17
migrate OdooV17
Avatar
0
mai 24
2009
disable edit on sale order
sale.order odooV17 OdooV17
Avatar
Avatar
Avatar
3
oct. 25
543
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