I need to override a patch from a module that is part of the Enterprise edition. In this case, I only need to modify the patch of a method in JavaScript, but I don't see a way to modify just that patch without affecting the entire functionality. Is there a way to override or unpatch a specific patch? Or is there any workaround for this?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- ลูกค้าสัมพันธ์
- e-Commerce
- ระบบบัญชี
- สินค้าคงคลัง
- PoS
- Project
- MRP
คำถามนี้ถูกตั้งค่าสถานะ
Hello Vicente de Orue,
In Odoo 17-18 we cannot unpatch a method, but we can override an existing patch from another module.
The patch() utility simply extends or replaces methods on the prototype, so to change an already patched method you just redefine it and optionally call the original one.
Here's a simple example showing how to override with the existing patch:
const oldMethod = Target.prototype.methodName;
patch(Target.prototype, "my_module", {
methodName() {
// your custom logic here
return oldMethod.call(this, ...arguments);
},
});
If you have any questions, feel free to reach out to us
Hope this helps!
Thanks & Regards,
Email : odoo@aktivsoftware.com
Hi,
Please refer to the links:
1. https://www.cybrosys.com/blog/how-to-patch-existing-owl-components-in-odoo-18
2. https://www.odoo.com/documentation/18.0/developer/reference/frontend/patching_code.html
Hope it helps.
สนุกกับการพูดคุยนี้ใช่ไหม? เข้าร่วมเลย!
สร้างบัญชีวันนี้เพื่อเพลิดเพลินไปกับฟีเจอร์พิเศษและมีส่วนร่วมกับคอมมูนิตี้ที่ยอดเยี่ยมของเรา!
ลงชื่อRelated Posts | ตอบกลับ | มุมมอง | กิจกรรม | |
---|---|---|---|---|
|
0
ก.ค. 25
|
783 | ||
|
2
ก.ค. 25
|
1733 | ||
|
1
พ.ย. 24
|
1728 | ||
|
4
ต.ค. 24
|
4277 | ||
|
0
เม.ย. 23
|
1974 |
Hello, AFAIK you'd need to patch at least the method of that javascript part of the module