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

Override Many2ManyListView under web.form_relational !!

S'inscrire

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

Cette question a été signalée
widgetjs
1 Répondre
4931 Vues
Avatar
Pawan

Hello guys,

I have a requirement in which i have to override Many2ManyListView class from "web/static/src/js/views/form_relational_widget.js" under "web.form_relational"

But as web.form_relational does not return 'Many2ManyListView'(so i can't use '.' notation to access) nor its adding it in form_registery(to access it from registery), i am not getting the correct  way to override 'Many2ManyListView'


Any help would be appreciated...


Thanks!

0
Avatar
Ignorer
Avatar
Axel Mendoza
Meilleure réponse

*** update that works directly without more investigation, i will left the original answer as a reference ***

Odoo class/widget functions extend and include have something in common. That is that both functions apply the received javascript object properties to the class/widget. The difference between those Odoo class/widget functions is that the extend function is used to get a copy of the Odoo class/widget with the modifications without been modify the original class/widget by returning the modifications in a new class/widget. The include function will do the modifications in place to the class/widget without returning anything new.

To reach the class/widget Many2ManyListView for been able to use extend or include functions the best way is using the following code:

var core = require('web.core');

var FieldMany2Many = core.form_widget_registry.get('many2many')

var extention_not_done = false;

FieldMany2Many.include({

init: function() {

this._super.apply(this, arguments);

//if(extention_not_done){

     if(!extention_not_done){

var Many2ManyListView = this.x2many_views.list;

// use include to modify the original

Many2ManyListView.include({

});

// or use extend to create a copy with the modifications

var Many2ManyListView_New = Many2ManyListView.extend({

});

extention_not_done = true;

}

}

});

That technique consist of using an include extension to the FieldMany2Many init and call the original init function by calling the super so the class widget will be initialized and you could then access to the original Many2ManyListView class/widget. Just need a check due the init of the FieldMany2Many will be called by many times and we don't wanna applying the extension to the Many2ManyListView several times, we just need one.

*** original answer ***

Try it this way:

var core = require('web.core');

var FieldMany2Many = core.form_widget_registry.get('many2many')

var Many2ManyListView = new FieldMany2Many(args).x2many_views.list

/*** examples ***/

Many2ManyListView.include({

});

var Many2ManyListView_New = Many2ManyListView.extend({

});

With tha code you just need to investigate what need to be passed as args for the FieldMany2Many instantiation and you will be able to call the include or extend on the retrieved Many2ManyListView 

1
Avatar
Ignorer
Pawan
Auteur

Thanks a lot axel, frankly i was expecting an answer from you....

what i have done is returned Many2ManyListView also from form_relational(knowing that is not the correct way, but it worked somehow.)

anyway will try it soon and update u...

thanks

Pawan
Auteur

One more thing, can just explain a difference between this include n extend.. how it works programmaticaly ...

Axel Mendoza

sure, let me answer your question about the difference of include and extend with an answer update since I found a direct solution to the original problem that directly works

Axel Mendoza

check it now the previous answer updates

Pawan
Auteur

Thanks Axel, it worked very well, just a modification needed(inplace of "if(extention_not_done)", it should be "if(!extention_not_done)", which i have updated), rest everything is fine..

Thanks once again...

Axel Mendoza

please don't forget to accept and upvote the answer if it was helpful

Pawan
Auteur

And regarding extend and include i have noticed one more thing, when we use 'extend' it is not calling the overriding method as in above case for Many2ManyListView, i was trying to override do_activate_record by extending Many2ManyListView, but it is not calling overriding method(still going with the base method),

do you have any idea why is ti happening so...?

Axel Mendoza

read carefully what I wrote about that, extend will not modify the original class/widget, it will return a new class/widget with the modifications

Pawan
Auteur

oh.. ok , i missed, thanks once again...

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é
Extending/Overriding public widgets.
widget js
Avatar
Avatar
1
mai 23
8495
problem with bind a js widget and xml Template to add it in html dev
widget templates js
Avatar
Avatar
1
juin 23
3832
Sign App won't display PDF while custom JS widget added to the SystrayMenu
widget js sign
Avatar
0
janv. 21
3561
Error: "Could not find client action MyWidget" in widget [Odoo 12.0alpha1+e]
widget js master
Avatar
Avatar
Avatar
2
déc. 19
9309
How to Inheirt SectionAndNoteListRenderer function to include my custom code Résolu
widget js render
Avatar
Avatar
1
déc. 19
6508
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