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.

14 lines
634 B

3 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <template id="product" inherit_id="website_sale.product">
  4. <xpath expr="//a[@id='add_to_cart']" position="after">
  5. <t t-foreach="product.return_product_ids" t-as="return_product">
  6. <div class="mt16 ">
  7. <input checked="1" type="radio" t-att-id="return_product.id" name="consignes" t-att-value="return_product.id"/>
  8. <label t-att-for="return_product.name"><span t-att-title="return_product.name" t-field="return_product.name" style="display: block;" /></label>
  9. </div>
  10. </t>
  11. </xpath>
  12. </template>
  13. </odoo>