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.

26 lines
785 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. <openerp>
  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="website_portal_v10.portal_layout">
  13. <xpath expr="//div[@class='o_my_details']" position="after">
  14. <div class="o_my_details_eater">
  15. <h3 class="page-header">Purchases</h3>
  16. <p>
  17. You have purchased a total amount of
  18. <span t-esc="posorder_amount"
  19. t-esc-options='{"widget": "monetary", "display_currency": "company_currency"}'/>.
  20. </p>
  21. </div>
  22. </xpath>
  23. </template>
  24. </openerp>