IDEMPIERE-5667 Recent Items not Refreshing when Deleting Records in Grid View (#1847)

IDEMPIERE-5667 #resolve
This commit is contained in:
Carlos Ruiz 2023-05-20 03:54:24 +02:00 committed by GitHub
parent 531aa73ea1
commit 8edf4c730f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -3126,6 +3126,7 @@ public abstract class AbstractADWindowContent extends AbstractUIPart implements
{
statusBar.setStatusLine(Msg.getMsg(Env.getCtx(), "Deleted") + ": " + count, false);
}
MRecentItem.publishChangedEvent(Env.getAD_User_ID(ctx));
}
if (postCallback != null)
postCallback.onCallback(result);
@ -3173,6 +3174,7 @@ public abstract class AbstractADWindowContent extends AbstractUIPart implements
{
statusBar.setStatusLine(Msg.getMsg(Env.getCtx(), "Deleted") + ": " + count, false);
}
MRecentItem.publishChangedEvent(Env.getAD_User_ID(ctx));
}
if (postCallback != null)
postCallback.onCallback(result.getValue().equals(deleteConfirmationLogic));