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.

46 lines
1.6 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!--
  3. Copyright 2018 Rémy Taymans <remytaymans@gmail.com>
  4. License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
  5. -->
  6. <odoo>
  7. <!-- Add pos.order total amount -->
  8. <template
  9. id="total_pos_order_amount"
  10. name="Portal total POS order amount"
  11. priority="40"
  12. inherit_id="portal.portal_layout">
  13. <xpath expr="//div[hasclass('o_portal_my_details')]" position="after">
  14. <div class="o_my_details_eater mt-2">
  15. <h4 class="page-header">Purchases</h4>
  16. <hr class="mt-1 mb-0"/>
  17. <p>
  18. You have purchased a total amount of
  19. <span t-esc="posorder_amount"
  20. t-esc-options='{"widget": "monetary", "display_currency": "company_currency"}'/>
  21. .
  22. </p>
  23. <table class="table table-striped">
  24. <tr>
  25. <th>
  26. Year
  27. </th>
  28. <th>
  29. Amount
  30. </th>
  31. </tr>
  32. <tr t-foreach="posorder_amount_by_year" t-as="row">
  33. <td>
  34. <t t-esc="row['year']"/>
  35. </td>
  36. <td>
  37. <t t-esc="row['amount']" t-esc-options='{"widget": "monetary", "display_currency": "company_currency"}'/>
  38. </td>
  39. </tr>
  40. </table>
  41. </div>
  42. </xpath>
  43. </template>
  44. </odoo>