![]() 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/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ /* @var \Magento\Sales\Block\Adminhtml\Order\Totals $block */ ?> <table class="data-table admin__table-secondary order-subtotal-table"> <?php $_totals = $block->getTotals('footer') ?> <?php if ($_totals) : ?> <tfoot> <?php foreach ($block->getTotals('footer') as $_code => $_total) : ?> <?php if ($_total->getBlockName()) : ?> <?= $block->getChildHtml($_total->getBlockName(), false) ?> <?php else : ?> <tr class="col-<?= $block->escapeHtmlAttr($_code) ?>"> <td <?= /* @noEscape */ $block->getLabelProperties() ?> class="label"> <strong><?= $block->escapeHtml($_total->getLabel()) ?></strong> </td> <td <?= /* @noEscape */ $block->getValueProperties() ?>> <strong><?= /* @noEscape */ $block->formatValue($_total) ?></strong> </td> </tr> <?php endif; ?> <?php endforeach; ?> </tfoot> <?php endif; ?> <?php $_totals = $block->getTotals('')?> <?php if ($_totals) : ?> <tbody> <?php foreach ($_totals as $_code => $_total) : ?> <?php if ($_total->getBlockName()) : ?> <?= $block->getChildHtml($_total->getBlockName(), false) ?> <?php else : ?> <tr class="col-<?= $block->escapeHtmlAttr($_code) ?>"> <td <?= /* @noEscape */ $block->getLabelProperties() ?> class="label"> <?php if ($_total->getStrong()) : ?> <strong><?= $block->escapeHtml($_total->getLabel()) ?></strong> <?php else : ?> <?= $block->escapeHtml($_total->getLabel()) ?> <?php endif?> </td> <?php if ($_total->getStrong()) : ?> <td <?= /* @noEscape */ $block->getValueProperties() ?>> <strong><?= /* @noEscape */ $block->formatValue($_total) ?></strong> </td> <?php else : ?> <td <?= /* @noEscape */ $block->getValueProperties() ?>> <span><?= /* @noEscape */ $block->formatValue($_total) ?></span> </td> <?php endif; ?> </tr> <?php endif; ?> <?php endforeach; ?> </tbody> <?php endif; ?> </table>