[Bug #1156] Fix bug force loading of HoursGroup entities
FEA: ItEr75S04BugFixing
This commit is contained in:
parent
8188f3c190
commit
a3b22f2ec6
1 changed files with 7 additions and 0 deletions
|
|
@ -104,10 +104,17 @@ public class SchedulingProgressPerOrderModel implements ISchedulingProgressPerOr
|
|||
for(OrderElement each: orderElements) {
|
||||
each.getCode();
|
||||
initializeDirectAdvanceAssignments(each.getDirectAdvanceAssignments());
|
||||
initializeHoursGroups(each.getHoursGroups());
|
||||
initializeTasks(each.getTaskElements());
|
||||
}
|
||||
}
|
||||
|
||||
private void initializeHoursGroups(List<HoursGroup> hoursGroups) {
|
||||
for (HoursGroup each : hoursGroups) {
|
||||
each.getWorkingHours();
|
||||
}
|
||||
}
|
||||
|
||||
private void initializeTasks(Set<TaskElement> tasks) {
|
||||
for(TaskElement each: tasks) {
|
||||
each.getName();
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue