mirror of
https://github.com/OCA/contract.git
synced 2025-02-13 17:57:24 +02:00
* [ADD] contract_digitized_signature * Correct README and add signature_name * Change to char field * Improve tests to acchieve full coverage
20 lines
674 B
XML
20 lines
674 B
XML
<?xml version="1.0" ?>
|
|
<odoo>
|
|
|
|
<template id="report_contract_document" inherit_id="contract.report_contract_document">
|
|
<xpath expr="//div[@id='invoice_info']" position="after">
|
|
<div class="row">
|
|
<div id="signature">
|
|
<p>
|
|
<strong>Customer acceptance:</strong>
|
|
<span t-if="o.customer_signature">
|
|
<img class="image" t-att-src="'data:image/png;base64,%s' % o.customer_signature" style="border:auto;"/>
|
|
</span>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</xpath>
|
|
</template>
|
|
|
|
</odoo>
|