我无法更改pdf报告的默认名称。如果我在设置中这样做,它可以工作,但我不想这样做。我尝试在<report>
中使用report_name,但它说report_name不是报告的元素。我无法弄明白该怎么做。
答案 0 :(得分:0)
要设置qweb报告的自定义名称,您可以设置报告的附件属性。
如果是发票,则可以使用示例:
<report
id="account_invoices"
model="account.invoice"
string="Invoices"
report_type="qweb-pdf"
name="account.report_invoice"
file="account.report_invoice"
attachment_use="True"
attachment="(object.state in ('open','paid')) and ('INV'+(object.number or '').replace('/','')+'.pdf')"
/>
尝试使用模块:https://www.odoo.com/apps/modules/8.0/report_custom_filename/
希望这会有所帮助。