Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客户关系管理
- e-Commerce
- 会计
- 库存
- PoS
- Project
- MRP
此问题已终结
2
回复
12927
查看
Hi,
In Odoo v10 use _get_report_from_name instead report_action.
e.g:
@api.model
def render_html(self, docids, data=None):
report_obj = self.env['report']
report = report_obj._get_report_from_name('de_partner_statement.partner_ledger_pdf')
docargs = {
'doc_ids': docids,
'doc_model': report.model,
'docs': self,
'result': {...}
}
return report_obj.render('de_partner_statement.partner_ledger_pdf', docargs)
Best regards!
I have the same problem. I am using odoo 13, but when I trying this solution give this error;
report_type = self.report_type.lower().replace('-', '_') AttributeError: 'bool' object has no attribute 'lower'
相关帖文 | 回复 | 查看 | 活动 | |
---|---|---|---|---|
|
3
9月 23
|
20998 | ||
|
1
3月 21
|
4863 | ||
|
0
5月 17
|
2431 | ||
|
0
5月 22
|
2131 | ||
|
1
4月 22
|
9381 |