choose corp tax history for admins

This commit is contained in:
2018-12-14 18:14:37 -06:00
parent 3b5d1a1b16
commit 7b37936b41
2 changed files with 7 additions and 15 deletions

View File

@@ -35,27 +35,19 @@ class StructureTaxHelper {
//Get the total taxes produced by the structure(s) over a given set of dates
$revenue = $this->GetRevenue($corpId, $refType, $start, $end);
//Calculate the total fuel block cost
$totalFuelCost = $fuelCost * $count;
var_dump($revenue);
printf("<br>");
//Calculate the total revenue minus the fuel block cost
$totalRevenue = $revenue - $totalFuelCost;
var_dump($totalRevenue);
printf("<br>");
var_dump($totalFuelCost);
printf("<br>");
var_dump($ratio);
printf("<br>");
//Check to see if the revenue is greater than zero to avoid division by zero error.
//Then calculate the tax owed which is revenue divided by ratio previously calcualted.
if($revenue > 0.00) {
if($totalRevenue > 0.00) {
$taxOwed = $totalRevenue / $ratio;
} else {
$taxOwed = 0.00;
}
//Check for negative number, and if negative, zero it out.
if($taxOwed < 0.00){
$taxOwed = 0.00;
}
//Return the amount
return $taxOwed;