Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
3643 Lượt xem

I have created a button as below

<button string="Click" custom="click"/>

Then create one JS file that will contain following code.

odoo.define('YOUR_MODULE.FILENAME', function (require) {
"use strict";

var form_widget = require('web.form_widgets');
var core = require('web.core');
var _t = core._t;
var QWeb = core.qweb;

form_widget.WidgetButton.include({
    on_click: function() {
         if(this.node.attrs.custom === "click"){

            // YOUR CODE

            return;
         }
         this._super();
    },
});
});

  File "D:\odoo-10.0\odoo\http.py", line 506, in response_wrap
    response = f(*args, **kw)
TypeError: call_button() takes at least 4 arguments (5 given)


and another doubt is what is the YOUR_MODULE.FILENAME here

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
0
thg 6 24
907
2
thg 7 25
222
0
thg 12 24
969
2
thg 10 24
1095
1
thg 8 24
2216