If I am understanding correctly you just need to display invoices based on parameters from the currently selected row of a grid?
Easiest way to do that would be by using a side panel. You would essential create a GI that shows invoices with a parameter for whatever data field you are filtering them by. Then in the customization editor you can create an action with Navigation: Side Panel selected and make sure it is pulling the necessary parameters. You will need to make sure that SyncPosition is enabled on the grid though(this makes sure the grid syncs the selected row back to the server).
You may run into issues trying to pull the parameters from the grid but an easy workaround for that would be to sync the currently selected row parameter to a hidden field in the main filter DAC.
Here’s a link that covers the topic: https://www.calszone.com/2020/08/acumatica-2020-r1-feature-of-the-day-add-side-panels-to-data-screens-to-speed-data-entry/
The other option would be to create another grid and view that returns invoices based on the current value of the first grid. You would need to set SyncPosition to true on the first grid and have an autocallback setup to refresh the second grid when the first one changes.