Changeset 207 for trunk/finance
- Timestamp:
- May 4, 2009, 10:09:30 PM (16 years ago)
- Location:
- trunk/finance
- Files:
-
- 5 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
Note:
See TracChangeset
for help on using the changeset viewer.