|
|
@ -11,10 +11,7 @@ import com.epmet.dto.indexcal.CalculateCommonFormDTO; |
|
|
|
import com.epmet.dto.screen.form.ScreenCentralZoneDataFormDTO; |
|
|
|
import com.epmet.service.evaluationindex.extract.toscreen.*; |
|
|
|
import com.epmet.service.evaluationindex.indexcal.IndexCalculateService; |
|
|
|
import com.epmet.service.evaluationindex.screen.ScreenProjectGridDailyService; |
|
|
|
import com.epmet.service.evaluationindex.screen.ScreenProjectOrgDailyService; |
|
|
|
import com.epmet.service.evaluationindex.screen.ScreenProjectQuantityGridMonthlyService; |
|
|
|
import com.epmet.service.evaluationindex.screen.ScreenProjectQuantityOrgMonthlyService; |
|
|
|
import com.epmet.service.evaluationindex.screen.*; |
|
|
|
import com.epmet.service.stats.DimCustomerService; |
|
|
|
import lombok.extern.slf4j.Slf4j; |
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
@ -68,6 +65,8 @@ public class ScreenExtractServiceImpl implements ScreenExtractService { |
|
|
|
private ScreenProjectOrgDailyService screenProjectOrgDailyService; |
|
|
|
@Autowired |
|
|
|
private ScreenProjectSettleService screenProjectSettleService; |
|
|
|
@Autowired |
|
|
|
private ScreenProjectCategoryGridDailyService projectCategoryGridDailyService; |
|
|
|
|
|
|
|
/** |
|
|
|
* @param extractOriginFormDTO |
|
|
@ -198,12 +197,18 @@ public class ScreenExtractServiceImpl implements ScreenExtractService { |
|
|
|
log.error("项目(事件)分析按组织_按天统计失败,customerId为:"+customerId+"dateId为:"+dateId, e); |
|
|
|
} |
|
|
|
//项目分类打标签未上线,暂时屏蔽
|
|
|
|
/*try{ |
|
|
|
try{ |
|
|
|
//大屏项目数据抽取_按天抽取
|
|
|
|
screenProjectSettleService.extractScreenData(param); |
|
|
|
}catch (Exception e){ |
|
|
|
log.error("大屏项目数据抽取_按天抽取_按天统计失败,customerId为:"+customerId+"dateId为:"+dateId, e); |
|
|
|
}*/ |
|
|
|
} |
|
|
|
//按天统计:网格内各个分类下的项目总数
|
|
|
|
try{ |
|
|
|
projectCategoryGridDailyService.extractProjectCategoryData(customerId,dateId); |
|
|
|
}catch(Exception e){ |
|
|
|
log.error("按天统计:网格内各个分类下的项目总数,customerId为:"+customerId+"dateId为:"+dateId, e); |
|
|
|
} |
|
|
|
log.info("===== extractDaily method end ======"); |
|
|
|
} |
|
|
|
|
|
|
|