IRFollowStrategy.java 18.7 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431
package cn.fw.valhalla.service.bus.follow.strategy.impl;

import cn.fw.common.exception.BusinessException;
import cn.fw.valhalla.common.constant.RoleCode;
import cn.fw.valhalla.common.utils.DateUtil;
import cn.fw.valhalla.common.utils.MobileUtil;
import cn.fw.valhalla.domain.db.OriginalData;
import cn.fw.valhalla.domain.db.customer.Customer;
import cn.fw.valhalla.domain.db.follow.FollowNoticeRecord;
import cn.fw.valhalla.domain.db.follow.FollowRecord;
import cn.fw.valhalla.domain.db.follow.FollowRecordLog;
import cn.fw.valhalla.domain.db.follow.FollowTask;
import cn.fw.valhalla.domain.db.pool.CustomerCluePool;
import cn.fw.valhalla.domain.dto.CustomerDetailDto;
import cn.fw.valhalla.domain.dto.FollowAttachmentDTO;
import cn.fw.valhalla.domain.enums.*;
import cn.fw.valhalla.domain.vo.follow.*;
import cn.fw.valhalla.domain.vo.setting.SettingVO;
import cn.fw.valhalla.rpc.angel.dto.InsuranceDTO;
import cn.fw.valhalla.rpc.erp.dto.PostUserDTO;
import cn.fw.valhalla.rpc.erp.dto.UserInfoDTO;
import cn.fw.valhalla.rpc.oop.dto.ShopDTO;
import cn.fw.valhalla.service.bus.follow.strategy.AbstractFollowStrategy;
import cn.fw.valhalla.service.event.CancelApproveEvent;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Component;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.util.CollectionUtils;

import java.sql.Timestamp;
import java.time.LocalDateTime;
import java.util.*;
import java.util.stream.Collectors;

import static cn.fw.common.businessvalidator.Validator.BV;

/**
 * @author : kurisu
 * @className : IRFollowStrategy
 * @description : 续保策略
 * @date: 2020-08-17 10:48
 */
@Slf4j
@Component
@SuppressWarnings("Duplicates")
public class IRFollowStrategy extends AbstractFollowStrategy {
    @Override
    public FollowTypeEnum getFollowType() {
        return FollowTypeEnum.IR;
    }

    @Override
    public List<FollowTodoListVO> getList(Integer startIndex, Integer pageSize, Long userId) {
        List<FollowRecord> list = list(startIndex, pageSize, userId, getFollowType());
        if (CollectionUtils.isEmpty(list)) {
            return new ArrayList<>();
        }
        List<FollowTodoListVO> voList = new ArrayList<>();
        for (FollowRecord followRecord : list) {
            IRTodoListVO vo = new IRTodoListVO();
            vo.setId(followRecord.getId());
            vo.setTaskId(followRecord.getTaskId());
            vo.setCustomerId(followRecord.getCustomerId());
            vo.setDeadline(followRecord.getDeadline());
            CustomerDetailDto customerDetailDto = customerBizService.queryById(followRecord.getCustomerId());
            vo.setName(customerDetailDto.getName());
            vo.setCarImage(customerDetailDto.getCarImage());
            vo.setPlateNo(customerDetailDto.getPlateNo());
            Optional<InsuranceDTO> insuranceDTO = queryInsuInfo(followRecord.getCustomerId());
            insuranceDTO.ifPresent(ins -> {
                vo.setInsComName(ins.getInsurerName());
                vo.setInsExpiration(ins.getExpiryDate());
            });
            voList.add(vo);
        }
        return voList;
    }

    @Override
    public FollowDetailVO getDetail(Long id) {
        FollowRecord followRecord = followRecordService.getById(id);
        BV.notNull(followRecord, "跟进记录不存在");
        IRDetailVO vo = assemble(followRecord.getCustomerId());
        int count = followRecordLogService.count(Wrappers.<FollowRecordLog>lambdaQuery()
                .eq(FollowRecordLog::getRecordId, followRecord.getId())
                .eq(FollowRecordLog::getAttType, AttTypeEnum.SMART_PHONE)
        );
        vo.setHadCall(count > 0);
        vo.setId(followRecord.getId());
        vo.setTaskId(followRecord.getTaskId());
        vo.setDeadline(followRecord.getDeadline());
        return vo;
    }

