3
0
Fork 0

Merge PR #2625 into 15.0

Signed-off-by pedrobaeza
15.0-ocabot-merge-pr-2789-by-pedrobaeza-bump-patch
OCA-git-bot 2023-10-19 08:51:51 +00:00
commit 4387caf0f5
1 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,57 @@
/** @odoo-module **/
import {patch} from "@web/core/utils/patch";
import {_t} from "web.core";
import Domain from "web.Domain";
import DomainSelector from "web.DomainSelector";
import basic_fields from "web.basic_fields";
/**
* The redraw in the Debug Field does not trigger correctly
* so we overwrite it with the v14 Version
*
*/
patch(DomainSelector.prototype, "web.DomainSelector", {
/**
* @override
*/
_onDebugInputChange(e) {
if (!$(".o_add_advanced_search").length) {
return this._super(...arguments);
}
const rawDomain = e.currentTarget.value;
try {
Domain.prototype.stringToArray(rawDomain);
} catch (err) {
// If there is a syntax error, just ignore the change
this.displayNotification({
title: _t("Syntax error"),
message: _t("Domain not properly formed"),
type: "danger",
});
return;
}
this._redraw(Domain.prototype.stringToArray(rawDomain)).then(
function () {
this.trigger_up("domain_changed", {
child: this,
alreadyRedrawn: true,
});
}.bind(this)
);
},
});
patch(basic_fields.FieldDomain.prototype, "web.basic_fields", {
/**
* Odoo restricts re-rendering the domain from the debug editor for supposedly
* performance reasons. We didn't ever came up with those and in v17 it's supported
* in the new advanced search.
* @override
*/
// eslint-disable-next-line
_onDomainSelectorValueChange(event) {
this._super(...arguments);
// Deactivate all debug conditions that cripple the functionality
this.debugEdition = false;
},
});