Jump to content

Income Forecast


fullflavournz

Recommended Posts

Yes, but it will not take biennual payments into consideration and may not be acurate.

 

Save this with a different name and upload to /modules/reports/

 

<?php



if (!defined("WHMCS"))

die("This file cannot be accessed directly");



$months = array('January','February','March','April','May','June','July','August','September','October','November','December');



$reportdata["title"] = "Income Forecast";

$reportdata["description"] = "This report shows the projected income for each month of the year if all active services are renewed within that month";



$reportdata["currencyselections"] = true;



$reportdata["tableheadings"] = array("Month","Monthly","Quarterly","Semi-Annual","Annual","Biennial","Total");



$totals = array();



$result = select_query("tblhosting","",array("domainstatus"=>"Active","currency"=>$currencyid),"","","","tblclients ON tblclients.id=tblhosting.userid");

while ($data = mysql_fetch_array($result)) {

   $recurringamount = $data["amount"];

   $nextduedate = $data["nextduedate"];

   $billingcycle = $data["billingcycle"];

   $nextduedate = explode("-",$nextduedate);

   $year = $nextduedate[0];

   $month = $nextduedate[1];

   if ($billingcycle=="Monthly") {

       $recurrence = 1;

   } elseif ($billingcycle=="Quarterly") {

       $recurrence = 3;

   } elseif ($billingcycle=="Semi-Annually") {

       $recurrence = 6;

   } elseif ($billingcycle=="Annually") {

       $recurrence = 12;

   } elseif ($billingcycle=="Biennially") {

       $recurrence = 24;

   } else {

       $recurrence = 24;

   }

   $recurrences = 12/$recurrence;

   for ($i=0;$i<=12;$i+=$recurrence) {

       $new_time = mktime(0,0,0,$month+$i,1,$year);

       $totals[date("Y",$new_time)][date("m",$new_time)][$recurrence] += $recurringamount;

   }

}



for ($i=0;$i<=12;$i++) {

   $new_time = mktime(0,0,0,date("m")+$i,1,date("Y"));

   $months_array[date("Y",$new_time)][date("m",$new_time)] = "x";

}



$overallincome = 0;



foreach ($months_array AS $year=>$month) {

   foreach ($month AS $mon=>$x) {

       $monthlyincome = $totals[$year][$mon][1]+$totals[$year][$mon][3]+$totals[$year][$mon][6]+$totals[$year][$mon][12]+$totals[$year][$mon][24];

       $overallincome += $monthlyincome;

       $reportdata["tablevalues"][] = array($months[$mon-1]." ".$year,formatCurrency($totals[$year][$mon][1]),formatCurrency($totals[$year][$mon][3]),formatCurrency($totals[$year][$mon][6]),formatCurrency($totals[$year][$mon][12]),formatCurrency($totals[$year][$mon][24]),formatCurrency($monthlyincome));



   }

}



$data["footertext"] = "<p align=\"center\"><b>Total Projected Income: ".formatCurrency($overallincome)."</b></p>";



?>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated