|
|
@ -84,6 +84,8 @@ public class ScreenExtractServiceImpl implements ScreenExtractService { |
|
|
|
private FactAgencyGovernDailyService factAgencyGovernDailyService; |
|
|
|
@Autowired |
|
|
|
private FactGridMemberStatisticsDailyService factGridMemberStatisticsDailyService; |
|
|
|
@Autowired |
|
|
|
private ScreenProjectCategoryGridAndOrgDailyService screenProjectCategoryGridAndOrgDailyService; |
|
|
|
|
|
|
|
/** |
|
|
|
* @param extractOriginFormDTO |
|
|
@ -243,14 +245,14 @@ public class ScreenExtractServiceImpl implements ScreenExtractService { |
|
|
|
|
|
|
|
//按天统计:网格内各个分类下的项目总数
|
|
|
|
try { |
|
|
|
projectCategoryGridDailyService.extractProjectCategoryData(customerId, dateId); |
|
|
|
screenProjectCategoryGridAndOrgDailyService.extractCategoryProjectGridData(customerId, dateId); |
|
|
|
} catch (Exception e) { |
|
|
|
log.error("按天统计:网格内各个分类下的项目总数,customerId为:" + customerId + "dateId为:" + dateId, e); |
|
|
|
} |
|
|
|
|
|
|
|
// 按天统计:组织内各个分类下的项目总数
|
|
|
|
try { |
|
|
|
projectCategoryOrgDailyService.extractProjectCategoryOrgData(customerId, dateId); |
|
|
|
screenProjectCategoryGridAndOrgDailyService.extractCategoryProjectOrgData(customerId, dateId); |
|
|
|
} catch (Exception e) { |
|
|
|
log.error("按天统计:组织内各个分类下的项目总数,customerId为:" + customerId + "dateId为:" + dateId, e); |
|
|
|
} |
|
|
|