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.
13 lines
439 B
13 lines
439 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Template of custom invoice -->
|
|
<template id="report_invoice_design">
|
|
<t t-call="web.html_container">
|
|
<t t-set="data_key" t-value="key"/>
|
|
<t t-set="invoice" t-value="env['account.move'].browse(id)"/>
|
|
<t t-foreach="invoice" t-as="invoice">
|
|
<t t-call="{{data_key}}"/>
|
|
</t>
|
|
</t>
|
|
</template>
|
|
</odoo>
|
|
|