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.

34 lines
1.9 KiB

3 years ago
3 years ago
3 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <template id="cart" inherit_id="website_sale.cart">
  4. <xpath expr="//a[hasclass('btn', 'btn-primary', 'float-right', 'd-none', 'd-xl-inline-block')]" position="replace">
  5. <a role="button" t-if="website_sale_order and website_sale_order.website_order_line and not no_pass_payment" class="btn btn-primary float-right d-none d-xl-inline-block" href="/shop/checkout?express=1">
  6. <span class="">Process Checkout</span>
  7. <span class="fa fa-chevron-right" />
  8. </a>
  9. </xpath>
  10. <xpath expr="//a[hasclass('btn', 'btn-primary', 'float-right')]" position="replace">
  11. <a role="button" t-if="website_sale_order and website_sale_order.website_order_line and not no_pass_payment" class="btn btn-primary float-right" href="/shop/checkout?express=1">
  12. <span class="">Process Checkout</span>
  13. <span class="fa fa-chevron-right" />
  14. </a>
  15. </xpath>
  16. <xpath expr="//div[hasclass('mt8', 'mb8', 'alert', 'alert-info')]" position="before">
  17. <div t-if="no_pass_payment" class="alert alert-danger" role="alert">
  18. <span>
  19. Votre pannier doit être supérieur ou égal à <t t-esc="amount_limit"/> euros pour valider votre commande.
  20. </span>
  21. </div>
  22. </xpath>
  23. </template>
  24. <template id="short_cart_summary" inherit_id="website_sale.short_cart_summary">
  25. <xpath expr="//a[hasclass('btn', 'btn-secondary', 'float-right', 'd-none', 'd-xl-inline-block')]" position="replace">
  26. <a role="button" t-if="website_sale_order and website_sale_order.website_order_line and not no_pass_payment" class="btn btn-secondary float-right d-none d-xl-inline-block" href="/shop/checkout?express=1">
  27. <span>Process Checkout</span>
  28. </a>
  29. </xpath>
  30. </template>
  31. </odoo>