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.

19 lines
674 B

  1. <?xml version="1.0" ?>
  2. <odoo>
  3. <template id="report_contract_document" inherit_id="contract.report_contract_document">
  4. <xpath expr="//div[@id='invoice_info']" position="after">
  5. <div class="row">
  6. <div id="signature">
  7. <p>
  8. <strong>Customer acceptance:</strong>
  9. <span t-if="o.customer_signature">
  10. <img class="image" t-att-src="'data:image/png;base64,%s' % o.customer_signature" style="border:auto;"/>
  11. </span>
  12. </p>
  13. </div>
  14. </div>
  15. </xpath>
  16. </template>
  17. </odoo>