Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
2 ตอบกลับ
14046 มุมมอง

 I want to customize the onclick Javascript action for the form of the model stock.picking. What is the easiest way to do this

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Hello Jan, 

Add code in your js file 

/**window.alert("Page is Reload");**/
odoo.define('Module.js file name', 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"){
            //code //
         return;
         }
         this._super();
    },
});
});

and define into your xml file : 

<button name="java_script" string="Java Script" type="object" custom="click"/>

There java_script is my function name which one define in .py file.

I hope it's help you

Thanks 

อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

How can i accomplish this on Version 12 .

Somehow the module web.form_widgets does not exist in this version.

Thanks in advance.

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
0
มี.ค. 17
8598
0
ก.ค. 25
307
1
ก.ค. 25
5089
0
ก.ค. 25
654
0
มิ.ย. 25
718