Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
4050 Переглядів

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,

Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
3
квіт. 25
1253
1
серп. 24
2030
3
трав. 24
11224
POS Session wont close Вирішено
1
вер. 23
3567
0
серп. 23
1722