Changeset 514 for trunk/finance
- Timestamp:
- Apr 8, 2013, 10:40:40 PM (12 years ago)
- Location:
- trunk/finance
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/finance/finance.php
r507 r514 33 33 { 34 34 $this->Tariffs = array(); 35 $DbResult = $this->Database->select('Service', '*', '`ReplaceId` IS NULL ORDER BY ` InternetSpeedMax`');35 $DbResult = $this->Database->select('Service', '*', '`ReplaceId` IS NULL ORDER BY `Name`, `InternetSpeedMax`'); 36 36 while($Tariff = $DbResult->fetch_array()) 37 37 { -
trunk/finance/tarify.php
r509 r514 24 24 foreach($Finance->Tariffs as $Index => $Tariff) 25 25 { 26 $Tariff['Aggregation'] = '1:'.round($Tariff['InternetSpeedMax'] / $Tariff['InternetSpeedMin']); 26 if($Tariff['InternetSpeedMin'] != 0) 27 $Tariff['Aggregation'] = '1:'.round($Tariff['InternetSpeedMax'] / $Tariff['InternetSpeedMin']); 28 else $Tariff['Aggregation'] = '1:1'; 27 29 $Output .= '<tr><td style="color: blue;">'.$Tariff['Name'].'</td><td align="center">'.round($Tariff['InternetSpeedMin'] / 1000).'</td><td align="center" style="color: blue;">'.round($Tariff['InternetSpeedMax'] / 1000).'</td><td align="center">'.$Tariff['Aggregation'].'</td><td align="center">'.$Tariff['CustomerCount'].'</td><td align="center" style="color: blue;">'.$Tariff['Price'].'</td><td align="center">'.$Tariff['CustomerCount'] * $Tariff['Price'].'</td></tr>'; 28 30 $TotalPrice = $TotalPrice + $Tariff['Price'] * $Tariff['CustomerCount'];
Note:
See TracChangeset
for help on using the changeset viewer.