IDEMPIERE-1400 net.sf.jasperreports.engine.JRRuntimeException: Unable to read virtualized data
This commit is contained in:
parent
cd1722bd6b
commit
2a526e9d1b
|
@ -125,8 +125,6 @@ public class ReportStarter implements ProcessCall, ClientProcess
|
||||||
private static CLogger log = CLogger.getCLogger(ReportStarter.class);
|
private static CLogger log = CLogger.getCLogger(ReportStarter.class);
|
||||||
private static File REPORT_HOME = null;
|
private static File REPORT_HOME = null;
|
||||||
|
|
||||||
private static JasperPrint jasperPrint;
|
|
||||||
|
|
||||||
static {
|
static {
|
||||||
String reportPath = System.getProperty("org.compiere.report.path");
|
String reportPath = System.getProperty("org.compiere.report.path");
|
||||||
if (reportPath == null) {
|
if (reportPath == null) {
|
||||||
|
@ -749,9 +747,6 @@ public class ReportStarter implements ProcessCall, ClientProcess
|
||||||
} catch (SQLException e) {
|
} catch (SQLException e) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (virtualizer != null) {
|
|
||||||
virtualizer.cleanup();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -763,11 +758,6 @@ public class ReportStarter implements ProcessCall, ClientProcess
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static JasperPrint getJasperPrint()
|
|
||||||
{
|
|
||||||
return jasperPrint;
|
|
||||||
}
|
|
||||||
|
|
||||||
private String makePrefix(String name) {
|
private String makePrefix(String name) {
|
||||||
StringBuilder prefix = new StringBuilder();
|
StringBuilder prefix = new StringBuilder();
|
||||||
char[] nameArray = name.toCharArray();
|
char[] nameArray = name.toCharArray();
|
||||||
|
|
Loading…
Reference in New Issue