|
|
@@ -106,15 +106,9 @@ public class StatisticsServiceImpl extends BaseService implements StatisticsServ
|
|
|
obj.setParent_dept_id(null);
|
|
|
obj.setDept_id(null);
|
|
|
// 将检索出来的数据放到如map中
|
|
|
+ List<StatisticsBean> list = statisticsDao.selectStatistics(obj);
|
|
|
|
|
|
-
|
|
|
- StatisticsBean tempbo = new StatisticsBean();
|
|
|
- tempbo.setStart_date(obj.getStart_date());
|
|
|
- tempbo.setEnd_date(obj.getEnd_date());
|
|
|
-
|
|
|
- List<StatisticsBean> list = statisticsDao.selectStatistics(tempbo);
|
|
|
-
|
|
|
- List<StatisticsBean> timesList = statisticsDao.selectCheckedTimes(tempbo);
|
|
|
+ List<StatisticsBean> timesList = statisticsDao.selectCheckedTimes(obj);
|
|
|
|
|
|
Map<Long, StatisticsBo> statisticBoMap = new HashMap<Long, StatisticsBo>();
|
|
|
|