时间日志

master
wyj2080 6 years ago
parent 4029c7e320
commit 7e00e34dce

@ -96,13 +96,18 @@ public class CustomerViewService {
*/
public CustomerViewVO selectCustomerViewMain(Long userId, String selectStartTime, String selectEndTime, String startTime, String endTime){
CustomerViewVO customerViewVO = new CustomerViewVO();
Date s1 = new Date();
//shopIds
List<Long> shopIds = getShopIds(userId);
if(CollectionUtils.isEmpty(shopIds)){
return customerViewVO;
}
Date s2 = new Date();
System.out.println("shopIds:" + (s2.getTime()-s1.getTime()));
//柱状图好友list
List<OpCustomer> customerList = opCustomerDOMapper.selectCustomerList(shopIds, null, null, startTime, endTime);
Date s3 = new Date();
System.out.println("customerList:" + (s3.getTime()-s2.getTime()));
//好友总数
Long customerCount = opCustomerDOMapper.selectCustomerCount(shopIds, null, null, null);
//好友总数(去重)
@ -113,6 +118,8 @@ public class CustomerViewService {
.map(PoiCustomerContactDataStat::getNegativeFeedbackCnt).mapToLong(a -> a).sum();
//会员总数
Long vipCount = opVipDOMapper.selectVipCount(shopIds, null, null);
Date s4 = new Date();
System.out.println("总数:" + (s4.getTime()-s3.getTime()));
//设置柱状图list
List<OpCustomer> validCustomerList = customerList.stream().filter(customerDO -> VALID.equals(customerDO.getValidType())).collect(Collectors.toList());
@ -123,8 +130,14 @@ public class CustomerViewService {
//前十名排行list等
List<OpCustomer> newCustimerList = customerList.stream().filter(customerDO -> filterCustomerByRegisterTime(customerDO, selectStartTime, selectEndTime)).collect(Collectors.toList());
List<CustomerViewCompanyVO> orgNewCustomerList = getOrgNewCustomerList(newCustimerList);
Date s5 = new Date();
System.out.println("公司:" + (s5.getTime()-s4.getTime()));
List<CustomerViewShopVO> shopNewCustomerList = getShopNewCustomerList(newCustimerList);
Date s6 = new Date();
System.out.println("店铺:" + (s6.getTime()-s5.getTime()));
List<CustomerViewZeroExtendVO> zeroExtendList = getZeroExtendList(newCustimerList, shopIds);
Date s7 = new Date();
System.out.println("零推广:" + (s7.getTime()-s6.getTime()));
customerViewVO.setOrgNewCustomerList(orgNewCustomerList);
customerViewVO.setShopNewCustomerList(shopNewCustomerList);
customerViewVO.setZeroExtendList(zeroExtendList);
@ -277,21 +290,17 @@ public class CustomerViewService {
List<CustomerViewShopVO> getShopNewCustomerList(List<OpCustomer> newCustimerList){
//店铺分组
Map<Long, List<OpCustomer>> shopIdMap = newCustimerList.stream().collect(Collectors.groupingBy(OpCustomer::getShopId));
List<Long> shopIds = newCustimerList.stream().map(customer -> customer.getShopId()).collect(Collectors.toList());
List<Long> shopIds = newCustimerList.stream().map(OpCustomer::getShopId).collect(Collectors.toList());
if(shopIds.size() == 0){
return new ArrayList<>();
}
Map<Long, String> shopNameMap = poiStoreDOMapper.selectBatchIds(shopIds).stream().collect(Collectors.toMap(shopDO -> shopDO.getId(), shopDO -> shopDO.getName()));
Map<Long, String> shopNameMap = poiStoreDOMapper.selectBatchIds(shopIds).stream().collect(Collectors.toMap(PoiStore::getId, PoiStore::getName));
List<CustomerViewShopVO> shopViewList = new ArrayList<>();
shopIdMap.forEach((k,v) -> {
CustomerViewShopVO shopVO = new CustomerViewShopVO();
shopVO.setShopId(k);
shopVO.setNewCustomerCount(v.size());
shopVO.setShopName(shopNameMap.get(k));
//PoiStore shopDO = poiStoreDOMapper.selectById(k);
//if(shopDO != null){
// shopVO.setShopName(shopDO.getName());
//}
shopViewList.add(shopVO);
});
//排序

Loading…
Cancel
Save