checkin status v1, working"

"
This commit is contained in:
José Salazar
2026-02-02 21:32:22 +09:00
parent 818fc1759a
commit b1ad6f118a
7 changed files with 83 additions and 22 deletions

View File

@@ -10,6 +10,7 @@ class ClockInAdapter {
DateTime? checkInTime,
DateTime? checkOutTime,
String? activeShiftId,
String? activeApplicationId,
}) {
final bool isCheckedIn = status == 'CHECKED_IN' || status == 'LATE'; // Assuming LATE is also checked in?
@@ -21,6 +22,7 @@ class ClockInAdapter {
checkInTime: checkInTime,
checkOutTime: checkOutTime,
activeShiftId: activeShiftId,
activeApplicationId: activeApplicationId,
);
}
}