You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
1.4 KiB

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <templates id="template">
  3. <t t-extend="ReceiptScreenWidget">
  4. <t t-jquery='.pos-receipt-container' t-operation='before'>
  5. <div class="button send">
  6. <i class='fa fa-envelope'></i> Send Receipt By Mail
  7. </div>
  8. <div class="message-send">
  9. </div>
  10. </t>
  11. </t>
  12. <t t-extend="ActionpadWidget">
  13. <t t-jquery="t[t-if='widget.pos.get_client()']" t-operation="after">
  14. <t t-if="widget.pos.get_client()">
  15. <div class='customer-information-pay'>
  16. Balance: <span class='customer-balance' />
  17. <br /><span class='customer-delegate1' />
  18. <br /><span class='customer-delegate2' />
  19. </div>
  20. </t>
  21. </t>
  22. </t>
  23. <t t-extend="PaymentScreenWidget">
  24. <t t-jquery=".paymentmethods-container" t-operation="inner">
  25. <t t-if="widget.pos.get_client()">
  26. <div class="customer-information">
  27. <span class='customer-name' /> <br />
  28. Balance: <span class='customer-balance' /><br />
  29. <span class='customer-delegate1' /> <br />
  30. <span class='customer-delegate2' /> <br />
  31. </div>
  32. </t>
  33. </t>
  34. </t>
  35. </templates>