Zeiterfassung Update
* Neues Genehmigungsverfahren für Buchhaltung eingeführt * Buchungsarten für Mitarbeiter erweitert Arztbesuch/Behörde/Weiterbildung * Neues Flag in Personaladministration für von Buchhaltung zu genehmigen
This commit is contained in:
@@ -433,9 +433,9 @@ class TimerecordingReportController extends mfBaseController
|
||||
$day = $daysgerm[date("w", $timerecording->start)];
|
||||
}
|
||||
|
||||
if ($timerecording->timerecordingCategory->approval == 1 && $timerecording->approved == 0) {
|
||||
if (($timerecording->timerecordingCategory->approval == 1 && $timerecording->approved == 0 )|| ($timerecording->timerecordingCategory->approval_fibu == 1 && $timerecording->approved == 0)) {
|
||||
$state = '<i class="fa-regular fa-clock mr-1"></i>';
|
||||
} else if ($timerecording->timerecordingCategory->approval == 1 && $timerecording->approved == 1) {
|
||||
} else if (($timerecording->timerecordingCategory->approval == 1 && $timerecording->approved == 1) || ($timerecording->timerecordingCategory->approval_fibu == 1 && $timerecording->approved == 1 )) {
|
||||
$state = '<i class="fa-regular fa-circle-check mr-1"></i>';
|
||||
}
|
||||
$edit = "";
|
||||
|
||||
Reference in New Issue
Block a user