![]() 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/frontend/templates/order/print/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> <?php $_order = $block->getOrder() ?> <?php $_creditmemo = $block->getCreditmemo() ?> <?php if ($_creditmemo) : ?> <?php $_creditmemos = [$_creditmemo]; ?> <?php else : ?> <?php $_creditmemos = $_order->getCreditmemosCollection() ?> <?php endif; ?> <?php foreach ($_creditmemos as $_creditmemo) : ?> <div class="order-details-items creditmemo"> <div class="order-title"> <strong><?= $block->escapeHtml(__('Refund #%1', $_creditmemo->getIncrementId())) ?></strong> </div> <div class="table-wrapper order-items-creditmemo"> <table class="data table table-order-items creditmemo" id="my-refund-table-<?= (int) $_creditmemo->getId() ?>"> <caption class="table-caption"><?= $block->escapeHtml(__('Items Refunded')) ?></caption> <thead> <tr> <th class="col name"><?= $block->escapeHtml(__('Product Name')) ?></th> <th class="col sku"><?= $block->escapeHtml(__('SKU')) ?></th> <th class="col price"><?= $block->escapeHtml(__('Price')) ?></th> <th class="col qty"><?= $block->escapeHtml(__('Qty')) ?></th> <th class="col subtotal"><?= $block->escapeHtml(__('Subtotal')) ?></th> <th class="col discount"><?= $block->escapeHtml(__('Discount Amount')) ?></th> <th class="col rowtotal"><?= $block->escapeHtml(__('Row Total')) ?></th> </tr> </thead> <?php $_items = $_creditmemo->getAllItems(); ?> <?php foreach ($_items as $_item) : ?> <?php if (!$_item->getOrderItem()->getParentItem()) : ?> <tbody> <?= $block->getItemHtml($_item) ?> </tbody> <?php endif; ?> <?php endforeach; ?> <tfoot> <?= $block->getTotalsHtml($_creditmemo) ?> </tfoot> </table> </div> <div class="block block-order-details-view"> <div class="block-title"> <strong><?= $block->escapeHtml(__('Order Information')) ?></strong> </div> <div class="block-content"> <?php if (!$_order->getIsVirtual()) : ?> <div class="box box-order-shipping-address"> <div class="box-title"> <strong><?= $block->escapeHtml(__('Shipping Address')) ?></strong> </div> <div class="box-content"> <?php $_shipping = $_creditmemo->getShippingAddress() ?> <address><?= /* @noEscape */ $block->formatAddress($_shipping, 'html') ?></address> </div> </div> <div class="box box-order-shipping-method"> <div class="box-title"> <strong><?= $block->escapeHtml(__('Shipping Method')) ?></strong> </div> <div class="box-content"> <?= $block->escapeHtml($_order->getShippingDescription()) ?> </div> </div> <?php endif; ?> <div class="box box-order-billing-address"> <div class="box-title"> <strong><?= $block->escapeHtml(__('Billing Address')) ?></strong> </div> <div class="box-content"> <?php $_billing = $_creditmemo->getbillingAddress() ?> <address><?= /* @noEscape */ $block->formatAddress($_order->getBillingAddress(), 'html') ?></address> </div> </div> <div class="box box-order-billing-method"> <div class="box-title"> <strong><?= $block->escapeHtml(__('Payment Method')) ?></strong> </div> <div class="box-content"> <?= $block->getPaymentInfoHtml() ?> </div> </div> </div> </div> </div> <?php endforeach; ?>