refund-request.phtml 1004 B

1234567891011121314151617181920212223242526272829303132
  1. <?php
  2. /**
  3. * @version 7.4
  4. */
  5. /** @var \Ppb\Db\Table\Row\Accounting $accounting */
  6. $accounting = $this->data['accounting'];
  7. ?>
  8. <p>
  9. <?php echo $this->_('A new sale transaction refund request has been made.'); ?>
  10. </p>
  11. <div>
  12. <?php echo $this->_('Transaction details:'); ?>
  13. </div>
  14. <ul>
  15. <li>
  16. <?php echo $this->_('Name:'); ?>
  17. <b><?php echo $accounting->displayName(); ?></b>
  18. </li>
  19. <li>
  20. <?php echo $this->_('Amount:'); ?>
  21. <b><?php echo $this->amount($accounting['amount'], $accounting['currency']); ?></b>
  22. </li>
  23. </ul>
  24. <div>
  25. <?php echo $this->_('Please'); ?>
  26. [ <a
  27. href="<?php echo $this->sitePath . $this->url(array('module' => 'admin', 'controller' => 'tools', 'action' => 'accounting', 'filter' => 'refund_requests'), null, false, null, false); ?>">
  28. <?php echo $this->_('click here'); ?>
  29. </a> ]
  30. <?php echo $this->_('to access the pending refund requests page. Please note that you will have to log in first.'); ?>
  31. </div>