Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

How to Inheirt SectionAndNoteListRenderer function to include my custom code

Naroči se

Get notified when there's activity on this post

This question has been flagged
widgetjsrender
1 Odgovori
6452 Prikazi
Avatar
Shaik

I want to add my custom code inside SectionAndNoteListRenderer 
But its not working. In console.log its saying Undefined.

odoo.define('pack_so_product.pack_so_product_widget', function (require) {

"use strict";


var SectionAndNoteListRenderer = require('account.section_and_note_backend');

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


var _t = core._t;

var QWeb = core.qweb;


console.log(SectionAndNoteListRenderer);


SectionAndNoteListRenderer.include({

    

    _onAddRecord: function (ev) {

        // we don't want the browser to navigate to a the # url

        ev.preventDefault();


        // we don't want the click to cause other effects, such as unselecting

        // the row that we are creating, because it counts as a click on a tr

        ev.stopPropagation();


        // but we do want to unselect current row

        var self = this;

        this._super.apply(this, arguments);

        this.unselectRow().then(function () {

            var context = ev.currentTarget.dataset.context;

            if (context && pyUtils.py_eval(context).open_package_product){

                self._rpc({

                    model: 'ir.model.data',

                    method: 'xmlid_to_res_id',

                    kwargs: {xmlid: 'pack_so_product.sale_product_package_view_form'},

                }).then(function (res_id) {

                    self.do_action({

                        name: _t('Add a package'),

                        type: 'ir.actions.act_window',

                        res_model: 'sale.package.product',

                        views: [[res_id, 'form']],

                        target: 'new',

                        context: {

                            'open_package_product': true

                        }

                    });

                });

            } else {

                self.trigger_up('add_record', {context: context && [context]}); // TODO write a test, the deferred was not considered

            }

        });

    },

});


});

0
Avatar
Opusti
Avatar
Oleksandr Komarov
Best Answer

The module account/static/src/js/section_and_note_fields_backend.js does not return the created widgets. 

Therefore, you cannot use "include" or "extend" to override the widget code.
This is an annoying error in the code, 
which would be worth writing a request to github.com/odoo/odoo/issues,
because most js modules return created widgets, 
but in this module they apparently forgot to insert


return {
    SectionAndNoteListRenderer: SectionAndNoteListRenderer,
    SectionAndNoteFieldOne2Many: SectionAndNoteFieldOne2Many,
    SectionAndNoteFieldText: SectionAndNoteFieldText,
};
I have the same problem, but I do not know how to get around this problem.
You can try creating your own widget based on an existing one like this:
​
var SectionAndNoteFieldOne2Many = fieldRegistry.get('section_and_note_one2many');
fieldRegistry.add('my_section_and_note_one2many', SectionAndNoteFieldOne2Many.extend({
myCode: function () {
// insert your core here
},
}));
and then insert in my_views.XML <field my_field widget='my_section_and_note_one2many'>
2
Avatar
Opusti
Bruce Rochester

Excellent! Your answer was extremely helpful to me in resolving this issue. Thanks!

Oleksandr Komarov

I am pleased to hear that.

I implemented adding kits based on this.

If interesting, then I can post my code.

Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Prijavi
Related Posts Odgovori Prikazi Aktivnost
Extending/Overriding public widgets.
widget js
Avatar
Avatar
1
maj 23
8418
Override Many2ManyListView under web.form_relational !! Solved
widget js
Avatar
Avatar
1
jul. 16
4886
problem with bind a js widget and xml Template to add it in html dev
widget templates js
Avatar
Avatar
1
jun. 23
3786
Sign App won't display PDF while custom JS widget added to the SystrayMenu
widget js sign
Avatar
0
jan. 21
3485
Error: "Could not find client action MyWidget" in widget [Odoo 12.0alpha1+e]
widget js master
Avatar
Avatar
Avatar
2
dec. 19
9268
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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