|
@@ -3,12 +3,14 @@ package org.jeecg.modules.adweb.dmp.service.impl;
|
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
|
|
|
import org.apache.commons.collections4.CollectionUtils;
|
|
|
+import org.apache.commons.lang3.StringUtils;
|
|
|
import org.jeecg.modules.adweb.common.util.NumberUtil;
|
|
|
import org.jeecg.modules.adweb.dmp.entity.GACountryReport;
|
|
|
import org.jeecg.modules.adweb.dmp.mapper.GACountryReportMapper;
|
|
|
import org.jeecg.modules.adweb.dmp.service.IGACountryReportService;
|
|
|
import org.jeecg.modules.adweb.dmp.vo.report.CountryStatsVO;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.cache.annotation.Cacheable;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import java.util.Collections;
|
|
@@ -25,6 +27,7 @@ public class GACountryReportServiceImpl extends ServiceImpl<GACountryReportMappe
|
|
|
@Autowired private GACountryReportMapper gaCountryReportMapper;
|
|
|
|
|
|
@Override
|
|
|
+ @Cacheable(cacheNames = "getCountryStats", key = "{#siteCode, #start, #end}")
|
|
|
public List<CountryStatsVO> getCountryStats(String siteCode, Date start, Date end) {
|
|
|
List<CountryStatsVO> countryStatsVOs =
|
|
|
gaCountryReportMapper.getCountryStats(siteCode, start, end);
|
|
@@ -37,6 +40,13 @@ public class GACountryReportServiceImpl extends ServiceImpl<GACountryReportMappe
|
|
|
|
|
|
// 2. VO数据填充
|
|
|
for (CountryStatsVO countryStatsVO : countryStatsVOs) {
|
|
|
+ // adweb_country表无记录时,如CountryStatsVO.country = (not set)
|
|
|
+ if (StringUtils.isBlank(countryStatsVO.getCountryName())
|
|
|
+ || StringUtils.isBlank(countryStatsVO.getCountryCode())) {
|
|
|
+ countryStatsVO.setCountryName(countryStatsVO.getCountry());
|
|
|
+ countryStatsVO.setCountryCode(countryStatsVO.getCountry());
|
|
|
+ }
|
|
|
+
|
|
|
countryStatsVO.setTotalUsersProportion(
|
|
|
NumberUtil.formatPercentage(
|
|
|
NumberUtil.safeDivide(countryStatsVO.getTotalUsers(), totalUsersSum),
|