Initial commit: Odoo 18.0-20251222 extra-addons
This commit is contained in:
39
web_copy_confirm/static/src/js/web_copy_confirm.esm.js
Executable file
39
web_copy_confirm/static/src/js/web_copy_confirm.esm.js
Executable file
@@ -0,0 +1,39 @@
|
||||
import {patch} from "@web/core/utils/patch";
|
||||
import {ConfirmationDialog} from "@web/core/confirmation_dialog/confirmation_dialog";
|
||||
import {_t} from "@web/core/l10n/translation";
|
||||
import {FormController} from "@web/views/form/form_controller";
|
||||
import {ListController} from "@web/views/list/list_controller";
|
||||
|
||||
patch(FormController.prototype, {
|
||||
async duplicateRecord() {
|
||||
await this.dialogService.add(ConfirmationDialog, {
|
||||
title: _t("Duplicate"),
|
||||
body: _t("Are you sure that you would like to copy this record?"),
|
||||
confirm: () => {
|
||||
super.duplicateRecord();
|
||||
},
|
||||
cancel: () => {
|
||||
// `ConfirmationDialog` needs this prop to display the cancel
|
||||
// button but we do nothing on cancel.
|
||||
},
|
||||
});
|
||||
},
|
||||
});
|
||||
|
||||
patch(ListController.prototype, {
|
||||
async duplicateRecords() {
|
||||
await this.dialogService.add(ConfirmationDialog, {
|
||||
title: _t("Duplicate"),
|
||||
body: _t(
|
||||
"Are you sure that you would like to duplicate the selected records?"
|
||||
),
|
||||
confirm: () => {
|
||||
super.duplicateRecords();
|
||||
},
|
||||
cancel: () => {
|
||||
// `ConfirmationDialog` needs this prop to display the cancel
|
||||
// button but we do nothing on cancel.
|
||||
},
|
||||
});
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user