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.

39 lines
1.8 KiB

4 years ago
4 years ago
4 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <data>
  4. <template id="subscription_i18n_ch"
  5. inherit_id="easy_my_coop_website.becomecooperator"
  6. name="Removing fields">
  7. <!-- fixme instead of removing here, it should be added in easy_my_coop_be -->
  8. <xpath expr="//label[@for='iban']/.." position="replace">
  9. <div t-attf-class="form-group #{error and 'iban' in error and 'has-error' or ''}">
  10. <label class="col-md-3 col-sm-4 control-label" for="iban">
  11. Bank Account Number
  12. </label>
  13. <div class="col-md-7 col-sm-8">
  14. <input type="text" class="form-control mandatory-field"
  15. name="iban" t-attf-value="#{iban or ''}"
  16. placeholder="BE48523080767127"/>
  17. </div>
  18. </div>
  19. </xpath>
  20. </template>
  21. <template id="company_subscription_i18n_ch"
  22. inherit_id="easy_my_coop_website.becomecompanycooperator"
  23. name="Company Removing fields">
  24. <xpath expr="//label[@for='iban']/.." position="replace">
  25. <div t-attf-class="form-group #{error and 'iban' in error and 'has-error' or ''}">
  26. <label class="col-md-3 col-sm-4 control-label" for="iban">
  27. Bank Account Number
  28. </label>
  29. <div class="col-md-7 col-sm-8">
  30. <input type="text" class="form-control mandatory-field"
  31. name="iban" t-attf-value="#{iban or ''}"
  32. placeholder="BE48523080767127"/>
  33. </div>
  34. </div>
  35. </xpath>
  36. </template>
  37. </data>
  38. </odoo>