This commit is contained in:
José Salazar
2026-02-02 22:05:29 +09:00
parent 33ad8e2f17
commit 0ab6bf8470

View File

@@ -275,9 +275,11 @@ class ShiftsRepositoryImpl implements ShiftsRepositoryInterface {
final endDt = _toDateTime(sr.endTime); final endDt = _toDateTime(sr.endTime);
final createdDt = _toDateTime(sr.createdAt); final createdDt = _toDateTime(sr.createdAt);
print( print(
'FindShifts local: shiftId=${sr.shiftId} roleId=${sr.roleId} ' 'FindShifts mapped: shiftId=${sr.shiftId} '
'start=${startDt?.toIso8601String()} end=${endDt?.toIso8601String()} ' 'origStart=${sr.startTime?.toJson()} '
'shiftDate=${shiftDate?.toIso8601String()}', 'origEnd=${sr.endTime?.toJson()} '
'mappedStart=${startDt != null ? DateFormat('HH:mm').format(startDt) : ''} '
'mappedEnd=${endDt != null ? DateFormat('HH:mm').format(endDt) : ''}',
); );
mappedShifts.add( mappedShifts.add(
Shift( Shift(