Commit f9f676bb by 王祖波

去除实时数据逻辑

parent 9084c3a6
...@@ -215,13 +215,13 @@ public class PotentialDataController { ...@@ -215,13 +215,13 @@ public class PotentialDataController {
list = result.stream().map(x -> { list = result.stream().map(x -> {
ClerkDTO clerkDTO = clerkMap.get(x.getClerkId()); ClerkDTO clerkDTO = clerkMap.get(x.getClerkId());
StoreDTO storeDTO = storeMap.get(x.getStoreId()); StoreDTO storeDTO = storeMap.get(x.getStoreId());
if (!weekMonth) { // if (!weekMonth) {
// 无归属导购 // // 无归属导购
boolean unassigned = Objects.equals(x.getClerkId(), "-1"); // boolean unassigned = Objects.equals(x.getClerkId(), "-1");
// 实时获取当前未建联数 // // 实时获取当前未建联数
Integer noConnPotCusNum = getNoConnPotCusNum(potentialResponse, enterpriseId, wxEnterpriseId, storeDTO, clerkDTO,unassigned); // Integer noConnPotCusNum = getNoConnPotCusNum(potentialResponse, enterpriseId, wxEnterpriseId, storeDTO, clerkDTO,unassigned);
x.setNoConnPotCusNum(noConnPotCusNum); // x.setNoConnPotCusNum(noConnPotCusNum);
} // }
PotentialContactDetailOverviewVO overviewVO = new PotentialContactDetailOverviewVO(); PotentialContactDetailOverviewVO overviewVO = new PotentialContactDetailOverviewVO();
overviewVO.setContact(x); overviewVO.setContact(x);
overviewVO.setStore(storeDTO); overviewVO.setStore(storeDTO);
......
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