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
    • Intelligence artificielle
    • 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
    • Supermarché
    • Quincaillerie
    • Magasin de jouets
    Restauration & Hôtellerie
    • 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
    • Brasserie
    • Cadeaux d'entreprise
    Santé & Fitness
    • Club de sports
    • Opticien
    • Salle de fitness
    • Praticiens bien-être
    • Pharmacie
    • Salon de coiffure
    Commerce
    • Homme à tout faire
    • Matériel informatique & 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
    Parcourir toutes les 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
    • Devenir partenaire
    • Services pour partenaires
    • 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
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

Odoo10: how to replace inherited qweb template content ?

S'inscrire

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

Cette question a été signalée
odoo10Odoo10.0Odoo10
3 Réponses
22071 Vues
Avatar
peter

I have tried to insert a tag into an existing template but couldn't get it to work.

Existing template in odoo/addons/mail/static/src/xml/thread.xml

<!-- language: xml -->

    <?xml version="1.0" encoding="UTF-8"?>
    <templates xml:space="preserve">
   
        <t t-name="mail.ChatThread">
            <t t-if="messages.length">
               :
        <t t-name="mail.ChatComposer.Attachments">
            <div class="o_attachments">
                <t t-foreach="attachments" t-as='attachment'>
                    <t t-call="mail.Attachment">
                        <t t-set="editable" t-value="true"/>
                    </t>
                </t>
            </div>
        </t>

        <t t-name="mail.Attachment">
            <div t-attf-class="o_attachment #{attachment.upload ? 'o_attachment_uploading' : ''}" t-att-title="attachment.name">
   
                <a class="o_image" t-att-href='attachment.url' target="_blank" t-att-data-mimetype="attachment.mimetype" t-attf-data-src="/web/image/#{attachment.id}/100x80">
                    <span class='o_attachment_name'><t t-esc='attachment.name'/></span>
                </a>
                <t t-if="editable">
                    <div class="o_attachment_delete">
                        <i class='fa fa-times-circle' title="Delete this attachment" t-att-data-id="attachment.id"/>
                    </div>
                    <div class="o_attachment_progress_bar">
                        Uploading
                    </div>
                </t>
            </div>
        </t>

My custom template (odoo/addons/mycustom/static/src/xml/thread.xml):<br>
I want to insert the Hello world after the class o_image in the original template.

<!-- language: xml -->

    <?xml version="1.0" encoding="UTF-8"?>
    <templates xml:space="preserve">
        <t t-name="mycustom.ImageAttachment" t-extend="mail.Attachment">
            <t t-jquery="o_image" t-operation="append">
                <div>Hello world</div>
            </t>
        </t>
    </templates>

My javascript to render the template (odoo/addons/mycustom/static/src/js/thread.js):

<!-- language: lang-js -->

    odoo.define('mycustom.thread', function (require) {
    "use strict";
   
    var core = require('web.core');
    var ajax = require('web.ajax');
    var qweb = core.qweb;
   
    ajax.loadXML('/mycustom/static/src/xml/thread.xml', qweb);
    console.log("INFO", "Hello World")
   
    });

My assets file (odoo/addons/mycustom/views/assets.xml):

<!-- language: xml -->

    <?xml version="1.0" encoding="utf-8"?>
    <odoo>
        <template id="assets_backend" name="my assets" inherit_id="web.assets_backend">
          <xpath expr="." position="inside">
              <script type="text/javascript" src="/mycustom/static/src/js/thread.js"></script>
          </xpath>
        </template>
    </odoo>

My manifest file (odoo/addons/mycustom/__manifest__.py):

<!-- language: python -->

    # -*- coding: utf-8 -*-
    {
        'name': "test",
   
        'summary': """my test""",
   
        'description': """
            This is my test module.
        """,
   
        'author': "peter",
        'website': "",
   
        # Categories can be used to filter modules in modules listing
        # Check https://github.com/odoo/odoo/blob/master/odoo/addons/base/module/module_data.xml
        # for the full list
        'category': 'Test',
        'version': '0.1',
   
        # any module necessary for this one to work correctly
        'depends': ['base','mail'],
   
        # always loaded
        'data': [
            'views/assets.xml',
        ],
       
        'qweb': [
            'static/src/xml/thread.xml',
        ],
       
    }

The javascript is loaded because I can see the text `Hello World` written on the browser console.
However, I cannot see the `<div>Hello World</div>` in the chat thread. What did I miss?

0
Avatar
Ignorer
peter
Auteur

sorry for the bad formatting guys, i tried to re-format the code block for my question but i got the 403 - Forbidden reply from Odoo and couldn't update my changes.

Avatar
Jalasoft, Daniel Lopez
Meilleure réponse

Hi Peter,

I found a problem with t-query selector, o_image is not found because it's a class, try with .o_image 


<?xml version="1.0" encoding="UTF-8"?>
<templates xml:space="preserve">
    <t t-name="mycustom.ImageAttachment" t-extend="mail.Attachment">
        <t t-jquery=".o_image" t-operation="append">
            <div>Hello world</div>
        </t>
    </t>
</templates>

Let me know if your problem was fixed

Daniel

0
Avatar
Ignorer
Avatar
Andrea Alessandrini
Meilleure réponse

See this answer

https://www.odoo.com/es_ES/forum/ayuda-1/question/replace-all-qweb-template-using-inheritance-94325


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é
could not execute command lessc in odoo 10 Windows Résolu
odoo10 Odoo10.0
Avatar
Avatar
Avatar
3
mars 18
17065
leave management odoo 10
odoo10 Odoo10.0
Avatar
Avatar
1
sept. 17
4324
How to hide a measure(field) in odoo10 grph view
odoo10 odoo10.0 odoo10e Odoo10.0 Odoo10
Avatar
Avatar
1
mars 21
5798
How odoo identify which record they have to return the value of name_search method?
name_search odoo10 odoo10.0 Odoo10.0 Odoo10
Avatar
0
juil. 17
5169
How to print an excel file from form view without using wizard Résolu
openerp odoo10 Odoo10.0
Avatar
Avatar
Avatar
2
avr. 18
9514
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
  • Devenir 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 Svenska ภาษาไทย 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