mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
15 lines
418 B
JavaScript
15 lines
418 B
JavaScript
/* Copyright 2022 ForgeFlow S.L.
|
|
* License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). */
|
|
odoo.define("web_confirm_duplicate.basic_view", function(require) {
|
|
"use strict";
|
|
|
|
var BasicView = require("web.BasicView");
|
|
|
|
BasicView.include({
|
|
init: function() {
|
|
this._super.apply(this, arguments);
|
|
this.controllerParams.confirmOnDuplicate = true;
|
|
},
|
|
});
|
|
});
|