|
|
|
@ -130,7 +130,7 @@ public class CustomerViewService {
|
|
|
|
|
customerViewVO.setCommon(common);
|
|
|
|
|
//未关联的客户数
|
|
|
|
|
Long customer = customerList.stream().filter(customerDO -> ZERO_L.equals(customerDO.getMemberId())).map(OpCustomer::getPhone).distinct().count();
|
|
|
|
|
customerViewVO.setCustomer(customer - common);
|
|
|
|
|
customerViewVO.setCustomer(customer);
|
|
|
|
|
//未关联会员数
|
|
|
|
|
Long vip = vipList.stream().map(OpVip::getPhone).distinct().count();
|
|
|
|
|
customerViewVO.setVip(vip - common);
|
|
|
|
|