netwood Posted October 28, 2016 Share Posted October 28, 2016 Sometimes WHMCS doesn't generate invoices like it should. Is there a report or way to find out how many invoices were generated for a specific month? //jonas 0 Quote Link to comment Share on other sites More sharing options...
brian! Posted October 29, 2016 Share Posted October 29, 2016 Jonas, you could run a simple SQL query to get a number for a specific month, e.g... SELECT count(*) FROM tblinvoices WHERE YEAR(tblinvoices.date) = '2016' and MONTH(tblinvoices.date) = '10' or you could modify one of the existing reports or widgets to create a count summary of invoices per month (and their type). 0 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.