This question has been flagged
1 Reply
4999 Views

I implemented  some view using filters and i  wrote the  SQL query based on filters and get the results. now i want display the query result in  to PDF&Excel  format  how can i achieve this

please help me .......

( i.e: I am getting data from SQL query,how can  generate report PDF& Excel format using that data)

what are possible solutions for this...

please suggest me ....


Avatar
Discard
Best Answer

@chirra

Create a new transient model with fields that match the SQL query, set _auto = False, _table to a table value and create an SQL View named like the table using the SQL query. Make sure that your query returns an unique id field. In the init method of that model create the SQL view using the cr parameter as db cursor. Use that model for your report data

Avatar
Discard