"; } echo(""); if($_GET['opta'] == "add") { ?>
Add Bill
Description
Billing Type CDR 95th: KBps
Quota: GB
Billing Day

Optional Information

Customer Reference
Billing Reference
Notes
Bills
Add Add Bill
"); $i=1; while($bill = mysql_fetch_array($query)) { #echo("
");
   #print_r($permissions);
   #echo("
"); if(bill_permitted($bill['bill_id'])) { unset($class); $day_data = getDates($bill['bill_day']); $datefrom = $day_data['0']; $dateto = $day_data['1']; $rate_data = getRates($bill['bill_id'],$datefrom,$dateto); $rate_95th = $rate_data['rate_95th']; $dir_95th = $rate_data['dir_95th']; $total_data = $rate_data['total_data']; $rate_average = $rate_data['rate_average']; if($bill['bill_type'] == "cdr") { $type = "CDR"; $allowed = formatRates($bill['bill_cdr'] * 1000); $used = formatRates($rate_data['rate_95th'] * 1000); $percent = round(($rate_data['rate_95th'] / $bill['bill_cdr']) * 100,2); } elseif ($bill['bill_type'] == "quota") { $type = "Quota"; $allowed = formatStorage($bill['bill_gb']* 1024 * 1024 * 1024); $used = formatStorage($rate_data['total_data'] * 1024 * 1024); $percent = round(($rate_data['total_data'] / ($bill['bill_gb'] * 1024)) * 100,2); } if ($percent > 100) { $perc = "100"; } else { $perc = $percent; } if($perc > '90') { $left_background='c4323f'; $right_background='C96A73'; } elseif($perc > '75') { $left_background='bf5d5b'; $right_background='d39392'; } elseif($perc > '50') { $left_background='bf875b'; $right_background='d3ae92'; } elseif($perc > '25') { $left_background='5b93bf'; $right_background='92b7d3'; } else { $left_background='9abf5b'; $right_background='bbd392'; } if(!is_integer($i/2)) { $row_colour = $list_colour_a; } else { $row_colour = $list_colour_b; } echo(" ".$bill['bill_name']." $notes $type $allowed $used ".print_percentage_bar (350, 20, $perc, NULL, "ffffff", $left_background, $percent . "%", "ffffff", $right_background)." Edit Edit "); $i++; } ### PERMITTED } echo(""); } echo(""); ?>