![]() 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/app/design/frontend/Cnc/default/Magento_Sales/templates/order/ |
<?php /** * Copyright (c) 2020 Kaliop Digital Commerce (https://digitalcommerce.kaliop.com) All Rights Reserved. * https://opensource.org/licenses/OSL-3.0 Open Software License (OSL 3.0) * Cnc * Radosław Stępień <[email protected]> <[email protected]> */ // phpcs:disable Magento2.Templates.ThisInTemplate /** @var \Magento\Sales\Block\Order\History $block */ ?> <?php $_orders = $block->getOrders(); ?> <?= $block->getChildHtml('info') ?> <div class="cnc-my-informations-link"> <a href="<?= $block->escapeUrl('/customer/account/edit'); ?>"> <?= $block->escapeHtml(__('Modify/add an accounting email address')) ?> </a> </div> <div class="cnc-orders-history-title"> <span> <?= $block->escapeHtml(__('My Orders')) ?> </span> </div> <?php if ($_orders && count($_orders)): ?> <div class="table-wrapper orders-history"> <table class="data table table-order-items history" id="my-orders-table"> <caption class="table-caption"><?= $block->escapeHtml(__('Orders')) ?></caption> <thead> <tr> <th scope="col" class="col date"><?= $block->escapeHtml(__('Date')) ?></th> <th scope="col" class="col id"><?= $block->escapeHtml(__('Order n°')) ?></th> <th scope="col" class="col id"><?= $block->escapeHtml(__('Internal number')) ?></th> <?= $block->getChildHtml('extra.column.header') ?> <th scope="col" class="col total"><?= $block->escapeHtml(__('Amount excl.')) ?></th> <th scope="col" class="col status"><?= $block->escapeHtml(__('Status')) ?></th> <th scope="col" class="col total"><?= $block->escapeHtml(__('Amount incl.')) ?></th> <th scope="col" class="col actions"></th> </tr> </thead> <tbody> <?php foreach ($_orders as $_order): ?> <tr> <td data-th="<?= $block->escapeHtmlAttr(__('Date')) ?>" class="col date"> <?= /* @noEscape */ $block->formatDate($_order->getCreatedAt()) ?> </td> <td data-th="<?= $block->escapeHtmlAttr(__('Order #')) ?>" class="col id"> <?= $block->escapeHtml($_order->getRealOrderId()) ?> </td> <td data-th="<?= $block->escapeHtmlAttr(__('Internal number #')) ?>" class="col id"> <?= $block->escapeHtml($_order->getData('order_number')) ?> </td> <?php $extra = $block->getChildBlock('extra.container'); ?> <?php if ($extra): ?> <?php $extra->setOrder($_order); ?> <?= $extra->getChildHtml() ?> <?php endif; ?> <td data-th="<?= $block->escapeHtmlAttr(__('Amount excl.')) ?>" class="col total"> <?= /* @noEscape */ $_order->formatPrice($_order->getSubTotal()) ?> </td> <td data-th="<?= $block->escapeHtmlAttr(__('Status')) ?>" class="col status"> <?= $block->escapeHtml($_order->getStatusLabel()) ?> </td> <td data-th="<?= $block->escapeHtmlAttr(__('Amount incl.')) ?>" class="col total"> <?= /* @noEscape */ $_order->formatPrice($_order->getGrandTotal()) ?> </td> <td data-th="<?= $block->escapeHtmlAttr(__('Actions')) ?>" class="col actions"> <a href="<?= $block->escapeUrl($block->getViewUrl($_order)) ?>" class="action view"> <span><?= $block->escapeHtml(__('Order details')) ?></span> </a> </td> </tr> <?php endforeach; ?> </tbody> </table> </div> <?php if ($block->getPagerHtml()): ?> <div class="order-products-toolbar toolbar bottom"><?= $block->getPagerHtml() ?></div> <?php endif ?> <?php else: ?> <div class="message info empty"><span><?= $block->escapeHtml(__('You have placed no orders.')) ?></span></div> <?php endif ?>