fix:检查近6个月统计

pg_adapter
wangxy 6 months ago
parent 31160c4df0
commit 4bbc20243e

@ -1,9 +1,13 @@
package com.ruoyi.web.controller.system.count;
import cn.hutool.core.text.StrPool;
import com.alibaba.fastjson.JSONObject;
import com.baomidou.mybatisplus.extension.conditions.query.LambdaQueryChainWrapper;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.core.domain.entity.SysDictData;
import com.ruoyi.common.core.page.TableDataInfo;
import com.ruoyi.common.utils.ObtainLastSixMonthsUtil;
import com.ruoyi.system.domain.TdPropertyInfo;
import com.ruoyi.system.domain.check.TdCheckReport;
import com.ruoyi.system.domain.count.CheckResultCountDTO;
@ -11,6 +15,7 @@ import com.ruoyi.system.domain.count.CheckTypeCountDTO;
import com.ruoyi.system.service.ISysDictDataService;
import com.ruoyi.system.service.ITdNotifyService;
import com.ruoyi.system.service.check.TdCheckReportService;
import com.ruoyi.web.controller.manager.CheckReportManager;
import io.swagger.annotations.ApiOperation;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.beans.factory.annotation.Autowired;
@ -21,10 +26,9 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import javax.annotation.Resource;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Objects;
import java.time.LocalDate;
import java.time.ZoneId;
import java.util.*;
import java.util.concurrent.atomic.AtomicReference;
import java.util.stream.Collectors;
@ -42,99 +46,49 @@ public class TdChecknumController extends BaseController{
@Autowired
private ITdNotifyService tdNotifyService;
@Resource
private CheckReportManager checkReportManager;
@RequiresPermissions("system:checknum:view")
@GetMapping()
public String checknum() {
return prefix + "/checknum";
}
@ApiOperation("检查通知统计")
@PostMapping("/countNotifyList")
@ResponseBody
public AjaxResult countNotifyList() {
return AjaxResult.success(tdNotifyService.selectCountNotifyList());
}
private List<String> checkResult = Arrays.asList("通过", "未通过","待检查","已保存");
private List<String> checkType = Arrays.asList("自行检查", "保密局检查");
/**
*
*
* @return com.ruoyi.common.core.domain.AjaxResult
*
*/
@PostMapping("/countResult")
@PostMapping("/list")
@ResponseBody
public AjaxResult countbf() {
CheckResultCountDTO checkResultCountDTO = checkReportService.selectResultCount();
List<JSONObject> datas = checkResult.stream()
.map(name -> {
AtomicReference<Object> value = new AtomicReference<>(0L);
if("通过".equals(name)){
value.set(checkResultCountDTO.getTg());
}else if("未通过".equals(name)){
value.set(checkResultCountDTO.getWtg());
}else if("待检查".equals(name)){
value.set(checkResultCountDTO.getDjc());
}else{
value.set(checkResultCountDTO.getYbc());
}
JSONObject jsonObject = new JSONObject();
jsonObject.put("value", value.get());
jsonObject.put("name", name);
return jsonObject;
})
.collect(Collectors.toList());
return AjaxResult.success(datas);
public TableDataInfo list(TdCheckReport tdCheckReport) {
startPage();
List<TdCheckReport> tdCheckReports = checkReportManager.selectTdCheckReportList(tdCheckReport);
return getDataTable(tdCheckReports);
}
/**
*
*
* @return com.ruoyi.common.core.domain.AjaxResult
*/
@PostMapping("/countType")
@ResponseBody
public AjaxResult countXH() {
CheckTypeCountDTO checkTypeCountDTO = checkReportService.selectTypeCount();
List<JSONObject> datas = checkType.stream()
.map(name -> {
AtomicReference<Object> value = new AtomicReference<>(0L);
if("自行检查".equals(name)){
value.set(checkTypeCountDTO.getZxjc());
}else{
value.set(checkTypeCountDTO.getBmjjc());
}
JSONObject jsonObject = new JSONObject();
jsonObject.put("value", value.get());
jsonObject.put("name", name);
return jsonObject;
})
.collect(Collectors.toList());
return AjaxResult.success(datas);
}
@Autowired
private ISysDictDataService dictDataService;
/**
*
*
*6
* @return
*/
@PostMapping("/countCheckType")
@PostMapping("/countCheckMonth")
@ResponseBody
public AjaxResult countCheckType() {
SysDictData sysDictData = new SysDictData();
sysDictData.setDictType("sys_check_type");
List<SysDictData> smType = dictDataService.selectDictDataList(sysDictData);
List<String> list = smType.stream().map(SysDictData::getDictLabel).collect(Collectors.toList());
public AjaxResult countCheckMonth() {
List<String> recentlySixMonth = ObtainLastSixMonthsUtil.getRecentlySixMonth();
List<Long> yAxisData = new ArrayList<>();
smType.forEach(xAxis -> {
recentlySixMonth.forEach(month -> {
// 获取指定月份的最大日期
String lastDayOfMonth = ObtainLastSixMonthsUtil.getLastDayOfMonth(month);
// 获取指定天的最大时间
Date date = Date.from(LocalDate.parse(lastDayOfMonth).atStartOfDay().atZone(ZoneId.systemDefault()).toInstant());
Date maxDayTime = ObtainLastSixMonthsUtil.getEndOfDay(date);
// 获取最小时间
date = Date.from(LocalDate.parse(month.concat(StrPool.DASHED).concat("01")).atStartOfDay().atZone(ZoneId.systemDefault()).toInstant());
Date minDayTime = ObtainLastSixMonthsUtil.getStartOfDay(date);
AtomicReference<Long> yAxis = new AtomicReference<>(0L);
Integer count = checkReportService.lambdaQuery()
.eq(TdCheckReport::getCheckType, xAxis.getDictValue())
.count();
Integer count = new LambdaQueryChainWrapper<>(checkReportService.getBaseMapper())
.ge(TdCheckReport::getCreateTime, minDayTime)
.le(TdCheckReport::getCreateTime, maxDayTime).count();
if(Objects.isNull(count)){
count = 0;
}
@ -142,7 +96,7 @@ public class TdChecknumController extends BaseController{
yAxisData.add(yAxis.get());
});
JSONObject obj = new JSONObject();
obj.put("xAxisData", list.toArray());
obj.put("xAxisData", recentlySixMonth.toArray());
obj.put("yAxisData", yAxisData);
return AjaxResult.success(obj);
}

@ -0,0 +1,99 @@
package com.ruoyi.common.utils;
import cn.hutool.core.date.DateTime;
import cn.hutool.core.date.DateUnit;
import cn.hutool.core.date.DateUtil;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.time.ZoneId;
import java.time.format.DateTimeFormatter;
import java.time.format.DateTimeFormatterBuilder;
import java.time.temporal.ChronoField;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
/**
* @author wangxy
* @ClassName ObtainLastSixMonthsUtil
* @description:
* @date 20231011
* @version: 1.0.0
*/
public class ObtainLastSixMonthsUtil {
/**
* yyyy-MM
*
* @return List<String>
*/
public static List<String> getRecentlySixMonth() {
List<String> previousMonths = new ArrayList<>();
String currentMonth = DateUtil.format(LocalDateTime.now(), "yyyy-MM");
previousMonths.add(currentMonth);
for (int i = 1; i <= 11; i++) {
DateTime dateTime = DateUtil.offsetMonth(new Date(), -i);
String dateMonth = DateUtil.format(dateTime, "yyyy-MM");
previousMonths.add(dateMonth);
}
return previousMonths;
}
/**
*
*
* @param yearMonth yyyy-MM
* @return String
*/
public static String getLastDayOfMonth(String yearMonth) {
DateTimeFormatter formatter = new DateTimeFormatterBuilder()
.appendPattern("yyyy-MM[dd]")
.parseDefaulting(ChronoField.DAY_OF_MONTH, 1)
.toFormatter();
LocalDate localDate = LocalDate.parse(yearMonth, formatter);
Date date = Date.from(localDate.atStartOfDay(ZoneId.systemDefault()).toInstant());
DateTime dateTime = DateUtil.endOfMonth(date);
return DateUtil.format(dateTime, "yyyy-MM-dd");
}
/**
* @param date
* @return
* @description:
* @author: Jeff
* @date: 20191221
*/
public static Date getStartOfDay(Date date) {
return DateUtil.beginOfDay(date);
}
/**
* @param date
* @return
* @description:
* @author: Jeff
* @date: 20191221
*/
public static Date getEndOfDay(Date date) {
return DateUtil.endOfDay(date);
}
/**
*
*/
public static Long getDatePoor(Date endDate, Date nowDate) {
// 获得两个时间的毫秒时间差异
return DateUtil.between(nowDate, endDate, DateUnit.HOUR);
}
public static void main(String[] args) {
// System.out.println(getRecentlySixMonth());
List<String> recentlySixMonth = getRecentlySixMonth();
recentlySixMonth.forEach(s -> System.out.println(getLastDayOfMonth(s)));
}
}
Loading…
Cancel
Save