IDEMPIERE-5667 Recent Items not Refreshing when Deleting Records in Grid View (#1847)
IDEMPIERE-5667 #resolve
This commit is contained in:
parent
531aa73ea1
commit
8edf4c730f
|
@ -3126,6 +3126,7 @@ public abstract class AbstractADWindowContent extends AbstractUIPart implements
|
||||||
{
|
{
|
||||||
statusBar.setStatusLine(Msg.getMsg(Env.getCtx(), "Deleted") + ": " + count, false);
|
statusBar.setStatusLine(Msg.getMsg(Env.getCtx(), "Deleted") + ": " + count, false);
|
||||||
}
|
}
|
||||||
|
MRecentItem.publishChangedEvent(Env.getAD_User_ID(ctx));
|
||||||
}
|
}
|
||||||
if (postCallback != null)
|
if (postCallback != null)
|
||||||
postCallback.onCallback(result);
|
postCallback.onCallback(result);
|
||||||
|
@ -3173,6 +3174,7 @@ public abstract class AbstractADWindowContent extends AbstractUIPart implements
|
||||||
{
|
{
|
||||||
statusBar.setStatusLine(Msg.getMsg(Env.getCtx(), "Deleted") + ": " + count, false);
|
statusBar.setStatusLine(Msg.getMsg(Env.getCtx(), "Deleted") + ": " + count, false);
|
||||||
}
|
}
|
||||||
|
MRecentItem.publishChangedEvent(Env.getAD_User_ID(ctx));
|
||||||
}
|
}
|
||||||
if (postCallback != null)
|
if (postCallback != null)
|
||||||
postCallback.onCallback(result.getValue().equals(deleteConfirmationLogic));
|
postCallback.onCallback(result.getValue().equals(deleteConfirmationLogic));
|
||||||
|
|
Loading…
Reference in New Issue