This question has been flagged

Hi all,

I want to override a function in POS, which was writen by JS. So, I create __init__.py and __openerp__.py with 'depends ' : ['point_of_sale']. Next, I created my_module.js in /static/src/js

Via link : https://www.odoo.com/forum/help-1/question/how-can-i-extend-a-js-web-module-64

So, In my my_module.js, I wrote

openerp.my_module = function(instance){
var module = instance.sample // loading the namespace of the 'sample' module module.PosWidget.include({ start : function(){ console.log('Hello!'); // HERE IS MY CODE }, }); };

In "HERE IS MY CODE", in wrote whole original code and modify function "self.$('.deleteorder-button').click(function(){ }) as an alert().

self.$('.deleteorder-button').click(function(){
alert("HELLO");
});

It means : when I click butotn delete order in POS, I will get an alert("HELLO")

Where is my wrong? Can any one help me, please?

Thanks,

Avatar
Discard