Changeset 524 for trunk/Modules/Finance
- Timestamp:
- Apr 20, 2013, 8:51:15 PM (12 years ago)
- Location:
- trunk/Modules/Finance
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Finance/Customers.php
r521 r524 11 11 $Finance = $this->System->Modules['Finance']; 12 12 $this->System->Modules['Finance']->LoadTariffs(); 13 if(!$this->System-> Modules['User']->CheckPermission('Finance', 'SubjectList')) return('Nemáte oprávnění');13 if(!$this->System->User->CheckPermission('Finance', 'SubjectList')) return('Nemáte oprávnění'); 14 14 15 15 $Output = 'Seznam účastníků:<br/>'; -
trunk/Modules/Finance/Finance.php
r521 r524 37 37 function Start() 38 38 { 39 global $Config; 40 39 41 parent::Start(); 40 42 $this->System->RegisterPage('finance', 'PageFinance'); … … 48 50 $this->System->RegisterPage(array('finance', 'import'), 'PageFinanceImportPayment'); 49 51 $this->System->RegisterPage(array('finance', 'zivnost'), 'PageFinanceTaxFiling'); 52 53 $this->System->AddModule(new Bill($this->System)); 54 $this->System->AddModule(new Finance($this->System)); 55 $this->System->Modules['Finance']->MainSubject = $Config['Finance']['MainSubjectId']; 56 $this->System->Modules['Finance']->DirectoryId = $Config['Finance']['DirectoryId']; 57 $this->System->Modules['Finance']->LoadMonthParameters(0); 50 58 } 51 59 -
trunk/Modules/Finance/Import.php
r523 r524 9 9 function Show() 10 10 { 11 if(!$this->System-> Modules['User']->CheckPermission('Finance', 'SubjectList')) return('Nemáte oprávnění');11 if(!$this->System->User->CheckPermission('Finance', 'SubjectList')) return('Nemáte oprávnění'); 12 12 if(array_key_exists('Operation', $_GET)) 13 13 { -
trunk/Modules/Finance/Manage.php
r521 r524 9 9 function Show() 10 10 { 11 if(!$this->System-> Modules['User']->CheckPermission('Finance', 'Manage'))11 if(!$this->System->User->CheckPermission('Finance', 'Manage')) 12 12 return('Nemáte oprávnění'); 13 13 … … 203 203 $Form->SaveValuesToDatabase(0); 204 204 $Output = $this->SystemMessage('Finance', 'Zařízení vloženo.'); 205 $this->System->Module s['Log']->NewRecord('Finance', 'NewDeviceInserted');205 $this->System->ModuleManager->Modules['Log']->NewRecord('Finance', 'NewDeviceInserted'); 206 206 return($Output); 207 207 } … … 223 223 $Form->SaveValuesToDatabase(0); 224 224 $Output = $this->SystemMessage('Finance', 'Záznam historie zařízení vložen.'); 225 $this->System->Module s['Log']->NewRecord('Finance', 'NewDeviceHistoryInserted');225 $this->System->ModuleManager->Modules['Log']->NewRecord('Finance', 'NewDeviceHistoryInserted'); 226 226 return($Output); 227 227 } … … 246 246 $DbRow = $DbResult->fetch_assoc(); 247 247 $Output = $this->SystemMessage('Finance', 'Platba vložena '.$DbRow['BillCode'].'.'); 248 $this->System->Module s['Log']->NewRecord('Finance', 'NewPaymentInserted');248 $this->System->ModuleManager->Modules['Log']->NewRecord('Finance', 'NewPaymentInserted'); 249 249 return($Output); 250 250 } … … 272 272 $DbRow = $DbResult->fetch_assoc(); 273 273 $Output = $this->SystemMessage('Finance', 'Faktura vložena '.$DbRow['BillCode'].'.'); 274 $this->System->Module s['Log']->NewRecord('Finance', 'NewInvoiceInserted');274 $this->System->ModuleManager->Modules['Log']->NewRecord('Finance', 'NewInvoiceInserted'); 275 275 return($Output); 276 276 } … … 308 308 function ShowMonthlyPayment() 309 309 { 310 if(!$this->System-> Modules['User']->CheckPermission('Finance', 'Manage')) return('Nemáte oprávnění');310 if(!$this->System->User->CheckPermission('Finance', 'Manage')) return('Nemáte oprávnění'); 311 311 $SQL = 'SELECT Member.*, MemberPayment.MonthlyTotal AS Monthly, '. 312 312 'MemberPayment.Cash AS Cash, '. … … 450 450 function ProcessMonthlyPayment() 451 451 { 452 if(!$this->System-> Modules['User']->CheckPermission('Finance', 'Manage')) return('Nemáte oprávnění');452 if(!$this->System->User->CheckPermission('Finance', 'Manage')) return('Nemáte oprávnění'); 453 453 $Output = ''; 454 454 -
trunk/Modules/Finance/Overview.php
r521 r524 15 15 $Output .= '<a href="'.$this->System->Link('/finance/sluzby/').'">Přehled nabízených služeb</a><br />'; 16 16 $Output .= '<a href="'.$this->System->Link('/finance/zarizeni/').'">Výpis zařízení</a><br />'; 17 if($this->System-> Modules['User']->CheckPermission('Finance', 'SubjectList'))17 if($this->System->User->CheckPermission('Finance', 'SubjectList')) 18 18 $Output .= '<a href="'.$this->System->Link('/finance/zakaznici/').'">Seznam zákazníků</a><br />'; 19 19 $Output .= '<a href="'.$this->System->Link('/finance/spotreba/').'">Spotřeba energie</a><br />'; -
trunk/Modules/Finance/UserState.php
r521 r524 14 14 if(array_key_exists('Subject', $_GET)) 15 15 { 16 if(!$this->System-> Modules['User']->CheckPermission('Finance', 'Manage')) return('Nemáte oprávnění');16 if(!$this->System->User->CheckPermission('Finance', 'Manage')) return('Nemáte oprávnění'); 17 17 $DbResult = $this->Database->query('SELECT * FROM Subject WHERE Id='.$_GET['Subject']); 18 18 $Subject = $DbResult->fetch_assoc(); 19 19 } else 20 20 { 21 if(!$this->System-> Modules['User']->CheckPermission('Finance', 'DisplaySubjectState')) return('Nemáte oprávnění');22 $UserId = $this->System-> Modules['User']->User['Id'];21 if(!$this->System->User->CheckPermission('Finance', 'DisplaySubjectState')) return('Nemáte oprávnění'); 22 $UserId = $this->System->User->User['Id']; 23 23 $DbResult = $this->Database->query('SELECT Customer FROM UserCustomerRel WHERE User='.$UserId.' LIMIT 1'); 24 24 if($DbResult->num_rows > 0) -
trunk/Modules/Finance/Zivnost.php
r521 r524 55 55 function Show() 56 56 { 57 if(!$this->System-> Modules['User']->CheckPermission('Finance', 'TradingStatus')) return('Nemáte oprávnění');57 if(!$this->System->User->CheckPermission('Finance', 'TradingStatus')) return('Nemáte oprávnění'); 58 58 $this->System->Modules['Finance']->LoadTariffs(1); 59 59 //TransformFinance();
Note:
See TracChangeset
for help on using the changeset viewer.