|
|
|
@ -64,7 +64,12 @@ public class CustomerWorkbenchServiceImpl extends ServiceImpl<CustomerWorkbenchD |
|
|
|
|
Long[] customerIds = customers.stream().map(CustomerEntity::getId).toArray(Long[]::new); |
|
|
|
|
// 返回列表实体类集合
|
|
|
|
|
List<CustomerWorkbenchListVO> customerWorkbenchListVOS = new ArrayList<>(); |
|
|
|
|
BeanUtils.copyProperties(customers,customerWorkbenchListVOS); |
|
|
|
|
for (int i = 0; i < customers.size(); i++) { |
|
|
|
|
CustomerWorkbenchListVO customerWorkbenchListVO = new CustomerWorkbenchListVO(); |
|
|
|
|
BeanUtils.copyProperties(customers.get(i), customerWorkbenchListVO); |
|
|
|
|
customerWorkbenchListVOS.add(customerWorkbenchListVO); |
|
|
|
|
} |
|
|
|
|
System.out.println(customerWorkbenchListVOS); |
|
|
|
|
if (managerIds.length != 0) { |
|
|
|
|
// 远程调用查询客户对应的客户经理信息
|
|
|
|
|
ResponseResult responseResult = hrmsFeignService.getEmployeeAndDeptById(managerIds); |
|
|
|
@ -83,6 +88,7 @@ public class CustomerWorkbenchServiceImpl extends ServiceImpl<CustomerWorkbenchD |
|
|
|
|
customerWorkbenchListVOS.removeIf(customerWorkbenchListVO -> !Objects.equals(customerWorkbenchListVO.getStatus(), cwr.getStatus())); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
System.out.println(customerWorkbenchListVOS); |
|
|
|
|
// 属性拷贝,将泛型为CustomerEntity类型的IPage的属性拷贝给泛型为CustomerTO类型的IPage,才能赋值给PageUtils
|
|
|
|
|
IPage<CustomerWorkbenchListVO> iPage = new Page<>(); |
|
|
|
|
BeanUtils.copyProperties(customerEntityIPage, iPage); |
|
|
|
@ -170,6 +176,7 @@ public class CustomerWorkbenchServiceImpl extends ServiceImpl<CustomerWorkbenchD |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 通过审核 |
|
|
|
|
* |
|
|
|
|
* @param id 当前客户id |
|
|
|
|
* @param manager 客户经理id |
|
|
|
|
* @return |
|
|
|
@ -184,6 +191,7 @@ public class CustomerWorkbenchServiceImpl extends ServiceImpl<CustomerWorkbenchD |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 不通过审核 |
|
|
|
|
* |
|
|
|
|
* @param id 当前客户id |
|
|
|
|
* @param cause 原因 |
|
|
|
|
* @return |
|
|
|
|