Skip to content

Commit

Permalink
[FIX] #10392 javascript error when used on sale order report.
Browse files Browse the repository at this point in the history
* [FIX] #10392

* [FIX] lint
  • Loading branch information
gfcapalbo authored Mar 21, 2024
1 parent a953121 commit 7a916a1
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,16 @@ odoo.define("web_advanced_search.AdvancedSelectDialog", function (require) {
}
}
},
load_optional_fields: "_onLoadOptionalFields",
save_optional_fields: "_onSaveOptionalFields",
}
),
_onLoadOptionalFields: function (ev) {
ev.stopPropagation();
},
_onSaveOptionalFields: function (ev) {
ev.stopPropagation();
},
/**
* Fully overide function to just show Select and Use Criteria.
*/
Expand Down

0 comments on commit 7a916a1

Please sign in to comment.