Commit 5e2afb8a by huluobin

# fee

parent 472d94f0
...@@ -406,11 +406,7 @@ public class CostDomain implements Serializable { ...@@ -406,11 +406,7 @@ public class CostDomain implements Serializable {
String filePath = this.getFilePath(); String filePath = this.getFilePath();
if (null != filePath && filePath.contains("&")) { if (null != filePath && filePath.contains("&")) {
String fileName = filePath.substring(filePath.lastIndexOf("&") + 1); String fileName = filePath.substring(filePath.lastIndexOf("&") + 1);
costDto.setFileName(fileName);
// 去除中文
Pattern pat = Pattern.compile(REGEX_CHINESE);
Matcher mat = pat.matcher(fileName);
costDto.setFileName(mat.replaceAll(""));
} }
// 抵个税 // 抵个税
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment