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.
 
 
 
 
 

26 lines
1.2 KiB

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<!-- An action to download a document template in PDF format-->
<record id="action_download_doc" model="ir.actions.report">
<field name="name">Document Download</field>
<field name="model">document.template.request</field>
<field name="report_type">qweb-pdf</field>
<field name="report_name">enhanced_document_management.document_download</field>
<field name="report_file">enhanced_document_management.document_download</field>
</record>
<!-- Template for requested document -->
<template id="document_download">
<t t-call="web.html_container">
<t t-call="web.external_layout">
<t t-foreach="docs" t-as="o">
<img t-if='o.stamp' t-attf-src="data:image/png;base64,{{o.stamp}}"
alt="Logo" style="margin-left:75%;"/>
<t t-raw="o.template"/>
</t>
<img t-if='image' t-attf-src="data:image/png;base64,{{image}}"
alt="Logo" style="margin-left:75%;"/>
<t t-if="template" t-raw="template"/>
</t>
</t>
</template>
</odoo>