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