콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
3 답글
7906 화면

```

@api.multi 

 def button_export_pdf(self): 

 self.ensure_one()

 return self._export()


def _prepare_activity_statement(self): 

 self.ensure_one() 

 return 

{ 'date_start': self.date_start, 

 'date_end': self.date_end,

 'company_id': self.company_id.id,

 'partner_ids': self._context['active_ids'], 

 'show_aging_buckets': self.show_aging_buckets,

 'filter_non_due_partners': self.filter_partners_non_due,

 'account_type': self.account_type, }


def _export(self): 

 data = self._prepare_activity_statement()

 return self.env.ref( 'customer_activity_statement' '.action_print_customer_activity_statement').report_action( self, data=data)

```

Error is 

File "/home/usman/Documents/odoo12/odoo/odoo/addons/base/models/ir_actions_report.py", line 738, in _get_rendering_context
    data.update(report_model._get_report_values(docids, data=data))
AttributeError: 'report.customer_activity_statement.statement' object has no attribute '_get_report_values'

아바타
취소

are you looking for how to create a new PDF report ?

I'm working with a ticketing system and I need to print/ extract PDF to be able to have the entire case in pdf format... Whats the way to achieve this? Right now by using Crtl+p if the tickets has to many logs it gets pretty ugly. Any recommendations are very welcome. Thanks

베스트 답변

Hello Usman,

You can call any Qweb report by the following way, you can also pass parameters using context for validation or calculation for qweb side:

# Get report
report = self.env.ref('module_name.report_name')

# Set Context
ctx = self.env.context.copy()
ctx['flag'] = True

# Call report with context
pdf = report.with_context(ctx).render_qweb_pdf(ids)

# Get report file
file = base64.b64encode(pdf[0])

You can put this file to any binary field or store anywhere. Also if you want report as HTML then use render_qweb_html() and store to html field.

Hope it will helpful for you.


Thanks and regards

Haresh Kansara

아바타
취소
관련 게시물 답글 화면 활동
3
12월 23
19986
6
3월 16
26113
1
3월 15
8632
2
1월 20
15885
0
1월 17
11399