Skip to content
This repository was archived by the owner on Apr 29, 2019. It is now read-only.

Commit 542a691

Browse files
committed
MAGETWO-86529: USPS API removal - Feb 23, 2018
1 parent 6efad83 commit 542a691

File tree

1 file changed

+3
-3
lines changed
  • app/code/Magento/Shipping/view/adminhtml/templates/view

1 file changed

+3
-3
lines changed

app/code/Magento/Shipping/view/adminhtml/templates/view/form.phtml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ $order = $block->getShipment()->getOrder();
3636
<div class="shipping-description-wrapper">
3737
<?php if ($block->getShipment()->getTracksCollection()->count()): ?>
3838
<p>
39-
<a href="#" id="linkId" onclick="popWin('<?= $block->escapeUrl($this->helper('Magento\Shipping\Helper\Data')->getTrackingPopupUrlBySalesModel($block->getShipment())); ?>','trackshipment','width=800,height=600,resizable=yes,scrollbars=yes')"
39+
<a href="#" id="linkId" onclick="popWin('<?= $block->escapeUrl($this->helper(\Magento\Shipping\Helper\Data::class)->getTrackingPopupUrlBySalesModel($block->getShipment())); ?>','trackshipment','width=800,height=600,resizable=yes,scrollbars=yes')"
4040
title="<?= $block->escapeHtml(__('Track this shipment')); ?>">
4141
<?= $block->escapeHtml(__('Track this shipment')); ?>
4242
</a>
@@ -48,15 +48,15 @@ $order = $block->getShipment()->getOrder();
4848

4949
<?= $block->escapeHtml(__('Total Shipping Charges')); ?>:
5050

51-
<?php if ($this->helper('Magento\Tax\Helper\Data')->displayShippingPriceIncludingTax()): ?>
51+
<?php if ($this->helper(\Magento\Tax\Helper\Data::class)->displayShippingPriceIncludingTax()): ?>
5252
<?php $excl = $block->displayShippingPriceInclTax($order); ?>
5353
<?php else: ?>
5454
<?php $excl = $block->displayPriceAttribute('shipping_amount', false, ' '); ?>
5555
<?php endif; ?>
5656
<?php $incl = $block->displayShippingPriceInclTax($order); ?>
5757

5858
<?= /* @noEscape */ $excl; ?>
59-
<?php if ($this->helper('Magento\Tax\Helper\Data')->displayShippingBothPrices() && $incl != $excl): ?>
59+
<?php if ($this->helper(\Magento\Tax\Helper\Data::class)->displayShippingBothPrices() && $incl != $excl): ?>
6060
(<?= $block->escapeHtml(__('Incl. Tax')); ?> <?= /* @noEscape */ $incl; ?>)
6161
<?php endif; ?>
6262
</div>

0 commit comments

Comments
 (0)