Commit 09375e00 by 王祖波

建联时间长度判断

parent 717a8e23
...@@ -410,7 +410,7 @@ public class ContactLogServiceImpl implements ContactLogService { ...@@ -410,7 +410,7 @@ public class ContactLogServiceImpl implements ContactLogService {
ContactBizTypeEnum bizTypeEnum = ContactBizTypeEnum.fromType(bizType); ContactBizTypeEnum bizTypeEnum = ContactBizTypeEnum.fromType(bizType);
Long bizContactTime = bizTypeEnum.getEsClerkContactTime(contactTime); Long bizContactTime = bizTypeEnum.getEsClerkContactTime(contactTime);
clerkContactTimeList = clerkContactTimeList.stream().map(time -> { clerkContactTimeList = clerkContactTimeList.stream().map(time -> {
if (String.valueOf(time).length() == 16) { if (String.valueOf(time).length() == 14) {
return null; return null;
} }
if (String.valueOf(time).startsWith(bizTypeEnum.getCodePre())) { if (String.valueOf(time).startsWith(bizTypeEnum.getCodePre())) {
......
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