|
|
|
@ -183,12 +183,7 @@ public class ScreenExtractServiceImpl implements ScreenExtractService { |
|
|
|
}catch (Exception e){ |
|
|
|
log.error("基层治理-难点赌点抽取到大屏失败,customerId为:"+customerId+"dateId为:"+dateId, e); |
|
|
|
} |
|
|
|
extractPartData(customerId, dateId); |
|
|
|
log.info("===== extractDaily method end ======"); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void extractPartData(String customerId, String dateId) { |
|
|
|
ScreenCentralZoneDataFormDTO param = new ScreenCentralZoneDataFormDTO(); |
|
|
|
param.setCustomerId(customerId); |
|
|
|
param.setDateId(dateId); |
|
|
|
@ -211,25 +206,37 @@ public class ScreenExtractServiceImpl implements ScreenExtractService { |
|
|
|
}catch (Exception e){ |
|
|
|
log.error("项目(事件)分析按组织_按天统计失败,customerId为:"+customerId+"dateId为:"+dateId, e); |
|
|
|
} |
|
|
|
//项目分类打标签未上线,暂时屏蔽
|
|
|
|
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); |
|
|
|
} |
|
|
|
|
|
|
|
// 按天统计:组织内各个分类下的项目总数
|
|
|
|
try{ |
|
|
|
projectCategoryOrgDailyService.extractProjectCategoryOrgData(customerId,dateId); |
|
|
|
}catch(Exception e){ |
|
|
|
log.error("按天统计:组织内各个分类下的项目总数,customerId为:"+customerId+"dateId为:"+dateId, e); |
|
|
|
} |
|
|
|
|
|
|
|
extractPartData(customerId, dateId); |
|
|
|
log.info("===== extractDaily method end ======"); |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void extractPartData(String customerId, String dateId) { |
|
|
|
ScreenCentralZoneDataFormDTO param = new ScreenCentralZoneDataFormDTO(); |
|
|
|
param.setCustomerId(customerId); |
|
|
|
param.setDateId(dateId); |
|
|
|
|
|
|
|
try{ |
|
|
|
//大屏项目数据抽取_按天抽取
|
|
|
|
screenProjectSettleService.extractScreenData(param); |
|
|
|
}catch (Exception e){ |
|
|
|
log.error("大屏项目数据抽取_按天抽取_按天统计失败,customerId为:"+customerId+"dateId为:"+dateId, e); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
|