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.

28 lines
959 B

  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. </div>
  24. </xpath>
  25. </template>
  26. </odoo>