Commit 10e50bb0 by 王祖波

空判断

parent da1df8a8
...@@ -260,6 +260,9 @@ public class PotentialDataAdaptor { ...@@ -260,6 +260,9 @@ public class PotentialDataAdaptor {
if (reportType == null) { if (reportType == null) {
return new Pair<>("", ""); return new Pair<>("", "");
} }
if (StringUtils.isBlank(bizDate)) {
return new Pair<>("", "");
}
String endDate = bizDate; String endDate = bizDate;
String beginDate = bizDate; String beginDate = bizDate;
if (MaterialReportType.MONTH.getCode().equals(reportType)) { if (MaterialReportType.MONTH.getCode().equals(reportType)) {
......
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