Changeset 882 for trunk/Modules/Finance/Manage.php
- Timestamp:
- Sep 8, 2020, 5:00:04 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/Finance/Manage.php
r874 r882 291 291 $DateParts = explode('-', $Overall['Date']); 292 292 $MonthLast = $DateParts[1]; 293 $YearLast = $DateParts[0]; 293 294 $MonthCurrent = date('m') + 0; 295 $YearCurrent = date('Y') + 0; 294 296 295 297 $Output .= $Finance->RecalculateMemberPayment(); … … 311 313 // Zkontrolovat odečtení měsíčního poplatku 312 314 $Output .= 'Kontrola odečtení poplatků: Poslední měsíc-'.$MonthLast.' Aktuální měsíc-'.$MonthCurrent."\n"; 313 if ( $MonthCurrent != $MonthLast)315 if (($MonthCurrent != $MonthLast) or ($YearCurrent != $YearLast)) 314 316 { 315 317 $Output .= 'Odečítám pravidelný poplatek...'."\n";
Note:
See TracChangeset
for help on using the changeset viewer.