![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-sales/view/adminhtml/web/order/view/ |
/** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ 'jquery', 'Magento_Ui/js/modal/confirm', 'mage/translate' ], function ($, confirm) { 'use strict'; /** * @param {String} url * @returns {jQuery} */ function getForm(url) { return $('<form>', { 'action': url, 'method': 'POST' }).append($('<input>', { 'name': 'form_key', 'value': window.FORM_KEY, 'type': 'hidden' })); } $(document).on('click', '#order-view-cancel-button', function () { var msg = $.mage.__('Are you sure you want to cancel this order?'), url = $('#order-view-cancel-button').data('url'); confirm({ 'content': msg, 'actions': { /** * 'Confirm' action handler. */ confirm: function () { getForm(url).appendTo('body').trigger('submit'); } } }); return false; }); $(document).on('click', '#order-view-hold-button', function () { var url = $('#order-view-hold-button').data('url'); getForm(url).appendTo('body').trigger('submit'); }); $(document).on('click', '#order-view-unhold-button', function () { var url = $('#order-view-unhold-button').data('url'); getForm(url).appendTo('body').trigger('submit'); }); });