[Bug #637] Fix bug

Don't retrieve the advance end date when the task is a milestone

FEA: ItEr60S04ValidacionEProbasFuncionaisItEr59S04
This commit is contained in:
Óscar González Fernández 2010-09-10 18:15:09 +02:00
parent e978499264
commit bd8b729396

View file

@ -459,6 +459,9 @@ public class TaskComponent extends Div implements AfterCompose {
}
public void updateCompletionIfPossible() {
if (task instanceof Milestone) {
return;
}
try {
updateCompletion();
} catch (Exception e) {