mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
18 lines
502 B
XML
18 lines
502 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
|
|
<template id="report_pms_pro_forma">
|
|
<t t-call="web.html_container">
|
|
<t t-foreach="docs" t-as="o">
|
|
<t t-set="is_pro_forma" t-value="True" />
|
|
<t t-set="o" t-value="o.with_context(proforma=True)" />
|
|
<t
|
|
t-call="account.report_invoice_document"
|
|
t-lang="o.partner_id.lang"
|
|
/>
|
|
</t>
|
|
</t>
|
|
</template>
|
|
|
|
</odoo>
|