My goal is to modify the method _onClickSend() in https://github.com/odoo/odoo/blob/879647265bf804e63bd8e89ec3ca58b51ffb29ea/addons/mail/static/src/components/composer/composer.js#L284. Could anybody explain or show an example to inherit and modify this method trough a custom module? For example: i want the function to look as follows:
_onClickSend() {
this._postMessage();
console.log("Click Send");
this.focus();
}
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
1
Trả lời
2420
Lượt xem
Hi,
Try like below code
odoo.define('module_name.file_name', function (require) {
"use strict";
const Composer = require('mail/static/src/components/composer/composer.js');
const { patch } = require('web.utils');
patch(Composer, 'file path or a unique string', {
_onClickSend() {
this._super();
}
})
});
Regards
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
1
thg 10 23
|
3323 | ||
|
0
thg 1 25
|
1044 | ||
How to render owl template from JS?
Đã xử lý
|
|
1
thg 9 23
|
6924 | |
|
0
thg 9 23
|
3012 |