Ir al contenido
Menú
Se marcó esta pregunta
864 Vistas

I'm looking to modify the oca web_advanced_search module in Odoo so that the code editor feature is always visible, rather than being restricted to debug mode. My aim is to provide all users with access to this feature for improved search functionality. I attempted a certain approach, but unfortunately, it did not yield the desired results:

odoo.define('custom_web_advanced_search.CustomAdvancedFilterItem', function (require) {
'use strict';

const AdvancedFilterItem = require('web_advanced_search.AdvancedFilterItem');

AdvancedFilterItem.include({
advanced_search_open() {
this._super.apply(this, arguments);
this.debugMode = true;
},
});
});
Avatar
Descartar
Publicaciones relacionadas Respuestas Vistas Actividad
1
jul 25
2513
2
jul 25
7958
2
jul 25
4397
2
jul 25
4108
2
jun 25
2699