|
|
@ -64,6 +64,9 @@ public class SysMeetingnumController extends BaseController {
|
|
|
|
public AjaxResult countMeetingMonth() {
|
|
|
|
public AjaxResult countMeetingMonth() {
|
|
|
|
List<String> recentlyTwelveMonth = ObtainLastSixMonthsUtil.getRecentlyTwelveMonth();
|
|
|
|
List<String> recentlyTwelveMonth = ObtainLastSixMonthsUtil.getRecentlyTwelveMonth();
|
|
|
|
List<Long> yAxisData = new ArrayList<>();
|
|
|
|
List<Long> yAxisData = new ArrayList<>();
|
|
|
|
|
|
|
|
List<Long> yAxisDataW = new ArrayList<>();
|
|
|
|
|
|
|
|
List<Long> yAxisDataXs= new ArrayList<>();
|
|
|
|
|
|
|
|
List<Long> yAxisDataXx = new ArrayList<>();
|
|
|
|
recentlyTwelveMonth.forEach(month -> {
|
|
|
|
recentlyTwelveMonth.forEach(month -> {
|
|
|
|
// 获取指定月份的最大日期
|
|
|
|
// 获取指定月份的最大日期
|
|
|
|
String lastDayOfMonth = ObtainLastSixMonthsUtil.getLastDayOfMonth(month);
|
|
|
|
String lastDayOfMonth = ObtainLastSixMonthsUtil.getLastDayOfMonth(month);
|
|
|
@ -82,13 +85,47 @@ public class SysMeetingnumController extends BaseController {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
yAxis.set(Long.valueOf(count));
|
|
|
|
yAxis.set(Long.valueOf(count));
|
|
|
|
yAxisData.add(yAxis.get());
|
|
|
|
yAxisData.add(yAxis.get());
|
|
|
|
|
|
|
|
AtomicReference<Long> yAxisW = new AtomicReference<>(0L);
|
|
|
|
|
|
|
|
Integer countW = new LambdaQueryChainWrapper<>(tdMeetingService.getBaseMapper())
|
|
|
|
|
|
|
|
.ge(TdMeeting::getMeetingTime, minDayTime)
|
|
|
|
|
|
|
|
.le(TdMeeting::getMeetingTime, maxDayTime).eq(TdMeeting::getMeetingState,0).count();
|
|
|
|
|
|
|
|
if (Objects.isNull(countW)) {
|
|
|
|
|
|
|
|
countW = 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
yAxisW.set(Long.valueOf(countW));
|
|
|
|
|
|
|
|
yAxisDataW.add(yAxisW.get());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
AtomicReference<Long> yAxisXs = new AtomicReference<>(0L);
|
|
|
|
|
|
|
|
Integer countXs= new LambdaQueryChainWrapper<>(tdMeetingService.getBaseMapper())
|
|
|
|
|
|
|
|
.ge(TdMeeting::getMeetingTime, minDayTime)
|
|
|
|
|
|
|
|
.le(TdMeeting::getMeetingTime, maxDayTime).eq(TdMeeting::getMeetingType,0).count();
|
|
|
|
|
|
|
|
if (Objects.isNull(countXs)) {
|
|
|
|
|
|
|
|
countXs = 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
yAxisXs.set(Long.valueOf(countXs));
|
|
|
|
|
|
|
|
yAxisDataXs.add(yAxisXs.get());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
AtomicReference<Long> yAxisXx = new AtomicReference<>(0L);
|
|
|
|
|
|
|
|
Integer countXx= new LambdaQueryChainWrapper<>(tdMeetingService.getBaseMapper())
|
|
|
|
|
|
|
|
.ge(TdMeeting::getMeetingTime, minDayTime)
|
|
|
|
|
|
|
|
.le(TdMeeting::getMeetingTime, maxDayTime).eq(TdMeeting::getMeetingType,1).count();
|
|
|
|
|
|
|
|
if (Objects.isNull(countXx)) {
|
|
|
|
|
|
|
|
countXx = 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
yAxisXx.set(Long.valueOf(countXx));
|
|
|
|
|
|
|
|
yAxisDataXx.add(yAxisXx.get());
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
JSONObject obj = new JSONObject();
|
|
|
|
JSONObject obj = new JSONObject();
|
|
|
|
obj.put("xAxisData", recentlyTwelveMonth.toArray());
|
|
|
|
obj.put("xAxisData", recentlyTwelveMonth.toArray());
|
|
|
|
obj.put("yAxisData", yAxisData);
|
|
|
|
obj.put("yAxisData", yAxisData);
|
|
|
|
|
|
|
|
obj.put("yAxisDataW", yAxisDataW);
|
|
|
|
|
|
|
|
obj.put("yAxisDataXs", yAxisDataXs);
|
|
|
|
|
|
|
|
obj.put("yAxisDataXx", yAxisDataXx);
|
|
|
|
return AjaxResult.success(obj);
|
|
|
|
return AjaxResult.success(obj);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* 会议详情
|
|
|
|
* 会议详情
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|