신고된 질문입니다
2
답글
15189
화면
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
|
23716 | ||
|
|
1
3월 21
|
6862 | ||
|
|
0
5월 17
|
4033 | ||
|
|
0
5월 22
|
4042 | ||
|
|
1
4월 22
|
11825 |