diff --git a/com.actionsoft.apps.coe.pal.output.pr/lib/com.actionsoft.apps.coe.pal.output.pr.jar b/com.actionsoft.apps.coe.pal.output.pr/lib/com.actionsoft.apps.coe.pal.output.pr.jar index dc092b05..125d4da5 100644 Binary files a/com.actionsoft.apps.coe.pal.output.pr/lib/com.actionsoft.apps.coe.pal.output.pr.jar and b/com.actionsoft.apps.coe.pal.output.pr/lib/com.actionsoft.apps.coe.pal.output.pr.jar differ diff --git a/com.actionsoft.apps.coe.pal.output.pr/src/com/actionsoft/apps/coe/pal/output/pr/report1/Report1Gener.java b/com.actionsoft.apps.coe.pal.output.pr/src/com/actionsoft/apps/coe/pal/output/pr/report1/Report1Gener.java index cad8ef11..2fe3f976 100644 --- a/com.actionsoft.apps.coe.pal.output.pr/src/com/actionsoft/apps/coe/pal/output/pr/report1/Report1Gener.java +++ b/com.actionsoft.apps.coe.pal.output.pr/src/com/actionsoft/apps/coe/pal/output/pr/report1/Report1Gener.java @@ -379,10 +379,14 @@ public class Report1Gener { }else { isNumberAscArray.add("false"); } - - - object.put("file_name", upfileModel.getFileName()); - String link = fileName + File.separator + upfileModel.getFileName(); + String file_name; + if(upfileModel.getFileName().contains("--")){ + file_name=upfileModel.getFileName().replace("--", "-"); + }else{ + file_name=upfileModel.getFileName(); + } + object.put("file_name", file_name); + String link = fileName + File.separator + file_name; object.put("link", link); fileTable.add(object); fileIndex++;