Skip to Content
Menu
This question has been flagged
3 Replies
2432 Views

Can it be possible to generate a webkit report by pull the datas from more than one object (i.e: from account.account and account.tax.code)? 

Avatar
Discard
Best Answer

Sukri, a webkit report (if you are using report_webkit module) works with one ORM model.  You can still access the information from other models related to the master model.  So, if your master model or the webkit report is account.invoice, then you have access to it's partner_id (which is res.partner), it's lines (which is account.invoice.line), the line's account_id (which is account.account), etc.

Now, if you really need to combine unrelated models (though I'm not sure how you're going to combine it if it is unrelated), you can still develop a database VIEW and create a model with _auto set to False.  Something like used in analytical reports (addons/account/report/account_invoice_report.py is one example).

Avatar
Discard
Author

Thanks Ivan for the tips. Really late reply from me.

Best Answer

Have you found a solution ?

Avatar
Discard