fixed bug [ 1737565 ] Standalone Jasper Report only with full path possible
http://sourceforge.net/tracker/?func=detail&atid=879332&aid=1737565&group_id=176962
This commit is contained in:
parent
5a764a02a3
commit
c83a90d110
|
@ -72,7 +72,7 @@ public class ReportStarter implements ProcessCall {
|
||||||
|
|
||||||
String reportPath = System.getProperty("org.compiere.report.path");
|
String reportPath = System.getProperty("org.compiere.report.path");
|
||||||
if (reportPath == null) {
|
if (reportPath == null) {
|
||||||
REPORT_HOME = new File(System.getProperty("ADEMPIERE_HOME") + "./reports");
|
REPORT_HOME = new File(System.getProperty("ADEMPIERE_HOME") + "/reports");
|
||||||
} else {
|
} else {
|
||||||
REPORT_HOME = new File(reportPath);
|
REPORT_HOME = new File(reportPath);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue