ODOO でaccount.invoiceモデルのqweb レポートを作成しました。
問題:
私の場合のように、module_name.report_nameという名前のpdfでレポートをダウンロードしますが、
"custom_reports_ept.report_export_invoice" .
私がしたいのは、ダウンロード可能なpdf名を「請求書のエクスポート」または「請求書VDG290-15-16」(VDG290-15-16は請求書番号)に設定することです。
どうすればこれを行うことができますか?
これが私のxmlコードです。
<report
string="Export Invoice"
id="account.invoice_export"
model="account.invoice"
report_type="qweb-pdf"
name="custom_reports_ept.report_export_invoice"
file="custom_reports_ept.report_export_invoice"
/>
これがqwebテンプレートです。
<template id="report_export_invoice">
<t t-call="report.html_container">
<t t-foreach="docs" t-as="o">
<div class="page">
<div class="oe_structure"/>
<!-- report body -->
</div>
</t>
</t>
</template>