Changeset 157 for www/finance/clenove.php
- Timestamp:
- Feb 18, 2009, 11:19:12 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
www/finance/clenove.php
r152 r157 1 1 <?php 2 2 include('../global.php'); 3 include('include.php');4 RecalculateTariffs(1);5 3 6 4 class FinanceUserList extends Page … … 11 9 function Show() 12 10 { 13 global $Tarify;14 15 11 $Finance = $this->System->Modules['Finance']; 12 $this->System->Modules['Finance']->RecalculateTariffs(1); 13 if($this->System->Modules['User']->CheckPermission('Finance', 'SubjectList')) 16 14 { 17 15 // Seznam členů … … 43 41 $TotalCash += $Row['Cash']; 44 42 if($Row['Cash'] < 0) $Row['Cash'] = '<span style="color: red;">'.$Row['Cash'].'</span>'; 45 $Tarif = $ Tarify[$Row['inet_tarif_now']]['name'];46 $PristiTarif = $ Tarify[$Row['inet_tarif_next']]['name'];43 $Tarif = $Finance->Tarify[$Row['inet_tarif_now']]['name']; 44 $PristiTarif = $Finance->Tarify[$Row['inet_tarif_next']]['name']; 47 45 $Output .= '<tr><td><a href="user_state.php?id='.$Row['id'].'">'.$Row['Fullname'].'</a></td>'; 48 46 //<td align="right">'.$Row['network_device'].'</td>
Note:
See TracChangeset
for help on using the changeset viewer.