IDEMPIERE-5666 - fix NPE on refreshing report (#1784)
This commit is contained in:
parent
76daedf6ad
commit
f6d89ffe26
|
@ -1393,6 +1393,8 @@ public class ZkReportViewer extends Window implements EventListener<Event>, IRep
|
||||||
Object pp = li.getValue();
|
Object pp = li.getValue();
|
||||||
if (pp == null)
|
if (pp == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
setTabOnCloseHandler();
|
||||||
//
|
//
|
||||||
MPrintFormat pf = null;
|
MPrintFormat pf = null;
|
||||||
int AD_PrintFormat_ID = Integer.valueOf(pp.toString());
|
int AD_PrintFormat_ID = Integer.valueOf(pp.toString());
|
||||||
|
|
Loading…
Reference in New Issue