purchaseorder.phtml 513 B

12345678910111213141516
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * @var $block \Magento\OfflinePayments\Block\Info\Purchaseorder
  8. */
  9. ?>
  10. <div class="order-payment-method-name"><?= $block->escapeHtml($block->getMethod()->getTitle()) ?></div>
  11. <table class="data-table admin__table-secondary">
  12. <tr>
  13. <th><?= $block->escapeHtml(__('Purchase Order Number')) ?>:</th>
  14. <td><?= $block->escapeHtml($block->getInfo()->getPoNumber()) ?></td>
  15. </tr>
  16. </table>