|
@@ -531,17 +531,17 @@ public class TaRecommendCustomerServiceImpl extends ServiceImpl<TaRecommendCusto
|
531
|
531
|
}
|
532
|
532
|
|
533
|
533
|
@Override
|
534
|
|
- public IPage getCustomerList(Integer status, int pageNumber, int pageSize, String building, String name, String tel, String consultName, String consultTel, String entryType, String verifyStatus, Integer sex, String customerType, Integer orgId, List<TaPersonBuilding> taPersonBuildingList, String sceneType, String startCreateDate, String endCreateDate) {
|
|
534
|
+ public IPage getCustomerList(Integer status, int pageNumber, int pageSize, String building, String name, String tel, String consultName, String consultTel, String entryType, String verifyStatus, Integer sex, String customerType, Integer orgId, List<TaPersonBuilding> taPersonBuildingList, String sceneType, String startCreateDate, String endCreateDate, String sharePersonName) {
|
535
|
535
|
|
536
|
536
|
if (CommConstant.CUTOMER_TYPE_PUBLIC.equals(customerType)) {
|
537
|
537
|
// 公客
|
538
|
538
|
IPage<TaPerson> page = new Page<>(pageNumber, pageSize);
|
539
|
539
|
// 公客就不用 buildingId 进行查询
|
540
|
|
- return taRecommendCustomerMapper.getPublicCustomerList(page, name, tel, entryType, verifyStatus, sex, orgId, consultTel, sceneType, taPersonBuildingList, building, startCreateDate, endCreateDate);
|
|
540
|
+ return taRecommendCustomerMapper.getPublicCustomerList(page, name, tel, entryType, verifyStatus, sex, orgId, consultTel, sceneType, taPersonBuildingList, building, startCreateDate, endCreateDate, sharePersonName);
|
541
|
541
|
} else {
|
542
|
542
|
// 私客
|
543
|
543
|
IPage<TaRecommendCustomer> page = new Page<>(pageNumber, pageSize);
|
544
|
|
- return taRecommendCustomerMapper.getCustomerList(page, building, name, tel, consultName, consultTel, entryType, verifyStatus, sex, orgId, status, taPersonBuildingList, sceneType, startCreateDate, endCreateDate);
|
|
544
|
+ return taRecommendCustomerMapper.getCustomerList(page, building, name, tel, consultName, consultTel, entryType, verifyStatus, sex, orgId, status, taPersonBuildingList, sceneType, startCreateDate, endCreateDate, sharePersonName);
|
545
|
545
|
}
|
546
|
546
|
|
547
|
547
|
}
|