我想更改js
文件中的功能。怎么做?有没有办法覆盖这个功能?
addons/web/static/src/js/views/form_common.js
,
我想更改function-get_search_result: function(search_val){}
dataset.name_search(search_val, self.build_domain(), 'ilike', 160).done(function(_data) {self._search_create_popup("search", _data);}
需要将值160
更改为其他内容
提前致谢
答案 0 :(得分:1)
this question上有一个很好的答案/示例,给出了很好的概述。该示例实际上比全局JavaScript更改所需的深度更深入。
如果您确定要覆盖的功能,那么它主要只是镜像核心并进行所需的覆盖。以下是有关如何更改name_search
JavaScript行为的示例概述:
...
'data': [
...
'views/assets.xml',
...
],
...
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data>
<template id="assets_backend" name="custom assets" inherit_id="web.assets_backend">
<xpath expr="." position="inside">
<script type="text/javascript" src="/your_module/static/src/js/custom.js"></script>
</xpath>
</template>
</data>
</odoo>
odoo.define('your_module.custom_feature', function(require) {
"use strict";
Class = require('web.Class');
mixins = require('web.mixins');
var DataSet = Class.extend(mixins.PropertiesMixin, {
name_search: function (name, domain, operator, limit) {
/* Custom code to override/extend core */
},
});
return {
DataSet: DataSet,
};
});
答案 1 :(得分:1)
你可以像在google_calendar
中那样做:
odoo.define('youmodule.yourmodule', function (require) {
"use strict";
var CompletionFieldMixin = require('web.CompletionFieldMixin');
var _t = core._t;
var QWeb = core.qweb;
CompletionFieldMixin.include({
// You need to redefine the function here
});