我尝试制作一份报告,打印发票只有在其类型为' in_invoice'
我使用标准案例
<report
id="account_att"
model="account.invoice"
string="Att"
report_type="qweb-pdf"
name="account.report_att"
attachment="('Att'+(object.number or '').replace('/','')+'.pdf')"
print_report_name="'Att for '+(object._get_printed_report_name())"
/>
如何检查对象类型是否为&#39; in_invoice&#39;? 我试图添加
menu="(True if object.type == 'in_invoice' else False)"
但是我在安装时遇到错误 - 似乎菜单没有收到对象。
如何更改可见性?