|
|
@ -67,6 +67,8 @@ public class ScreenExtractServiceImpl implements ScreenExtractService { |
|
|
|
private ScreenProjectSettleService screenProjectSettleService; |
|
|
|
@Autowired |
|
|
|
private ScreenProjectCategoryGridDailyService projectCategoryGridDailyService; |
|
|
|
@Autowired |
|
|
|
private ScreenProjectCategoryOrgDailyService projectCategoryOrgDailyService; |
|
|
|
|
|
|
|
/** |
|
|
|
* @param extractOriginFormDTO |
|
|
@ -209,6 +211,12 @@ public class ScreenExtractServiceImpl implements ScreenExtractService { |
|
|
|
}catch(Exception e){ |
|
|
|
log.error("按天统计:网格内各个分类下的项目总数,customerId为:"+customerId+"dateId为:"+dateId, e); |
|
|
|
} |
|
|
|
// 按天统计:组织内各个分类下的项目总数
|
|
|
|
try{ |
|
|
|
projectCategoryOrgDailyService.extractProjectCategoryOrgData(customerId,dateId); |
|
|
|
}catch(Exception e){ |
|
|
|
log.error("按天统计:组织内各个分类下的项目总数,customerId为:"+customerId+"dateId为:"+dateId, e); |
|
|
|
} |
|
|
|
log.info("===== extractDaily method end ======"); |
|
|
|
} |
|
|
|
|
|
|
|