onSave(false) doesn't auto refresh GridField value after save hence should always call onSave(true) unless it is follow by a refresh action.
Link to SF Tracker: http://sourceforge.net/support/tracker.php?aid=2979823
This commit is contained in:
parent
7e9652edc6
commit
900f6b3677
|
@ -795,7 +795,7 @@ public abstract class AbstractADWindowPanel extends AbstractUIPart implements To
|
||||||
|
|
||||||
if (gridWindow.isTransaction())
|
if (gridWindow.isTransaction())
|
||||||
{
|
{
|
||||||
if (curTab.needSave(true, true) && !onSave(false))
|
if (curTab.needSave(true, true) && !onSave(true))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
WOnlyCurrentDays ocd = new WOnlyCurrentDays();
|
WOnlyCurrentDays ocd = new WOnlyCurrentDays();
|
||||||
|
@ -1308,7 +1308,7 @@ public abstract class AbstractADWindowPanel extends AbstractUIPart implements To
|
||||||
{ // do we have real change
|
{ // do we have real change
|
||||||
if (curTab.needSave(true, true))
|
if (curTab.needSave(true, true))
|
||||||
{
|
{
|
||||||
if (!onSave(false))
|
if (!onSave(true))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
@ -1360,7 +1360,8 @@ public abstract class AbstractADWindowPanel extends AbstractUIPart implements To
|
||||||
if (curTab == null)
|
if (curTab == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
onSave(false);
|
if (!onSave(true))
|
||||||
|
return;
|
||||||
|
|
||||||
// Gets Fields from AD_Field_v
|
// Gets Fields from AD_Field_v
|
||||||
GridField[] findFields = GridField.createFields(ctx, curTab.getWindowNo(), 0,curTab.getAD_Tab_ID());
|
GridField[] findFields = GridField.createFields(ctx, curTab.getWindowNo(), 0,curTab.getAD_Tab_ID());
|
||||||
|
@ -1640,7 +1641,7 @@ public abstract class AbstractADWindowPanel extends AbstractUIPart implements To
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!onSave(false))
|
if (!onSave(true))
|
||||||
return;
|
return;
|
||||||
//
|
//
|
||||||
int table_ID = curTab.getAD_Table_ID();
|
int table_ID = curTab.getAD_Table_ID();
|
||||||
|
@ -1669,7 +1670,7 @@ public abstract class AbstractADWindowPanel extends AbstractUIPart implements To
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!onSave(false))
|
if (!onSave(true))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
// Query
|
// Query
|
||||||
|
|
Loading…
Reference in New Issue