Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[17.0][FIX] date_range: fix for cases when domain is not initialized #949

Merged
merged 1 commit into from
Oct 11, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions date_range/static/src/js/tree_editor.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,11 @@ patch(TreeEditor.prototype, {
) {
info.component = Select;
}
// Prevent issues when the domain is not initialized, for example in
// Odoo Studio editing
if (!this.env.domain) {
return info;
}
let dateRanges = this.env.domain.dateRanges;
if (this.update_operator && this.update_operator.split("daterange_")[1]) {
dateRanges = this.env.domain.dateRanges.filter(
Expand Down Expand Up @@ -105,6 +110,11 @@ patch(TreeEditor.prototype, {
super.updateLeafOperator.apply(this, arguments);
this.update_operator = operator;
const fieldDef = this.getFieldDef(node.path);
// Prevent issues when the domain is not initialized, for example in
// Odoo Studio editing
if (!this.env.domain) {
return;
}
let dateRanges = this.env.domain.dateRanges.filter(
(range) => range.type_id[0] === Number(operator.split("daterange_")[1])
);
Expand Down
Loading