From 16939c351e3ad2588f1c9974648d0e02074a1ba5 Mon Sep 17 00:00:00 2001 From: Kurisu Date: Sat, 22 Jan 2022 17:10:09 +0800 Subject: [PATCH] :sparkles: 逾期保险自动生成下一年的保险 --- fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/CommonService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/CommonService.java b/fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/CommonService.java index c8dec53..04979cf 100644 --- a/fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/CommonService.java +++ b/fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/CommonService.java @@ -159,8 +159,8 @@ public class CommonService { shopName = shopNameArr[i % 3]; } CustomerCluePool customerCluePool = new CustomerCluePool(); - List dtoList = userService.getUserByRole(customer.getShopId(), RoleCode.XBGJ); - BV.isNotEmpty(dtoList, "门店[{" + shopId + "}]没有续保跟进人员"); + List dtoList = userService.getUserByRole(shopId, RoleCode.XBGJ); + BV.isNotEmpty(dtoList, "门店[" + shopId + "]没有续保跟进人员"); Collections.shuffle(dtoList); PostUserDTO userDTO = dtoList.get(0); BeanUtils.copyProperties(pool, customerCluePool); -- libgit2 0.22.2