Odoo 16 ir.actions.report qweb-pdf pass data via POST method

31 views Asked by At

i have an issue with qweb-pdf report. i always get "Request-URI Too Long" error when data are too big. is there a way to switch to POST method instead of GET.

i dont know how to configure the report to pass data with POST instead of GET

im calling the report with

report = self.env.ref('XXXXXXXXX').report_action(self, data)
return report

i tried it with report_action(self, data, config={'http_method': 'POST'}) as well, but i didnt work

thx for any answer

0

There are 0 answers