![]() 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-checkout/view/frontend/web/js/view/ |
/** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ define([ 'jquery', 'uiComponent', 'Magento_Checkout/js/model/quote', 'Magento_Checkout/js/model/step-navigator', 'Magento_Checkout/js/model/sidebar' ], function ($, Component, quote, stepNavigator, sidebarModel) { 'use strict'; return Component.extend({ defaults: { template: 'Magento_Checkout/shipping-information' }, /** * @return {Boolean} */ isVisible: function () { return !quote.isVirtual() && stepNavigator.isProcessed('shipping'); }, /** * @return {String} */ getShippingMethodTitle: function () { var shippingMethod = quote.shippingMethod(), shippingMethodTitle = ''; if (!shippingMethod) { return ''; } shippingMethodTitle = shippingMethod['carrier_title']; if (typeof shippingMethod['method_title'] !== 'undefined') { shippingMethodTitle += ' - ' + shippingMethod['method_title']; } return shippingMethodTitle; }, /** * Back step. */ back: function () { sidebarModel.hide(); stepNavigator.navigateTo('shipping'); }, /** * Back to shipping method. */ backToShippingMethod: function () { sidebarModel.hide(); stepNavigator.navigateTo('shipping', 'opc-shipping_method'); } }); });