![]() 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/creditmemo/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ ?> <?php $_order = $block->getOrder() ?> <div class="actions-toolbar"> <a href="<?= $block->escapeUrl($block->getPrintAllCreditmemosUrl($_order)) ?>" class="action print" target="_blank" rel="noopener"> <span><?= $block->escapeHtml(__('Print All Refunds')) ?></span> </a> </div> <?php foreach ($_order->getCreditmemosCollection() as $_creditmemo) : ?> <div class="order-title"> <strong><?= $block->escapeHtml(__('Refund #')) ?><?= $block->escapeHtml($_creditmemo->getIncrementId()) ?> </strong> <a href="<?= $block->escapeUrl($block->getPrintCreditmemoUrl($_creditmemo)) ?>" class="action print" target="_blank" rel="noopener"> <span><?= $block->escapeHtml(__('Print Refund')) ?></span> </a> </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 total"><?= $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> <?= $block->getCommentsHtml($_creditmemo) ?> <?php endforeach; ?>