    @Override
    public List<FollowRecordVO> getRecordList(Long taskId) {
        return super.getRecordList(taskId);
    }

    @Override
    public void uploadAtt(FollowAttachmentDTO dto, Long userId) {
        super.uploadAtt(dto, userId);
    }

    @Override
    @Transactional(rollbackFor = Exception.class)
    public void cancelFollowTask(Long customerId, Date time, Long groupId) {
        CustomerCluePool cluePool = customerCluePoolService.queryByRefererId(customerId, groupId, getFollowType());
        if (Objects.isNull(cluePool)) {
            return;
        }
        if (ClueStatusEnum.WAITING.equals(cluePool.getClueStatus())) {
            customerCluePoolService.removeById(cluePool.getId());
            followNoticeRecordService.removeByClueId(cluePool.getId());
        }
        if (ClueStatusEnum.ONGOING.equals(cluePool.getClueStatus())) {
            customerCluePoolService.removeById(cluePool.getId());
            followNoticeRecordService.removeByClueId(cluePool.getId());
            cancelFollowTodo(cluePool.getRefererId(), getFollowType());
        }
        //暂不考虑退单回滚的情况
    }

    @Override
    @Transactional(rollbackFor = Exception.class)
    public void settingChanged(List<SettingVO> setting, Long groupId) {
        List<CustomerCluePool> poolList = customerCluePoolService.list(Wrappers.<CustomerCluePool>lambdaQuery()
                .eq(CustomerCluePool::getClueType, getFollowType())
                .eq(CustomerCluePool::getGroupId, groupId)
                .eq(CustomerCluePool::getClueStatus, ClueStatusEnum.WAITING)
        );

        if (CollectionUtils.isEmpty(poolList)) {
            return;
        }
        this.updateClue(poolList, setting);

        SettingVO noticeSetting = setting.stream().filter(r -> SettingTypeEnum.FIRST_NOTICE_TIME.getValue().equals(r.getType())).findFirst().orElse(new SettingVO());
        this.updateNoticeRecord(poolList, noticeSetting);
    }

    @Override
    protected void updateClue(List<CustomerCluePool> list, List<SettingVO> setting) {
        for (SettingVO vo : setting) {
            final Integer unit = vo.getUnit();
            final int value = Optional.ofNullable(vo.getDetailValue()).orElse(0);
            SettingUnitEnum unitEnum = SettingUnitEnum.ofValue(unit);

            if (SettingTypeEnum.FIRST_TRIGGER_TIME.getValue().equals(vo.getType())) {
                if (Objects.nonNull(unitEnum) && value > 0) {
                    final int calendarType = getCalendarType(unitEnum);
                    list.forEach(clue -> {
                        Date originTime = clue.getAddTime();
                        Timestamp timestamp = DateUtil.getExpired(originTime, -1 * value, calendarType);
                        clue.setStartTime(timestamp);
                    });
                }
            }
        }
        customerCluePoolService.updateBatchById(list);
    }

