Merge PR #2409 into 14.0

Signed-off-by etobella
pull/2455/head
OCA-git-bot 2023-03-08 21:34:30 +00:00
commit 7f58b9f19b
1 changed files with 4 additions and 4 deletions

View File

@ -38,13 +38,13 @@ odoo.define("web_m2x_options.web_m2x_options", function (require) {
text: _t("Create"), text: _t("Create"),
classes: "btn-primary", classes: "btn-primary",
click: function () { click: function () {
if (this.$("input").val()) { if (this.value) {
this.trigger_up("quick_create", { this.trigger_up("quick_create", {
value: this.$("input").val(), value: this.value,
}); });
this.close(true); this.close(true);
} else { } else {
this.$("input").focus(); parent.$("input").focus();
} }
}, },
}, },
@ -55,7 +55,7 @@ odoo.define("web_m2x_options.web_m2x_options", function (require) {
click: function () { click: function () {
this.trigger_up("search_create_popup", { this.trigger_up("search_create_popup", {
view_type: "form", view_type: "form",
value: this.$("input").val(), value: this.value,
}); });
}, },
}, },