Commit 16939c351e3ad2588f1c9974648d0e02074a1ba5

Authored by 张志伟
1 parent 4c88bac8

:sparkles: 逾期保险自动生成下一年的保险

fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/CommonService.java
... ... @@ -159,8 +159,8 @@ public class CommonService {
159 159 shopName = shopNameArr[i % 3];
160 160 }
161 161 CustomerCluePool customerCluePool = new CustomerCluePool();
162   - List<PostUserDTO> dtoList = userService.getUserByRole(customer.getShopId(), RoleCode.XBGJ);
163   - BV.isNotEmpty(dtoList, "门店[{" + shopId + "}]没有续保跟进人员");
  162 + List<PostUserDTO> dtoList = userService.getUserByRole(shopId, RoleCode.XBGJ);
  163 + BV.isNotEmpty(dtoList, "门店[" + shopId + "]没有续保跟进人员");
164 164 Collections.shuffle(dtoList);
165 165 PostUserDTO userDTO = dtoList.get(0);
166 166 BeanUtils.copyProperties(pool, customerCluePool);
... ...