Prevent getHoursAdvanceEndDate() to call calculateLimitDate(Integer) for TaskGroups.
That call made the system load all the DayAssignments for children tasks. FEA: ItEr61S03RFPerformanceCompanyView
This commit is contained in:
parent
6c61f36d28
commit
0e3788975f
1 changed files with 4 additions and 1 deletions
|
|
@ -307,7 +307,10 @@ public class TaskElementAdapter implements ITaskElementAdapter {
|
|||
.getTotalChargedHours();
|
||||
}
|
||||
|
||||
LocalDate date = calculateLimitDate(assignedHours);
|
||||
LocalDate date = null;
|
||||
if(!(taskElement instanceof TaskGroup)) {
|
||||
date = calculateLimitDate(assignedHours);
|
||||
}
|
||||
if (date == null) {
|
||||
Integer hours = 0;
|
||||
if (orderElement != null) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue