I'm trying to add a module to odoo to integrate it with other in-house custom software.
For that I would like the user to click a button in odoo that generates a pdf report. However instead of presenting it to the user for download, it should be passed to another program server side already.
I understand how to add a button on the odoo interface and how to generate reports. What I'm missing is a way to access that pdf report from inside the python code of an odoo module instead of downloading it client side.
Is there an odoo api call for that ?
Thank you.