Merge PR #598 into 15.0

Signed-off-by pedrobaeza
This commit is contained in:
OCA-git-bot
2023-10-05 06:33:20 +00:00

View File

@@ -50,6 +50,13 @@ odoo.define("account.ReconciliationClientAction", function (require) {
}),
_onNavigationMove: function (ev) {
const $input = ev.target.$input;
// When we're on a relational field, we want to navigate inside the record
// selector, otherwise we'll be catching a wrong navigation event
if ($input && $input.hasClass("ui-autocomplete-input")) {
ev.stopPropagation();
return;
}
var non_reconciled_keys = _.keys(
// eslint-disable-next-line no-unused-vars
_.pick(this.model.lines, function (value, key, object) {