Changeset 888 for trunk/Modules/Finance/Trade.php
- Timestamp:
- Nov 24, 2020, 10:58:56 AM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Finance/Trade.php
r887 r888 3 3 class PageFinanceTaxFiling extends Page 4 4 { 5 var$StartEvidence = 0;5 public int $StartEvidence = 0; 6 6 7 7 function __construct(System $System) … … 13 13 } 14 14 15 function GetTimePeriodBalance( $StartTime, $EndTime)15 function GetTimePeriodBalance(int $StartTime, int $EndTime): array 16 16 { 17 17 $Balance = array(); … … 73 73 } 74 74 75 function ShowAnnualBalance() 75 function ShowAnnualBalance(): string 76 76 { 77 77 $Output = '<table style="font-size: smaller;" class="WideTable">'; … … 109 109 } 110 110 111 function ShowMonthlyBalance() 111 function ShowMonthlyBalance(): string 112 112 { 113 113 $Output = '<table class="WideTable" style="font-size: smaller;">'; … … 151 151 } 152 152 153 function ShowIncomes() 153 function ShowIncomes(): string 154 154 { 155 155 $Table = array('Ne', 'Ano'); … … 190 190 } 191 191 192 function ShowExpenses() 192 function ShowExpenses(): string 193 193 { 194 194 $Table = array('Ne', 'Ano'); … … 231 231 } 232 232 233 function ShowClaims() 233 function ShowClaims(): string 234 234 { 235 235 $Table = array('Ne', 'Ano'); … … 262 262 } 263 263 264 function ShowLiabilities() 264 function ShowLiabilities(): string 265 265 { 266 266 $Table = array('Ne', 'Ano'); … … 294 294 } 295 295 296 function ShowSubjectList() 296 function ShowSubjectList(): string 297 297 { 298 298 $Output = '<strong>Seznam subjektů</strong>'; … … 327 327 } 328 328 329 function ShowSmallAssets() 329 function ShowSmallAssets(): string 330 330 { 331 331 $Output = '<strong>Drobný majetek</strong>'; … … 343 343 } 344 344 345 function ShowSubjectAccount() 345 function ShowSubjectAccount(): string 346 346 { 347 347 $Finance = &ModuleFinance::Cast($this->System->GetModule('Finance'))->Finance; … … 408 408 } 409 409 410 function ShowDefault() 410 function ShowDefault(): string 411 411 { 412 412 $Output = '<strong>Celkové přehledy</strong><br/>'; … … 486 486 } 487 487 488 function ShowFinanceYears() 488 function ShowFinanceYears(): string 489 489 { 490 490 $Output = 'Roky: '; … … 499 499 { 500 500 $TimeDue = $Time + 15 * 24 * 3600; // 15 dnů 501 502 501 } 503 502
Note:
See TracChangeset
for help on using the changeset viewer.