Qweb 报告 report_name 不工作

Qweb report report_name not working

我无法更改 pdf 报告的默认名称。如果我在设置中这样做,它会起作用,但我不想这样做。我尝试在我的 <report> 中使用 report_name 但它说 report_name 不是报告的元素。我不知道该怎么做。

要设置自定义的 qweb 报告名称,您可以设置报告的 attachment 属性。

发票示例可用:

    <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/

希望这对您有所帮助。