|
|
|
@ -14,6 +14,7 @@ import com.ruoyi.system.domain.check.TdCheckReport;
|
|
|
|
|
import com.ruoyi.system.domain.check.dto.CheckReportDTO;
|
|
|
|
|
import com.ruoyi.system.domain.count.CheckResultCountDTO;
|
|
|
|
|
import com.ruoyi.system.domain.count.CheckTypeCountDTO;
|
|
|
|
|
import com.ruoyi.system.domain.count.PropertyManagerDTO;
|
|
|
|
|
import com.ruoyi.system.service.ISysDictDataService;
|
|
|
|
|
import com.ruoyi.system.service.ITdNotifyService;
|
|
|
|
|
import com.ruoyi.system.service.check.TdCheckReportService;
|
|
|
|
@ -125,15 +126,14 @@ public class TdChecknumController extends BaseController{
|
|
|
|
|
date = Date.from(LocalDate.parse(month.concat(StrPool.DASHED).concat("01")).atStartOfDay().atZone(ZoneId.systemDefault()).toInstant());
|
|
|
|
|
Date minDayTime = ObtainLastSixMonthsUtil.getStartOfDay(date);
|
|
|
|
|
AtomicReference<Double> yAxis = new AtomicReference<>();
|
|
|
|
|
TdCheckReport checkReport = new LambdaQueryChainWrapper<>(checkReportService.getBaseMapper())
|
|
|
|
|
.ge(TdCheckReport::getCreateTime, minDayTime)
|
|
|
|
|
.le(TdCheckReport::getCreateTime, maxDayTime)
|
|
|
|
|
.orderByDesc(TdCheckReport::getPercentageScore)
|
|
|
|
|
.last("limit 1").one();
|
|
|
|
|
if(Objects.isNull(checkReport)){
|
|
|
|
|
PropertyManagerDTO tdPropertWx = new PropertyManagerDTO();
|
|
|
|
|
tdPropertWx.setMinDayTime(minDayTime);
|
|
|
|
|
tdPropertWx.setMaxDayTime(maxDayTime);
|
|
|
|
|
Double maxCount = checkReportService.countSecretsWxMonth(tdPropertWx);
|
|
|
|
|
if(Objects.isNull(maxCount)){
|
|
|
|
|
yAxis.set(0.0);
|
|
|
|
|
}else{
|
|
|
|
|
yAxis.set(Double.valueOf(checkReport.getPercentageScore()));
|
|
|
|
|
yAxis.set(maxCount);
|
|
|
|
|
}
|
|
|
|
|
yAxisData.add(yAxis.get());
|
|
|
|
|
});
|
|
|
|
|