Skip to content
Snippets Groups Projects
Commit bdc979e4 authored by ArktikHunter's avatar ArktikHunter
Browse files

weeklyView working

parent e712ae4d
No related branches found
No related tags found
No related merge requests found
...@@ -226,12 +226,6 @@ public class Model { ...@@ -226,12 +226,6 @@ public class Model {
start = date.minusDays(today).toString(); start = date.minusDays(today).toString();
end = date.plusDays(6 - today).toString(); end = date.plusDays(6 - today).toString();
} }
printAllShifts();
System.out.println("getShiftsByWeek start: " + start + " end: " + end + " shifts returned " +
getShiftsByWeek(start, end).size());
System.out.println("getEmployeeShiftsByWeek id: " + selectedEmployee + " start: " + start + " end: " + end +
" shifts returned: " + getEmployeeShiftsByWeek(selectedEmployee, start, end).size());
return convertToShift(getEmployeeShiftsByWeek(selectedEmployee, start, end)); return convertToShift(getEmployeeShiftsByWeek(selectedEmployee, start, end));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment