Changeset 167 for www/finance/spotreba.php
- Timestamp:
- Mar 24, 2009, 11:44:03 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
www/finance/spotreba.php
r157 r167 9 9 function Show() 10 10 { 11 global $kWh;11 $Finance = $this->System->Modules['Finance']; 12 12 13 13 // Seznam segmentů a zařízení 14 $Output = 'Spotřeba zařízení jednotlivých segmentů:< br /><table border="1" cellspacing="0" cellpadding="3"><tr><th>Jméno segmentu</th><th>Spotřeba [W]</th><th>Cena [Kč/měsíc]</th></tr>';14 $Output = 'Spotřeba zařízení jednotlivých segmentů:<div align="center"><table class="WideTable"><tr><th>Jméno segmentu</th><th>Spotřeba [W]</th><th>Cena [Kč/měsíc]</th></tr>'; 15 15 $CelkovaSpotreba = 0; 16 16 $DbResult = $this->Database->query("SELECT * FROM network_segments"); … … 23 23 } 24 24 $Output .= '<tr style="font-weight: Bold;"><td><strong>Celkem</strong></td><td align="right">'.$CelkovaSpotreba.'</td><td align="right">'.$this->System->Modules['Finance']->W2Kc($CelkovaSpotreba).'</td></tr>'; 25 $Output .= '</table>< br />';26 $Output .= 'Dohodnutá cena za jednu kWh: <strong>'.$ kWh.' Kč</strong><br />';25 $Output .= '</table></div>'; 26 $Output .= 'Dohodnutá cena za jednu kWh: <strong>'.$Finance->kWh.' Kč</strong><br />'; 27 27 return($Output); 28 28 }
Note:
See TracChangeset
for help on using the changeset viewer.