Changeset 163 for www/finance/index.php
- Timestamp:
- Feb 20, 2009, 9:53:27 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
www/finance/index.php
r157 r163 12 12 $Output = '<table><tr><td valign="top">'; 13 13 14 if(GetMemberByIP(GetRemoteAddress()) > 0) $Output .= '<a href="user_state_ip.php ">Vaše finanční operace</a> (Tato volba je také přístupná po přihlášení do systému v uživatelském menu).<br /><br /><br />';14 if(GetMemberByIP(GetRemoteAddress()) > 0) $Output .= '<a href="user_state_ip.php?old">Vaše finanční operace</a> (Tato volba je také přístupná po přihlášení do systému v uživatelském menu).<br /><br /><br />'; 15 15 16 16 $Output .= '<a href="monthly_overall.php">Měsíční přehledy</a><br />'; … … 29 29 $Output .= 'Platba za internetovou linku ('.$Finance->RealMaxSpeed.'/'.$Finance->RealMaxSpeed.' kbit/s): <strong>'.$Finance->Internet.' Kč</strong><br />'; 30 30 31 $DbResult = $this->Database->query( "SELECT COUNT(*) FROM users WHERE role=2");31 $DbResult = $this->Database->query('SELECT COUNT(*) FROM Member'); 32 32 $Row2 = $DbResult->fetch_array(); 33 33 $Output .= 'Počet účastníků: <strong>'.$Row2[0].'</strong><br />'; 34 34 35 $DbResult = $this->Database->query( "SELECT SUM(price) FROM network_devices WHERE used=1");35 $DbResult = $this->Database->query('SELECT SUM(price) FROM network_devices WHERE used=1'); 36 36 $Row4 = $DbResult->fetch_array(); 37 37 $Output .= 'Celková cena zařízení sítě: <strong>'.$Row4[0].' Kč</strong><br />'; 38 38 39 $DbResult = $this->Database->query('SELECT SUM( (SELECT COALESCE(SUM(Value), 0) FROM FinanceCashFlow WHERE Subject=users.id) + (SELECT COALESCE(SUM(-Value), 0) FROM FinanceClaimsLiabilities WHERE Subject=users.id)) as Cash FROM users WHERE role=2');39 $DbResult = $this->Database->query('SELECT SUM(Cash) as Cash FROM MemberPayment'); 40 40 $Row4 = $DbResult->fetch_array(); 41 41 $Output .= 'Celkem peněz na účtech: <strong>'.$Row4[0].' Kč</strong><br />'; 42 42 $Output .= 'Stanovená cena jedné kWh: <strong>'.$Finance->kWh.' Kč</strong><br />'; 43 43 //echo('Komunitou stanovený poplatek za správu sítě pro jednoho uživatele: <strong>'.$Sprava.' Kč</strong><br />'); 44 $DbResult = $this->Database->query("SELECT SUM(family) FROM users WHERE role=2"); 45 $Row5 = $DbResult->fetch_array(); 44 $DbResult = $this->Database->query('SELECT SUM(FamilyMemberCount) AS Family FROM Member'); 45 $Family = $DbResult->fetch_assoc(); 46 $Family = $Family['Family']; 46 47 $TotalFamily = 600; 47 $Output .= 'V připojených domácnostech celkem <strong>'.$ Row5[0].'</strong> občanů ze všech <strong>'.$TotalFamily.'</strong> ('.round($Row5[0]/ $TotalFamily * 100).' %)<br />';48 $Output .= 'V připojených domácnostech celkem <strong>'.$Family.'</strong> občanů ze všech <strong>'.$TotalFamily.'</strong> ('.round($Family / $TotalFamily * 100).' %)<br />'; 48 49 $Output .= 'IČ: <strong>75904535</strong><br />'. 49 50 'DIČ: <strong>CZ8303255884</strong><br />'. … … 79 80 $Output .= '<tr><td>Převod do dalšího měsíce</td><td align="right">'.($TotalGain - $TotalExpense).'</td></tr>'; 80 81 $Output .= '</table><br />'; 81 $DbResult = $this->Database->select('users', 'cash', 'id='.$Finance->UserIdNetwork);82 /* $DbResult = $this->Database->select('', 'cash', 'id='.$Finance->UserIdNetwork); 82 83 $Row = $DbResult->fetch_array(); 83 84 $NetworkCash = $Row['cash']; 84 $Output .= 'Stav účtu sítě: '.$NetworkCash.' Kč<br /><a href="clenove.php?show=user&id='.$Finance->UserIdNetwork.'">Výpis účtu</a><br />'; 85 $Output .= 'Stav účtu sítě: '.$NetworkCash.' Kč<br /><a href="clenove.php?show=user&id='.$Finance->UserIdNetwork.'">Výpis účtu</a><br />';*/ 85 86 86 87 $Output .= '</td></tr></table>';
Note:
See TracChangeset
for help on using the changeset viewer.