    /**
     * 更新服务号消息记录
     *
     * @param list
     * @param vo
     */
    @Override
    protected void updateNoticeRecord(List<CustomerCluePool> list, SettingVO vo) {
        List<Long> idList = list.stream().map(CustomerCluePool::getId).collect(Collectors.toList());
        List<FollowNoticeRecord> noticeList = followNoticeRecordService.list(Wrappers.<FollowNoticeRecord>lambdaQuery()
                .eq(FollowNoticeRecord::getStatus, SendStatusEnum.NOT_SENT)
                .in(FollowNoticeRecord::getClueId, idList)
        );
        Integer unit = vo.getUnit();
        int value = Optional.ofNullable(vo.getDetailValue()).orElse(0);
        SettingUnitEnum unitEnum = SettingUnitEnum.ofValue(unit);
        if (Objects.isNull(unitEnum) || value <= 0) {
            return;
        }
        final int calendarType = getCalendarType(unitEnum);
        for (CustomerCluePool clue : list) {
            for (FollowNoticeRecord noticeRecord : noticeList) {
                if (clue.getId().equals(noticeRecord.getClueId())) {
                    Date originTime = clue.getAddTime();
                    Timestamp timestamp = DateUtil.getExpired(originTime, -1 * value, calendarType);
                    noticeRecord.setSendTime(timestamp);
                }
            }
        }
        followNoticeRecordService.updateBatchById(noticeList);
    }


    @Override
    @Transactional(rollbackFor = Exception.class)
    public boolean origin2task(OriginalData originalData) throws Exception {
        Customer customer = customerService.queryById(originalData.getCustomerId());
        BV.notNull(customer, () -> "档案不存在");
        CustomerCluePool cluePool = customerCluePoolService.queryByRefererId(customer.getId(), customer.getGroupId(), getFollowType());
        completeClue(cluePool, originalData);
        CustomerCluePool clue = this.createClueInfo(originalData, getFollowType(), customer);
        BV.notNull(clue, () -> "生成跟进线索失败");
        customerCluePoolService.save(clue);
        this.createFirstNotice(clue, originalData.getGenerateTime());
        return true;
    }

    @Override
    @Transactional(rollbackFor = Exception.class)
    public void updateTask(Long customerId) {
        //续保跟进与服务顾问无关
    }

    @Override
    @Transactional(rollbackFor = Exception.class)
    public void closeTask(FollowTask task) throws BusinessException {
        task.setState(TaskStateEnum.DEFEAT);
        task.setCloseTime(new Date());
        if (Boolean.TRUE.equals(task.getRedistribution())) {
            task.setReason(TaskDefeatTypeEnum.C);
        } else {
            task.setReason(TaskDefeatTypeEnum.C);
            final Long clueId = task.getClueId();
            CustomerCluePool cluePool = customerCluePoolService.getById(clueId);
            if (Objects.nonNull(cluePool)) {
                if (Boolean.FALSE.equals(cluePool.getRedistribution()) &&
                        LocalDateTime.now().isBefore((DateUtil.date2LocalDateTime(cluePool.getDeadline())))) {
                    task.setReason(TaskDefeatTypeEnum.B);
                    PostUserDTO followUser = customerChangeBizService.changeInsFollowUser(task);
                    if (Objects.isNull(followUser)) {
                        task.setReason(null);
                        task.setState(TaskStateEnum.ONGOING);
                        task.setCloseTime(null);
                        task.setDeadline(cluePool.getDeadline());
                        followTaskService.updateById(task);
                        return;
                    }
                    cluePool.setRedistribution(Boolean.TRUE);
                    customerCluePoolService.updateById(cluePool);
                    FollowTask followTask = createTask(cluePool, true);
                    followTask.setFollowUser(followUser.getUserId());
                    followTask.setFollowUserName(followUser.getUserName());
                    followTask.setFollowShop(task.getFollowShop());
                    followTaskService.save(followTask);
                    startTask(followTask, true);
                } else {
                    cluePool.setCloseTime(new Date());
                    cluePool.setClueStatus(ClueStatusEnum.FAILURE);
                    customerCluePoolService.updateById(cluePool);
                }
            }
        }
        followTaskService.updateById(task);
        CancelApproveEvent event = new CancelApproveEvent(task.getId(), ApproveTypeEnum.FOLLOW_DEFEAT);
        eventPublisher.publishEvent(event);
    }

    @Override
    @Transactional(rollbackFor = Exception.class)
    public void overdueProcessing(FollowRecord record) {
        super.overdueProcessing(record);
    }

