website_sale_digital.xml 1.1 KB

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <template id="sale_order_portal_content_inherit_website_sale_digital" name="Orders Downloads Followup" inherit_id="sale.sale_order_portal_content">
  4. <xpath expr="//section[@id='details']//td[@id='product_name']" position="inside">
  5. <t t-if="digital_attachments" t-set="attachments" t-value="digital_attachments.get(line.product_id.id)"/>
  6. <t t-if="attachments">
  7. <span class="dropdown">
  8. <button class="btn btn-sm btn-secondary dropdown-toggle" type="button" id="dropdownMenu1" data-bs-toggle="dropdown">
  9. Downloads
  10. </button>
  11. <div class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu1">
  12. <t t-foreach="attachments" t-as="a">
  13. <a role="menuitem" tabindex="-1" t-att-href="'/my/download?attachment_id=%i' % a['id']" class="dropdown-item"><t t-esc="a['name']"/></a>
  14. </t>
  15. </div>
  16. </span>
  17. </t>
  18. </xpath>
  19. </template>
  20. </odoo>