ticket_template.xml 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <templates id="pos" xml:space="preserve">
  3. <t t-name="Separator">
  4. <p class="separator">------------------------------------</p>
  5. </t>
  6. <t t-name="EiruPosTicket">
  7. <div class="eiru_pos_ticket">
  8. <p class="company"><t t-esc="company" /></p>
  9. <p class="street"><t t-esc="street" /></p>
  10. <p class="country"><t t-esc="city" /> - <t t-esc="country" /></p>
  11. <t t-call="Separator" />
  12. <div class="items_wrapper">
  13. <table class="items">
  14. <thead>
  15. <tr>
  16. <th>DESCRIPCION</th>
  17. <th style="text-align: right;">PRECIO</th>
  18. <th style="text-align: right;">CANT.</th>
  19. <th style="text-align: right;">SUBTOTAL</th>
  20. </tr>
  21. </thead>
  22. <tbody>
  23. <t t-foreach="items" t-as="i">
  24. <tr>
  25. <td colspan="4"><t t-esc="i.name" /></td>
  26. </tr>
  27. <tr>
  28. <td></td>
  29. <td style="text-align: right;"><t t-esc="i.price" /></td>
  30. <td style="text-align: right;"><t t-esc="i.quantity" /></td>
  31. <td style="text-align: right;"><t t-esc="i.subtotal" /></td>
  32. </tr>
  33. </t>
  34. </tbody>
  35. </table>
  36. </div>
  37. <t t-call="Separator" />
  38. <div class="details_wrapper">
  39. <table class="details">
  40. <tbody>
  41. <tr>
  42. <td>TOTAL</td>
  43. <td style="text-align: right;"><t t-esc="total" /></td>
  44. </tr>
  45. <tr>
  46. <td>ENTREGADO</td>
  47. <td style="text-align: right;"><t t-esc="received" /></td>
  48. </tr>
  49. <tr>
  50. <td>VUELTO</td>
  51. <td style="text-align: right;"><t t-esc="residual" /></td>
  52. </tr>
  53. </tbody>
  54. </table>
  55. </div>
  56. <t t-call="Separator" />
  57. <p class="date">Cliente: <t t-esc="customer" /></p>
  58. <p class="date">Fecha: <t t-esc="date" /></p>
  59. <p class="salesman">Vendedor: <t t-esc="user" /></p>
  60. <t t-call="Separator" />
  61. <p style="font-size: 8pt; text-align: center;">GRACIAS POR SU PREFERENCIA!!!</p>
  62. </div>
  63. </t>
  64. </templates>