Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Iní
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Pomoc

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

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Call python function from Javascript in Odoo12

Odoberať

Get notified when there's activity on this post

This question has been flagged
javascriptpythonmodelfucntionodoo12
1 Odpoveď
13501 Zobrazenia
Avatar
Kabeer KB

I tried to call a python function from javascript bu getting below error,

    TypeError: odoo.Model is not a constructor

http://localhost:8069/web/content/800-79a133d/web.assets_backend.js:3724
Traceback:
_onBarcodePrint@http://localhost:8069/web/content/800-79a133d/web.assets_backend.js:3724:1133
proxy/<@http://localhost:8069/web/content/641-43f8051/web.assets_common.js:3641:8
dispatch@http://localhost:8069/web/content/641-43f8051/web.assets_common.js:892:378
add/elemData.handle@http://localhost:8069/web/content/641-43f8051/web.assets_common.js:865:151


Here is the code.

*.js

    odoo.define('documents.DocumentsInspector.inherit', function (require) {

"use strict";

  var model = require('documents.DocumentsInspector');

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

  var _t = core._t;

  var qweb = core.qweb;

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

  var DocumentsInspector = model.include({


  events: {

      'click .o_inspector_archive': '_onArchive',

      'click .o_inspector_delete': '_onDelete',

      'click .o_inspector_download': '_onDownload',

      'click .o_inspector_replace': '_onReplace',

      'click .o_inspector_lock': '_onLock',

      'click .o_inspector_share': '_onShare',

      'click .o_inspector_open_chatter': '_onOpenChatter',

      'click .o_inspector_tag_add': '_onTagInputClicked',

      'click .o_inspector_tag_remove': '_onRemoveTag',

      'click .o_inspector_trigger_rule': '_onTriggerRule',

      'click .o_inspector_object_name': '_onOpenResource',

      'click .o_preview_available': '_onOpenPreview',

      'click .o_document_pdf': '_onOpenPDF',

      'mouseover .o_inspector_trigger_hover': '_onMouseoverRule',

      'mouseout .o_inspector_trigger_hover': '_onMouseoutRule',

      'click .o_inspector_print': '_onBarcodePrint',

  },


  /**

   * @private

   */

  _onBarcodePrint: function () {

    new odoo.Model('ir.attachment').call('print_barcode'); //Here getting an error.

  },

  });

});




     *.py

     class IRAttachment(models.Model):

    _inherit = 'ir.attachment'

    barcode = fields.Char('Barcode')

    def print_barcode(self):

        print ('Am here')


And one more, actually i rewrite the `events` above again. How can i add new events to existing events without rewrite the complete code.? 

1
Avatar
Zrušiť
Avatar
Pablo Guerra
Best Answer

_onBarcodePrint: function (){
            this._rpc({

                model: 'ir.attachment',

                method: 'print_barcode',

                args: [],

            })

}


Use RPC calls to the python function.


To extend events,


events: _.extend({}, model.prototype.events, {

//your events

}


(Haven't checked and verified, You get the idea)

Accept and Upvote, if helpful
1
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

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

Registrácia
Related Posts Replies Zobrazenia Aktivita
RPC calling python function does not return data from view
javascript python rpcjson odoo12
Avatar
Avatar
Avatar
Avatar
4
júl 20
9092
How to create a Custom Python Model an call a Method via Javascript? (Odoo 9.0) Solved
javascript python nonetype model
Avatar
1
apr 16
12327
Calling create method gives NameError (Odoo 12) Solved
javascript python create NameError odoo12
Avatar
Avatar
Avatar
2
jún 19
4796
Trying to call a Python method from JS Error (Odoo 12) Solved
javascript python rpc odoo odoo12
Avatar
Avatar
Avatar
2
jún 19
7988
No handler found error on email validation?
javascript python
Avatar
Avatar
1
jún 25
4952
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة 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 je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

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