    @Override
    public FollowDetailVO followPoolDetail(FollowTask task) {
        IRDetailVO vo = assemble(task.getCustomerId());
        vo.setTaskId(task.getId());
        return vo;
    }

    /**
     * 生成消息推送
     *
     * @param cluePool
     * @param time
     */
    @Override
    @Transactional(rollbackFor = Exception.class)
    protected void createFirstNotice(final CustomerCluePool cluePool, final Date time) {
        if (!cluePool.getDeadline().after(cluePool.getStartTime()) || !cluePool.getDeadline().after(DateUtil.localDateTime2Date(LocalDateTime.now()))) {
            return;
        }
        final FollowNoticeRecord record = new FollowNoticeRecord();
        record.setClueId(cluePool.getId());
        record.setCustomerId(cluePool.getRefererId());
        record.setStatus(SendStatusEnum.NOT_SENT);
        settingBizService.querySettingByType(getFollowType(), SettingTypeEnum.FIRST_NOTICE_TIME, cluePool.getGroupId())
                .ifPresent(r -> record.setSendTime(calDate(r, time, true)));
        record.setCreateTime(new Date());
        record.setFollowType(getFollowType());
        followNoticeRecordService.save(record);
    }

    @Override
    protected CustomerCluePool createClueInfo(final OriginalData originalData, FollowTypeEnum followType, Customer customer) {
        final CustomerCluePool pool = new CustomerCluePool();
        pool.setClueType(followType);
        pool.setAddTime(originalData.getGenerateTime());
        pool.setClueStatus(ClueStatusEnum.WAITING);
        pool.setRedistribution(Boolean.FALSE);
        pool.setGroupId(originalData.getGroupId());
        pool.setCreateTime(new Date());
        settingBizService.querySettingByType(followType, SettingTypeEnum.FIRST_TRIGGER_TIME, originalData.getGroupId())
                .ifPresent(r -> pool.setStartTime(calDate(r, originalData.getGenerateTime(), true)));

        pool.setDeadline(originalData.getGenerateTime());
        pool.setRefererId(customer.getId());
        pool.setFrameNo(customer.getFrameNo());
        pool.setPlateNo(customer.getPlateNo());

        ShopDTO shop = oopService.shop(customer.getShopId());
        if (Objects.nonNull(shop)) {
            pool.setOriginalShopName(shop.getShortName());
        }
        pool.setOriginalShopId(customer.getShopId());
        List<PostUserDTO> userByRole = userService.getUserByRole(customer.getShopId(), RoleCode.XBGJ);
        BV.isFalse(CollectionUtils.isEmpty(userByRole), () -> "该门店没有续保跟进人员");
        Collections.shuffle(userByRole);
        PostUserDTO userDTO = userByRole.get(0);
        pool.setOriginalUserId(userDTO.getUserId());
        pool.setOriginalUserName(userDTO.getUserName());
        if (shop.getId().equals(customer.getShopId())) {
            Optional<PostUserDTO> dto = userByRole.stream().filter(u -> u.getUserId().equals(customer.getAdviserId())).findFirst();
            dto.ifPresent(d -> {
                pool.setOriginalUserId(d.getUserId());
                pool.setOriginalUserName(d.getUserName());
            });
        }
        return pool;
    }

    @Transactional(rollbackFor = Exception.class)
    @Override
    protected void completeClue(CustomerCluePool cluePool, OriginalData originalData) {
        if (Objects.isNull(cluePool)) {
            return;
        }
        if (ClueStatusEnum.COMPLETE.equals(cluePool.getClueStatus()) || ClueStatusEnum.FAILURE.equals(cluePool.getClueStatus())) {
            return;
        }
        if (ClueStatusEnum.WAITING.equals(cluePool.getClueStatus())) {
            customerCluePoolService.removeById(cluePool.getId());
            return;
        }
        LocalDateTime deadline = DateUtil.date2LocalDateTime(cluePool.getDeadline());
        if (deadline.isAfter(DateUtil.date2LocalDateTime(DateUtil.getExpiredYear(originalData.getGenerateTime(), -1)))) {
            if (cluePool.getOriginalShopId().equals(originalData.getShopId())) {
                cluePool.setFinishUserId(cluePool.getOriginalUserId());
                cluePool.setFinishUserName(cluePool.getOriginalUserName());
                cluePool.setFinishShopId(cluePool.getOriginalShopId());
                cluePool.setFinishShopName(cluePool.getOriginalShopName());
            } else {
                UserInfoDTO user = userService.user(originalData.getUserId());
                cluePool.setFinishUserId(originalData.getUserId());
                if (Objects.nonNull(user)) {
                    cluePool.setFinishUserName(user.getUserName());
                }
                ShopDTO shop = oopService.shop(originalData.getShopId());
                cluePool.setFinishShopId(originalData.getShopId());
                if (Objects.nonNull(shop)) {
                    cluePool.setFinishShopName(shop.getShortName());
                }
            }
            cluePool.setCloseTime(DateUtil.getExpiredYear(originalData.getGenerateTime(), -1));
            cluePool.setClueStatus(ClueStatusEnum.COMPLETE);
            customerCluePoolService.updateById(cluePool);
            this.completeTask(cluePool);
        }
    }

    /**
     * 处理进行中的跟进任务
     *
     * @param cluePool
     * @return
     */
    @Override
    @Transactional(rollbackFor = Exception.class)
    public void completeTask(CustomerCluePool cluePool) {
        FollowTask followTask = followTaskService.queryOngoingTaskByClueId(cluePool.getId());
        if (Objects.isNull(followTask)) {
            return;
        }
        followTask.setFinishUser(cluePool.getFinishUserId());
        followTask.setFinishUserName(cluePool.getFinishUserName());
        followTask.setFinishShop(cluePool.getFinishShopId());
        followTask.setCloseTime(cluePool.getCloseTime());
        boolean equals = followTask.getFollowShop().equals(cluePool.getFinishShopId());
        followTask.setState(equals ? TaskStateEnum.COMPLETE : TaskStateEnum.DEFEAT);
        if (!equals) {
            followTask.setReason(TaskDefeatTypeEnum.F);
        }
        boolean succeed = followTaskService.updateById(followTask);
        if (succeed) {
            completeTodo(followTask.getId());
            followNoticeRecordService.removeByClueId(followTask.getId());
            CancelApproveEvent event = new CancelApproveEvent(followTask.getId(), ApproveTypeEnum.FOLLOW_DEFEAT);
            eventPublisher.publishEvent(event);
        }
    }

    @Override
    public IRDetailVO assemble(Long customerId) {
        CustomerDetailDto detailDto = customerBizService.queryById(customerId);
        IRDetailVO vo = new IRDetailVO();
        vo.setCustomerId(customerId);
        vo.setAdviserId(detailDto.getAdviserId());
        vo.setAdviserName(detailDto.getAdviserName());
        vo.setVin(detailDto.getFrameNo());
        vo.setName(detailDto.getName());
        vo.setMobile(detailDto.getMobile());
        vo.setRegion(MobileUtil.attribution(detailDto.getMobile()));
        vo.setRealMobile(detailDto.getMobile());
        vo.setPlateNo(detailDto.getPlateNo());
        vo.setCarModel(detailDto.getBrandName() + " " + detailDto.getSeriesName());
        vo.setExpires(detailDto.getExpires());
        vo.setPeriods(detailDto.getPeriods());
        vo.setLoanCustomer(detailDto.isLoanCustomer());
        Optional<InsuranceDTO> insuranceDTO = queryInsuInfo(customerId);
        insuranceDTO.ifPresent(ins -> {
            vo.setTclInsComName(ins.getTciInsurerName());
            vo.setTclInsExpiration(ins.getTciExpiryDate());
            vo.setBusInsComName(ins.getInsurerName());
            vo.setBusInsExpiration(ins.getExpiryDate());
        });
        return vo;
    }
}