![]() 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/adminhtml/templates/order/view/tab/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /** @var \Magento\Sales\Block\Adminhtml\Order\View\Tab\History $block */ ?> <section class="admin__page-section edit-order-comments"> <ul class="note-list"> <?php foreach ($block->getFullHistory() as $_item) : ?> <li class="note-list-item"> <span class="note-list-date"><?= /* @noEscape */ $block->getItemCreatedAt($_item) ?></span> <span class="note-list-time"><?= /* @noEscape */ $block->getItemCreatedAt($_item, 'time') ?></span> <span class="note-list-status"><?= /* @noEscape */ $block->getItemTitle($_item) ?></span> <?php if ($block->isItemNotified($_item, false)) : ?> <span class="note-list-customer"> <?= $block->escapeHtml(__('Customer')) ?> <?php if ($block->isCustomerNotificationNotApplicable($_item)) : ?> <span class="note-list-customer-notapplicable"><?= $block->escapeHtml(__('Notification Not Applicable')) ?></span> <?php elseif ($block->isItemNotified($_item)) : ?> <span class="note-list-customer-notified"><?= $block->escapeHtml(__('Notified')) ?></span> <?php else : ?> <span class="note-list-customer-not-notified"><?= $block->escapeHtml(__('Not Notified')) ?></span> <?php endif; ?> </span> <?php endif; ?> </li> <?php endforeach; ?> </ul> <div class="edit-order-comments-block"> <div class="edit-order-comments-block-title"> <?= $block->escapeHtml(__('Notes for this Order')) ?> </div> <?php foreach ($block->getFullHistory() as $_item) : ?> <?php if ($_comment = $block->getItemComment($_item)) : ?> <div class="comments-block-item"> <div class="comments-block-item-comment"> <?= /* @noEscape */ $_comment ?> </div> <span class="comments-block-item-date-time"> <?= $block->escapeHtml(__('Comment added')) ?> <?= /* @noEscape */ $block->getItemCreatedAt($_item) ?> <?= /* @noEscape */ $block->getItemCreatedAt($_item, 'time') ?> </span> </div> <?php endif; ?> <?php endforeach; ?> </div> </section>