Adding filters in core reports

Hi everyone, is it possible to add filters to a core reports in ERPNext using hooks?

You might need to add it in the custom app, but the main issue is that the filter isn’t working because the filter-related code is required, and you’ll need to override the report’s Python method for that. It would be easier to create a new report rather than spending so much time troubleshooting.

Yup, just duplicate the report and copy the code as well in a custom app. Then make the necessary changes directly to the js and py files.

Ohhhh thanks guys.