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.
22 lines
658 B
22 lines
658 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<report
|
|
id="report_payment_receipt"
|
|
string="Payment Receipt"
|
|
model="account.invoice"
|
|
report_type="qweb-pdf"
|
|
file="account_payment_receipt.report_payment"
|
|
name="account_payment_receipt.report_payment"
|
|
/>
|
|
|
|
<template id="report_payment">
|
|
<t t-call="report.html_container">
|
|
<t t-foreach="docs" t-as="doc">
|
|
<t t-call="account_payment_receipt.report_payment_print" t-lang="doc.partner_id.lang"/>
|
|
</t>
|
|
</t>
|
|
</template>
|
|
|
|
</data>
|
|
</odoo>
|
|
|