[Bug #1122] Fix bug
Add guard to check that the planningState is not empty. FEA: ItEr75S04BugFixing
This commit is contained in:
parent
e8d904abbe
commit
eb75cb1159
1 changed files with 3 additions and 0 deletions
|
|
@ -1526,6 +1526,9 @@ public abstract class OrderPlanningModel implements IOrderPlanningModel {
|
|||
}
|
||||
|
||||
private void updateAndRefresh() {
|
||||
if (planningState.isEmpty()) {
|
||||
return;
|
||||
}
|
||||
update();
|
||||
refresh();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue