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.
33 lines
1.3 KiB
33 lines
1.3 KiB
<odoo>
|
|
<record id="export_pdf" model="ir.actions.report">
|
|
<field name="name">Export</field>
|
|
<field name="model">ir.exports</field>
|
|
<field name="report_type">qweb-pdf</field>
|
|
<field name="report_name">export_view_pdf.export_in_pdf</field>
|
|
</record>
|
|
<template id="export_in_pdf">
|
|
<t t-call="web.html_container">
|
|
<t t-call="web.internal_layout">
|
|
<div class="page">
|
|
<table class="table table-bordered"
|
|
style="table-layout: fixed">
|
|
<t t-foreach="length" t-as="length">
|
|
<th>
|
|
<span t-out="record['header'][length]"/>
|
|
</th>
|
|
</t>
|
|
<t t-foreach="data_len" t-as="rec">
|
|
<tr>
|
|
<t t-foreach="length+1" t-as="ln">
|
|
<td>
|
|
<span t-out="record['data'][rec][ln]"/>
|
|
</td>
|
|
</t>
|
|
</tr>
|
|
</t>
|
|
</table>
|
|
</div>
|
|
</t>
|
|
</t>
|
|
</template>
|
|
</odoo>
|