IDEMPIERE-6251:clean status bar error info (#2468)
Co-authored-by: hieplq <hieplq@debian.vn>
This commit is contained in:
parent
32d7e2e96a
commit
776b135a4a
|
|
@ -4351,6 +4351,12 @@ public abstract class AbstractADWindowContent extends AbstractUIPart implements
|
||||||
* @param pi
|
* @param pi
|
||||||
*/
|
*/
|
||||||
private void onModalClose(ProcessInfo pi) {
|
private void onModalClose(ProcessInfo pi) {
|
||||||
|
if (getActiveGridTab().isQuickForm){
|
||||||
|
statusBarQF.setStatusLine(null);
|
||||||
|
}else{
|
||||||
|
statusBar.setStatusLine(null);
|
||||||
|
}
|
||||||
|
|
||||||
boolean notPrint = pi != null
|
boolean notPrint = pi != null
|
||||||
&& pi.getAD_Process_ID() != adTabbox.getSelectedGridTab().getAD_Process_ID()
|
&& pi.getAD_Process_ID() != adTabbox.getSelectedGridTab().getAD_Process_ID()
|
||||||
&& pi.isReportingProcess() == false;
|
&& pi.isReportingProcess() == false;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue