Hi,
I want to patch memoized const exported function of js file (like luxonToMomentFormat in @web/core/l10n/dates).
How can i do that?
Note: i tried the usual patch and did not work.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
Hi,
I want to patch memoized const exported function of js file (like luxonToMomentFormat in @web/core/l10n/dates).
How can i do that?
Note: i tried the usual patch and did not work.
Hi,
You could try the below mentioned method to patch js.
/** @odoo-module **/
import { patch } from "@web/core/utils/patch";
import { luxonToMomentFormat } from "@web/core/l10n/dates";
patch(luxonToMomentFormat, 'module_name.luxonToMomentFormat', {
start() {
return this._super();
}
});
Hope it helps
相关帖文 | 回复 | 查看 | 活动 | |
---|---|---|---|---|
|
2
7月 24
|
2690 | ||
|
0
4月 23
|
1669 | ||
|
0
3月 15
|
2893 | ||
|
2
7月 24
|
2844 | ||
|
1
11月 24
|
4881 |
Can you please share the patching code you tried?