- Timestamp:
- May 4, 2009, 10:09:30 PM (16 years ago)
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/finance/clenove.php
r204 r207 10 10 { 11 11 $Finance = $this->System->Modules['Finance']; 12 $this->System->Modules['Finance']-> RecalculateTariffs(1);12 $this->System->Modules['Finance']->LoadTariffs(1); 13 13 if(!$this->System->Modules['User']->CheckPermission('Finance', 'SubjectList')) return('Nemáte oprávnění'); 14 14 -
trunk/finance/finance.php
r204 r207 121 121 $this->TotalPaid = $Row['MonthlyTotal']; 122 122 123 $this->RecalculateTariffs($Period);124 123 $this->LoadTariffs($Period); 125 124 } … … 181 180 } 182 181 $this->System->Modules['Log']->NewRecord('Finance', 'RecalculateMemberPayment'); 182 $this->RecalculateTariffs(1); 183 $this->RecalculateTariffs(0); 183 184 return($Output); 184 185 } -
trunk/finance/manage.php
r205 r207 475 475 476 476 $Output .= $Finance->RecalculateSegmentParameters(); 477 $Output .= $Finance-> RecalculateTariffs();477 $Output .= $Finance->LoadTariffs(); 478 478 //$InvoiceGenerator->CustomGenerate(); 479 479 $Output .= $Finance->RecalculateMemberPayment(); … … 560 560 } 561 561 562 $Output .= $Finance->RecalculateTariffs();563 562 $Finance->RecalculateMemberPayment(); 564 563 //CreateMonthlyOverallBill(); -
trunk/finance/user_state.php
r205 r207 11 11 { 12 12 $Finance = &$this->System->Modules['Finance']; 13 $this->System->Modules['Finance']-> RecalculateTariffs(1);13 $this->System->Modules['Finance']->LoadTariffs(1); 14 14 15 15 if(array_key_exists('old', $_GET)) -
trunk/finance/zivnost.php
r182 r207 77 77 { 78 78 if(!$this->System->Modules['User']->CheckPermission('Finance', 'TradingStatus')) return('Nemáte oprávnění'); 79 $this->System->Modules['Finance']-> RecalculateTariffs(1);79 $this->System->Modules['Finance']->LoadTariffs(1); 80 80 //TransformFinance(); 81 81 -
trunk/webcam/webcam_refresh.php
r41 r207 7 7 if((time() - $Config['Web']['WebcamRefresh']) >= $ModifyTime) 8 8 { 9 $Output = shell_exec('wget "http://kamera-stred/Webcam.jpg?MobilePass='.$Config['Web']['WebcamPassword'].'&V=2&Q=2&B=2&U=0" -O webcam_cache.jpg -T 2');9 $Output = shell_exec('wget "http://kamera-stred/Webcam.jpg?MobilePass='.$Config['Web']['WebcamPassword'].'&V=2&Q=2&B=2&U=0" -O webcam_cache.jpg -T 4'); 10 10 if((strpos($Output, 'failed') === false) and (strpos($Output, 'error') === false)) 11 11 shell_exec('mv -f webcam_cache.jpg webcam.jpg');
Note:
See TracChangeset
for help on using the changeset viewer.