Skip ke Konten
Menu
Pertanyaan ini telah diberikan tanda
4 Replies
17193 Tampilan

I'm trying to create a report that uses some computed values that it gets from a few different models and than save it in a binary field. All other models that are needed are in relation with the one from which I call the get_pdf so that I gave it the current id.

document = self.env['report'].sudo().get_pdf(self.id, 'report_my_report')

My report code

class ReportMyReport(models.AbstractModel):
    _name = 'report.hr.report_my_report'

    @api.model
    def render_html(self, docids, data=None):
        data = self.env['hr.obrazec.obracun.place'].get_report_data(docids)

        docargs = {
            'doc_ids': self.ids,
            'doc_model': self.model,
            'data': data,
        }
        return self.env['report'].render('hr_izracun_place.report_my_report', docargs)

The get_report_data is a method from an AbstractModel that computes all the data needed and returns it in  a dict?

It takes the id from my top model.

So my problem is that I don't know if this is even the correct way of doing it. And it just won't work! So can some one please help with this and I'd like to know how to use the custom data in the QWEB report.

THANKS!


Avatar
Buang
Jawaban Terbai

I hope below links are helps you.

1- http://learnopenerp.blogspot.com/2016/11/how-to-create-qweb-reports-in-openerp.html

2- http://learnopenerp.blogspot.com/2016/09/how-to-create-custom-reports-in-odoo.html

Avatar
Buang
Penulis

Nope... not even close!

Penulis Jawaban Terbai

I'm now trying to pass text values with docargs but even they don't show on the report.  

    @api.model
    def render_html(self, docids, data=None):
        docargs = {
            'doc_ids': docids,
            'doc_model': 'report.hr.report_my_report',
'data': data, 'company': 'BLABLABLA', }         return self.env['report'].render('hr_izracun_place.report_my_report', docargs)

And I try to show it in my qweb report template with

<t t-esc="company"/>

But nothing is displayed!? 

------------------------------------------------

I haven't added the reports Abstract Models correctly into the __init__.py in the get_pdf you can pass ids that you want to use in the report, because it's the first parameter in render_html method. So you can than use those ids to search for records in models that you want.





Avatar
Buang
Post Terkait Replies Tampilan Aktivitas
3
Mei 18
7126
3
Apr 22
16609
1
Apr 22
9204
2
Des 24
7295
2
Nov 24
27778