Changeset 282 for trunk/finance/index.php
- Timestamp:
- Jul 28, 2010, 6:07:48 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/finance/index.php
r204 r282 10 10 { 11 11 $Finance = $this->System->Modules['Finance']; 12 12 $Output = '<table><tr><td valign="top">'; 13 13 if(GetMemberByIP(GetRemoteAddress()) > 0) $Output .= '<a href="user_state.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 />'; 14 14 15 15 $Output .= '<a href="monthly_overall.php">Měsíční přehledy</a><br />'; 16 16 $Output .= '<a href="tarify.php">Tarify</a><br />'; … … 30 30 $DbResult = $this->Database->query('SELECT COUNT(*) FROM Member'); 31 31 $Row2 = $DbResult->fetch_array(); 32 $Output .= 'Počet účastníků: <strong>'.$Row2[0].'</strong><br />'; 32 $Output .= 'Počet registrovaných klientů: <strong>'.$Row2[0].'</strong><br />'; 33 34 $DbResult = $this->Database->query('SELECT COUNT(*) FROM Member WHERE (BillingPeriod > 1) AND (InternetTariffCurrentMonth > 0)'); 35 $Row2 = $DbResult->fetch_array(); 36 $Output .= 'Počet platících klientů: <strong>'.$Row2[0].'</strong><br />'; 33 37 34 $DbResult = $this->Database->query('SELECT SUM(price) FROM network_devices WHERE used=1');35 $Row4 = $DbResult->fetch_array();36 $Output .= 'Celková cena zařízení sítě: <strong>'.$Row4[0].' Kč</strong><br />';38 //$DbResult = $this->Database->query('SELECT SUM(price) FROM network_devices WHERE used=1'); 39 //$Row4 = $DbResult->fetch_array(); 40 //$Output .= 'Celková cena zařízení sítě: <strong>'.$Row4[0].' Kč</strong><br />'; 37 41 38 42 $DbResult = $this->Database->query('SELECT SUM(Cash) as Cash FROM MemberPayment'); … … 43 47 $DbResult = $this->Database->query('SELECT SUM(FamilyMemberCount) AS Family FROM Member'); 44 48 $Family = $DbResult->fetch_assoc(); 45 49 $Family = $Family['Family']; 46 50 $TotalFamily = 600; 47 51 $Output .= 'V připojených domácnostech celkem <strong>'.$Family.'</strong> občanů ze všech <strong>'.$TotalFamily.'</strong> ('.round($Family / $TotalFamily * 100).' %)<br />';
Note:
See TracChangeset
for help on using the changeset viewer.