I need to display custom summary reports of Billable, Non-Billable and Total hours which will be:
Employee wise, Weekly, Monthly, Project wise, Based on Date range which requires extensive use of aggregate functions. Please guide me how do I proceed to get these calculations done in grocery crud.
Is there any callback function that can be called before_display which can be used to do needful calculation and simply display data.
Total hrs = Billable hrs + Non Billable hrs, which needs to be calculated dynamically based on filter applied. Also let me know, if there is any custom library available for performing aggregate function while displaying data.
Please help. Thank You.