![]() 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/cartforge.co/vendor/magento/module-shipping/Block/Adminhtml/Order/Packaging/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\Shipping\Block\Adminhtml\Order\Packaging; class Grid extends \Magento\Backend\Block\Template { /** * @var string */ protected $_template = 'Magento_Shipping::order/packaging/grid.phtml'; /** * Core registry * * @var \Magento\Framework\Registry */ protected $_coreRegistry = null; /** * @var \Magento\Sales\Model\Order\Shipment\ItemFactory */ protected $_shipmentItemFactory; /** * @param \Magento\Backend\Block\Template\Context $context * @param \Magento\Sales\Model\Order\Shipment\ItemFactory $shipmentItemFactory * @param \Magento\Framework\Registry $registry * @param array $data */ public function __construct( \Magento\Backend\Block\Template\Context $context, \Magento\Sales\Model\Order\Shipment\ItemFactory $shipmentItemFactory, \Magento\Framework\Registry $registry, array $data = [] ) { $this->_shipmentItemFactory = $shipmentItemFactory; $this->_coreRegistry = $registry; parent::__construct($context, $data); } /** * Return collection of shipment items * * @return array */ public function getCollection() { if ($this->getShipment()->getId()) { $collection = $this->_shipmentItemFactory->create()->getCollection()->setShipmentFilter( $this->getShipment()->getId() ); } else { $collection = $this->getShipment()->getAllItems(); } return $collection; } /** * Retrieve shipment model instance * * @return \Magento\Sales\Model\Order\Shipment */ public function getShipment() { return $this->_coreRegistry->registry('current_shipment'); } /** * Can display customs value * * @return bool */ public function displayCustomsValue() { $storeId = $this->getShipment()->getStoreId(); $order = $this->getShipment()->getOrder(); $address = $order->getShippingAddress(); $shipperAddressCountryCode = $this->_scopeConfig->getValue( \Magento\Sales\Model\Order\Shipment::XML_PATH_STORE_COUNTRY_ID, \Magento\Store\Model\ScopeInterface::SCOPE_STORE, $storeId ); $recipientAddressCountryCode = $address->getCountryId(); if ($shipperAddressCountryCode != $recipientAddressCountryCode) { return true; } return false; } /** * Format price * * @param float $value * @return string */ public function formatPrice($value) { return sprintf('%.2F', $value); } }