3
0
Fork 0

[MIG] web_widget_domain_editor_dialog: Migration to 17.0

TT49927
17.0
David 2024-07-05 15:41:51 +02:00
parent efa453c74e
commit be9f0e2efb
3 changed files with 21 additions and 27 deletions

View File

@ -3,7 +3,7 @@
{
"name": "Web Widget Domain Editor Dialog",
"summary": "Recovers the Domain Editor Dialog functionality",
"version": "16.0.1.0.0",
"version": "17.0.1.0.0",
"category": "Web",
"author": "Tecnativa," "Odoo Community Association (OCA)",
"website": "https://github.com/OCA/web",

View File

@ -2,14 +2,15 @@
/* Copyright 2019 Tecnativa - David Vidal
* Copyright 2024 Tecnativa - Carlos Roca
* License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). */
import {DomainField} from "@web/views/fields/domain/domain_field";
import {DomainEditorDialog} from "./widget_domain_editor_dialog.esm";
import {_t} from "@web/core/l10n/translation";
import {patch} from "@web/core/utils/patch";
import {DomainEditorDialog} from "./widget_domain_editor_dialog.esm";
import {DomainField} from "@web/views/fields/domain/domain_field";
patch(DomainField.prototype, "web_widget_domain_editor_dialog.DomainField", {
patch(DomainField.prototype, {
onButtonClick(ev) {
ev.preventDefault();
const self = this;
ev.preventDefault();
if (this.props.readonly) {
return this._super.apply(this, arguments);
}
@ -17,20 +18,17 @@ patch(DomainField.prototype, "web_widget_domain_editor_dialog.DomainField", {
this.props.value = "[]";
}
this.addDialog(DomainEditorDialog, {
title: this.env._t("Select records..."),
title: _t("Select records..."),
noCreate: true,
multiSelect: true,
resModel: this.getResModel(this.props),
resModel: this.getResModel(),
dynamicFilters: [
{
description: this.env._t("Selected domain"),
domain:
this.getDomain(this.props.value).toList(
this.getContext(this.props)
) || [],
description: _t("Selected domain"),
domain: this.getEvaluatedDomain(),
},
],
context: this.getContext(this.props) || {},
context: this.getContext(),
onSelected: function (resIds) {
self.update(this.get_domain(resIds));
},

View File

@ -2,8 +2,9 @@
/* Copyright 2019 Tecnativa - David Vidal
* Copyright 2024 Tecnativa - Carlos Roca
* License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). */
import {SelectCreateDialog} from "@web/views/view_dialogs/select_create_dialog";
import {deepEqual} from "@web/core/utils/objects";
import {Domain} from "@web/core/domain";
import {SelectCreateDialog} from "@web/views/view_dialogs/select_create_dialog";
export function findChildren(comp, predicate = (e) => e) {
const queue = [];
@ -33,23 +34,18 @@ export class DomainEditorDialog extends SelectCreateDialog {
}
_getDomainOfGroups(groups, domain) {
const groups_unfolded = _.filter(groups, (g) => !g.isFolded);
var groups_domain = [];
for (var group of groups_unfolded) {
var group_list = group.list;
const groups_unfolded = groups.filter((g) => !g.isFolded);
const groups_domain = [];
for (const group of groups_unfolded) {
const group_list = group.list;
if (group_list.groupBy.length) {
groups_domain.push(this._getDomainOfGroups(group_list.groups, domain));
} else {
var group_domain = group_list.domain;
_.each(domain, (d) => {
group_domain = _.without(
group_domain,
_.filter(group_domain, (x) => {
return _.isEqual(x, d);
})[0]
);
let group_domain = group_list.domain.slice();
domain.forEach((d) => {
group_domain = group_domain.filter((x) => !deepEqual(x, d));
});
group_domain = _.without(group_domain, "&");
group_domain = group_domain.filter((x) => x !== "&");
groups_domain.push(group_domain);
}
}