[Bug #913] NullPointerException exception changing between perspectives
Check progress controller is not null at this point FEA: ItEr71S04BugFixing
This commit is contained in:
parent
295912b3c7
commit
be05e7fcec
1 changed files with 2 additions and 1 deletions
|
|
@ -429,7 +429,8 @@ public class OrderCRUDController extends GenericForwardComposer {
|
|||
if (getCurrentTab() != null) {
|
||||
// Confirm advances tab.
|
||||
if (getCurrentTab().getId().equals("tabAdvances")) {
|
||||
if (!manageOrderElementAdvancesController.save()) {
|
||||
if (manageOrderElementAdvancesController != null
|
||||
&& !manageOrderElementAdvancesController.save()) {
|
||||
resetSelectedTab();
|
||||
selectTab("tabAdvances");
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue