IDEMPIERE-3104 default report engine is not good for big report / integrate patch from hiep
This commit is contained in:
parent
bbf90f6de6
commit
5352aeee35
|
@ -2084,6 +2084,10 @@ queued-job-count = 0 (class javax.print.attribute.standard.QueuedJobCount)
|
|||
}
|
||||
}
|
||||
|
||||
public void cleanTempObj (){
|
||||
m_layout = null;
|
||||
}
|
||||
|
||||
/**
|
||||
* store info of report column,
|
||||
* now just use index to create css selector, but for later maybe will construct a complex class name
|
||||
|
|
|
@ -531,6 +531,8 @@ public class ZkReportViewer extends Window implements EventListener<Event>, ITab
|
|||
reportLink.setLabel(media.getName());
|
||||
revalidate();
|
||||
} finally {
|
||||
if (m_reportEngine != null)
|
||||
m_reportEngine.cleanTempObj();
|
||||
hideBusyDialog();
|
||||
future = null;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue