Commit 38443fbba50f09216d15fb131a345c389629ce27

Authored by 张志伟
1 parent 39281d58

feature(*): 修改人员站岗信息

- 修改人员站岗信息
fw-valhalla-service/src/main/java/cn/fw/valhalla/service/bus/follow/strategy/AbstractFollowStrategy.java
... ... @@ -500,6 +500,7 @@ public abstract class AbstractFollowStrategy implements FollowStrategy {
500 500  
501 501 protected FollowInitDTO creteFollowInitDTO(FollowClue followClue, ClueTask clueTask) {
502 502 Long customerId = null;
  503 + String customerName = null;
503 504 Long memberId = null;
504 505 Long brandId = COMMON_BRAND_ID;
505 506 String phone = followClue.getSuggestMobile();
... ... @@ -507,6 +508,7 @@ public abstract class AbstractFollowStrategy implements FollowStrategy {
507 508 CustomerDetailDto customerDetailDto = customerBizService.queryByFrameNo(followClue.getVin(), followClue.getGroupId());
508 509 if (Objects.nonNull(customerDetailDto)) {
509 510 customerId = customerDetailDto.getId();
  511 + customerName = customerDetailDto.getName();
510 512 memberId = customerDetailDto.getMemberId();
511 513 phone = customerDetailDto.getMobile();
512 514 brandId = customerDetailDto.getBrandId();
... ... @@ -516,6 +518,7 @@ public abstract class AbstractFollowStrategy implements FollowStrategy {
516 518 .businessType(BusinessTypeEnum.AS)
517 519 .type(DataTypeEnum.ofValue(clueTask.getType().getValue()))
518 520 .customerId(customerId)
  521 + .customerName(customerName)
519 522 .memberId(memberId)
520 523 .plateNo(followClue.getPlateNo())
521 524 .frameNo(followClue.getVin())
... ...