BUG修复
This commit is contained in:
parent
3989fc7981
commit
e357fdd9ec
@ -11,6 +11,18 @@ import com.wflow.mapper.WflowModelsMapper;
|
|||||||
import com.wflow.workflow.bean.process.enums.ProcessResultEnum;
|
import com.wflow.workflow.bean.process.enums.ProcessResultEnum;
|
||||||
import com.wflow.workflow.bean.vo.ProcessInstanceVo;
|
import com.wflow.workflow.bean.vo.ProcessInstanceVo;
|
||||||
import com.zhgd.jeecg.common.api.vo.Result;
|
import com.zhgd.jeecg.common.api.vo.Result;
|
||||||
|
import com.zhgd.xmgl.modules.basicdata.entity.SystemUser;
|
||||||
|
import com.zhgd.xmgl.modules.basicdata.service.ISystemUserService;
|
||||||
|
import com.zhgd.xmgl.modules.project.entity.ProjectEnterprise;
|
||||||
|
import com.zhgd.xmgl.modules.project.entity.XzUserToSupplier;
|
||||||
|
import com.zhgd.xmgl.modules.project.service.IProjectEnterpriseService;
|
||||||
|
import com.zhgd.xmgl.modules.worker.entity.EnterpriseInfo;
|
||||||
|
import com.zhgd.xmgl.modules.worker.entity.WorkerInfo;
|
||||||
|
import com.zhgd.xmgl.modules.worker.service.IEnterpriseInfoService;
|
||||||
|
import com.zhgd.xmgl.modules.worker.service.IWorkerInfoService;
|
||||||
|
import com.zhgd.xmgl.modules.xz.service.IXzUserToSupplierService;
|
||||||
|
import com.zhgd.xmgl.security.entity.UserInfo;
|
||||||
|
import com.zhgd.xmgl.security.util.SecurityUtils;
|
||||||
import io.swagger.annotations.Api;
|
import io.swagger.annotations.Api;
|
||||||
import io.swagger.annotations.ApiImplicitParam;
|
import io.swagger.annotations.ApiImplicitParam;
|
||||||
import io.swagger.annotations.ApiImplicitParams;
|
import io.swagger.annotations.ApiImplicitParams;
|
||||||
@ -50,6 +62,17 @@ public class XzFlowController {
|
|||||||
@Autowired
|
@Autowired
|
||||||
private WflowModelGroupsMapper wflowModelGroupsMapper;
|
private WflowModelGroupsMapper wflowModelGroupsMapper;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private IXzUserToSupplierService xzUserToSupplierService;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private ISystemUserService systemUserService;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private IWorkerInfoService workerInfoService;
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private IProjectEnterpriseService projectEnterpriseService;
|
||||||
|
|
||||||
@ApiOperation(value = "查询工作流统计信息", notes = "查询工作流统计信息", httpMethod = "GET")
|
@ApiOperation(value = "查询工作流统计信息", notes = "查询工作流统计信息", httpMethod = "GET")
|
||||||
@ApiImplicitParams({
|
@ApiImplicitParams({
|
||||||
@ -144,6 +167,29 @@ public class XzFlowController {
|
|||||||
list.addAll(instanceQuery.list());
|
list.addAll(instanceQuery.list());
|
||||||
}
|
}
|
||||||
List<ProcessInstanceVo> processInstanceVos = getInstances(list);
|
List<ProcessInstanceVo> processInstanceVos = getInstances(list);
|
||||||
|
// 人员数据权限
|
||||||
|
UserInfo user = SecurityUtils.getUser();
|
||||||
|
SystemUser systemUser = systemUserService.getById(user.getUserId());
|
||||||
|
XzUserToSupplier xzUserToSupplier = xzUserToSupplierService.getOne(Wrappers.<XzUserToSupplier>lambdaQuery()
|
||||||
|
.eq(XzUserToSupplier::getUserId, systemUser.getUserId()));
|
||||||
|
Long enterpriseId = xzUserToSupplier.getXzSupplierId();
|
||||||
|
List<ProjectEnterprise> allList = projectEnterpriseService.list(Wrappers.<ProjectEnterprise>lambdaQuery()
|
||||||
|
.eq(ProjectEnterprise::getProjectSn, systemUser.getProjectSn()));
|
||||||
|
ProjectEnterprise projectEnterprise = projectEnterpriseService.getOne(Wrappers.<ProjectEnterprise>lambdaQuery()
|
||||||
|
.eq(ProjectEnterprise::getProjectSn, systemUser.getProjectSn())
|
||||||
|
.eq(ProjectEnterprise::getEnterpriseId, enterpriseId));
|
||||||
|
List<Long> enterpriseIds = allList.stream().filter(a -> a.getAncestors().contains(projectEnterprise.getId().toString())).collect(Collectors.toList())
|
||||||
|
.stream().map(p -> p.getEnterpriseId()).collect(Collectors.toList());
|
||||||
|
enterpriseIds.add(enterpriseId);
|
||||||
|
List<Long> workerInfos = workerInfoService.list(Wrappers.<WorkerInfo>lambdaQuery().in(WorkerInfo::getEnterpriseId, enterpriseIds))
|
||||||
|
.stream().map(w -> w.getId()).collect(Collectors.toList());
|
||||||
|
if (workerInfos.size() > 0) {
|
||||||
|
List<Long> systemUserList = systemUserService.list(Wrappers.<SystemUser>lambdaQuery().in(SystemUser::getWorkerId, workerInfos))
|
||||||
|
.stream().map(u -> u.getUserId()).collect(Collectors.toList());
|
||||||
|
processInstanceVos = processInstanceVos.stream().filter(p -> systemUserList.contains(p.getStaterUserId())).collect(Collectors.toList());
|
||||||
|
} else {
|
||||||
|
processInstanceVos = new ArrayList<>();
|
||||||
|
}
|
||||||
Map<String, Object> total = new HashMap<>();
|
Map<String, Object> total = new HashMap<>();
|
||||||
total.put("running", processInstanceVos.stream().filter(l -> l.getFinishTime() == null).count());
|
total.put("running", processInstanceVos.stream().filter(l -> l.getFinishTime() == null).count());
|
||||||
total.put("complete", processInstanceVos.stream().filter(l -> l.getFinishTime() != null).count());
|
total.put("complete", processInstanceVos.stream().filter(l -> l.getFinishTime() != null).count());
|
||||||
|
|||||||
@ -58,6 +58,7 @@ import io.swagger.annotations.ApiImplicitParams;
|
|||||||
import io.swagger.annotations.ApiOperation;
|
import io.swagger.annotations.ApiOperation;
|
||||||
import lombok.extern.slf4j.Slf4j;
|
import lombok.extern.slf4j.Slf4j;
|
||||||
import org.apache.commons.collections.MapUtils;
|
import org.apache.commons.collections.MapUtils;
|
||||||
|
import org.apache.commons.math3.dfp.DfpField;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
import org.springframework.context.annotation.Lazy;
|
import org.springframework.context.annotation.Lazy;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
@ -138,7 +139,9 @@ public class XzRiskPredictionController {
|
|||||||
String projectSn = MapUtils.getString(param, "projectSn");
|
String projectSn = MapUtils.getString(param, "projectSn");
|
||||||
Map<String, Object> resultMap = new HashMap<>();
|
Map<String, Object> resultMap = new HashMap<>();
|
||||||
// 人员数量
|
// 人员数量
|
||||||
List<WorkerInfo> list = workerInfoService.list(Wrappers.<WorkerInfo>lambdaQuery().eq(WorkerInfo::getProjectSn, projectSn));
|
List<WorkerInfo> list = workerInfoService.list(Wrappers.<WorkerInfo>lambdaQuery()
|
||||||
|
.eq(WorkerInfo::getProjectSn, projectSn)
|
||||||
|
.eq(WorkerInfo::getInserviceType, 1));
|
||||||
resultMap.put("total", list.size());
|
resultMap.put("total", list.size());
|
||||||
// 高龄人员
|
// 高龄人员
|
||||||
long ageCount = list.stream().filter(l -> StringUtils.isNotBlank(l.getBirthday()) && DateUtil.ageOfNow(l.getBirthday()) >= 50).count();
|
long ageCount = list.stream().filter(l -> StringUtils.isNotBlank(l.getBirthday()) && DateUtil.ageOfNow(l.getBirthday()) >= 50).count();
|
||||||
@ -187,9 +190,10 @@ public class XzRiskPredictionController {
|
|||||||
// 安全检查隐患
|
// 安全检查隐患
|
||||||
List<XzSecurityQualityInspectionRecord> xzSecurityQualityInspectionRecords = xzSecurityQualityInspectionRecordService.list(Wrappers.<XzSecurityQualityInspectionRecord>lambdaQuery()
|
List<XzSecurityQualityInspectionRecord> xzSecurityQualityInspectionRecords = xzSecurityQualityInspectionRecordService.list(Wrappers.<XzSecurityQualityInspectionRecord>lambdaQuery()
|
||||||
.eq(XzSecurityQualityInspectionRecord::getRecordType, 1)
|
.eq(XzSecurityQualityInspectionRecord::getRecordType, 1)
|
||||||
.eq(XzSecurityQualityInspectionRecord::getProjectSn, projectSn));
|
.eq(XzSecurityQualityInspectionRecord::getProjectSn, projectSn)
|
||||||
|
.ne(XzSecurityQualityInspectionRecord::getStatus, 6));
|
||||||
if (xzSecurityQualityInspectionRecords.size() > 0) {
|
if (xzSecurityQualityInspectionRecords.size() > 0) {
|
||||||
long inspectionCount = xzSecurityQualityInspectionRecords.stream().filter(x -> x.getStatus() != 5 && x.getStatus() != 6).count();
|
long inspectionCount = xzSecurityQualityInspectionRecords.stream().filter(x -> x.getStatus() != 5).count();
|
||||||
resultMap.put("security", new BigDecimal(inspectionCount).divide(new BigDecimal(xzSecurityQualityInspectionRecords.size()), 2, BigDecimal.ROUND_HALF_UP));
|
resultMap.put("security", new BigDecimal(inspectionCount).divide(new BigDecimal(xzSecurityQualityInspectionRecords.size()), 2, BigDecimal.ROUND_HALF_UP));
|
||||||
} else {
|
} else {
|
||||||
resultMap.put("security", 0);
|
resultMap.put("security", 0);
|
||||||
@ -621,10 +625,12 @@ public class XzRiskPredictionController {
|
|||||||
|
|
||||||
List<XzSecurityQualityInspectionRecord> allXzSecurityQualityInspectionRecords = xzSecurityQualityInspectionRecordService.list(Wrappers.<XzSecurityQualityInspectionRecord>lambdaQuery()
|
List<XzSecurityQualityInspectionRecord> allXzSecurityQualityInspectionRecords = xzSecurityQualityInspectionRecordService.list(Wrappers.<XzSecurityQualityInspectionRecord>lambdaQuery()
|
||||||
.eq(XzSecurityQualityInspectionRecord::getRecordType, 1)
|
.eq(XzSecurityQualityInspectionRecord::getRecordType, 1)
|
||||||
.eq(XzSecurityQualityInspectionRecord::getProjectSn, projectSn));
|
.eq(XzSecurityQualityInspectionRecord::getProjectSn, projectSn)
|
||||||
|
.ne(XzSecurityQualityInspectionRecord::getStatus, 6));
|
||||||
|
|
||||||
List<WorkerInfo> allWorkerList = workerInfoService.list(Wrappers.<WorkerInfo>lambdaQuery()
|
List<WorkerInfo> allWorkerList = workerInfoService.list(Wrappers.<WorkerInfo>lambdaQuery()
|
||||||
.eq(WorkerInfo::getProjectSn, projectSn));
|
.eq(WorkerInfo::getProjectSn, projectSn)
|
||||||
|
.eq(WorkerInfo::getInserviceType, 1));
|
||||||
|
|
||||||
WorkerType workerType = workerTypeService.getOne(Wrappers.<WorkerType>lambdaQuery()
|
WorkerType workerType = workerTypeService.getOne(Wrappers.<WorkerType>lambdaQuery()
|
||||||
.eq(WorkerType::getProjectSn, projectSn)
|
.eq(WorkerType::getProjectSn, projectSn)
|
||||||
@ -642,7 +648,7 @@ public class XzRiskPredictionController {
|
|||||||
Map<String, Object> resultMap = new HashMap<>();
|
Map<String, Object> resultMap = new HashMap<>();
|
||||||
// 人员数量
|
// 人员数量
|
||||||
List<WorkerInfo> list = allWorkerList.stream().filter(a -> enterpriseIds.contains(a.getEnterpriseId())).collect(Collectors.toList());
|
List<WorkerInfo> list = allWorkerList.stream().filter(a -> enterpriseIds.contains(a.getEnterpriseId())).collect(Collectors.toList());
|
||||||
resultMap.put("total", list.size());
|
resultMap.put("total", new BigDecimal(list.size()).divide(new BigDecimal(allWorkerList.size()), 2, BigDecimal.ROUND_HALF_UP));
|
||||||
// 高龄人员
|
// 高龄人员
|
||||||
long ageCount = list.stream().filter(l -> StringUtils.isNotBlank(l.getBirthday()) && DateUtil.ageOfNow(l.getBirthday()) >= 50).count();
|
long ageCount = list.stream().filter(l -> StringUtils.isNotBlank(l.getBirthday()) && DateUtil.ageOfNow(l.getBirthday()) >= 50).count();
|
||||||
resultMap.put("age", new BigDecimal(ageCount).divide(new BigDecimal(list.size()), 2, BigDecimal.ROUND_HALF_UP));
|
resultMap.put("age", new BigDecimal(ageCount).divide(new BigDecimal(list.size()), 2, BigDecimal.ROUND_HALF_UP));
|
||||||
@ -688,7 +694,7 @@ public class XzRiskPredictionController {
|
|||||||
List<XzSecurityQualityInspectionRecord> xzSecurityQualityInspectionRecords = allXzSecurityQualityInspectionRecords.stream()
|
List<XzSecurityQualityInspectionRecord> xzSecurityQualityInspectionRecords = allXzSecurityQualityInspectionRecords.stream()
|
||||||
.filter(a -> enterpriseIds.contains(a.getEnterpriseId())).collect(Collectors.toList());
|
.filter(a -> enterpriseIds.contains(a.getEnterpriseId())).collect(Collectors.toList());
|
||||||
if (xzSecurityQualityInspectionRecords.size() > 0) {
|
if (xzSecurityQualityInspectionRecords.size() > 0) {
|
||||||
long inspectionCount = xzSecurityQualityInspectionRecords.stream().filter(x -> x.getStatus() != 5 && x.getStatus() != 6).count();
|
long inspectionCount = xzSecurityQualityInspectionRecords.stream().filter(x -> x.getStatus() != 5).count();
|
||||||
resultMap.put("security", new BigDecimal(inspectionCount).divide(new BigDecimal(xzSecurityQualityInspectionRecords.size()), 2, BigDecimal.ROUND_HALF_UP));
|
resultMap.put("security", new BigDecimal(inspectionCount).divide(new BigDecimal(xzSecurityQualityInspectionRecords.size()), 2, BigDecimal.ROUND_HALF_UP));
|
||||||
} else {
|
} else {
|
||||||
resultMap.put("security", 0);
|
resultMap.put("security", 0);
|
||||||
@ -721,15 +727,16 @@ public class XzRiskPredictionController {
|
|||||||
// 安全检查隐患
|
// 安全检查隐患
|
||||||
List<XzSecurityQualityInspectionRecord> xzSecurityQualityInspectionRecords = xzSecurityQualityInspectionRecordService.list(Wrappers.<XzSecurityQualityInspectionRecord>lambdaQuery()
|
List<XzSecurityQualityInspectionRecord> xzSecurityQualityInspectionRecords = xzSecurityQualityInspectionRecordService.list(Wrappers.<XzSecurityQualityInspectionRecord>lambdaQuery()
|
||||||
.eq(XzSecurityQualityInspectionRecord::getRecordType, 1)
|
.eq(XzSecurityQualityInspectionRecord::getRecordType, 1)
|
||||||
.eq(XzSecurityQualityInspectionRecord::getProjectSn, projectSn));
|
.eq(XzSecurityQualityInspectionRecord::getProjectSn, projectSn)
|
||||||
|
.ne(XzSecurityQualityInspectionRecord::getStatus, 6));
|
||||||
if (xzSecurityQualityInspectionRecords.size() > 0) {
|
if (xzSecurityQualityInspectionRecords.size() > 0) {
|
||||||
long inspectionCount = xzSecurityQualityInspectionRecords.stream().filter(x -> x.getStatus() != 5 && x.getStatus() != 6).count();
|
long inspectionCount = xzSecurityQualityInspectionRecords.stream().filter(x -> x.getStatus() != 5).count();
|
||||||
resultMap.put("security", new BigDecimal(inspectionCount).divide(new BigDecimal(xzSecurityQualityInspectionRecords.size()), 2, BigDecimal.ROUND_HALF_UP));
|
resultMap.put("security", new BigDecimal(inspectionCount).divide(new BigDecimal(xzSecurityQualityInspectionRecords.size()), 2, BigDecimal.ROUND_HALF_UP));
|
||||||
} else {
|
} else {
|
||||||
resultMap.put("security", 0);
|
resultMap.put("security", 0);
|
||||||
}
|
}
|
||||||
// 安全评分
|
// 安全评分
|
||||||
List<WorkerInfo> list = workerInfoService.list(Wrappers.<WorkerInfo>lambdaQuery().eq(WorkerInfo::getProjectSn, projectSn));
|
List<WorkerInfo> list = workerInfoService.list(Wrappers.<WorkerInfo>lambdaQuery().eq(WorkerInfo::getProjectSn, projectSn).eq(WorkerInfo::getInserviceType, 1));
|
||||||
Double safeScore = list.stream().mapToDouble(e -> e.getSafeScore()).sum();
|
Double safeScore = list.stream().mapToDouble(e -> e.getSafeScore()).sum();
|
||||||
resultMap.put("safe", new BigDecimal(safeScore).divide(new BigDecimal(100)).divide(new BigDecimal(list.size()), 2, BigDecimal.ROUND_HALF_UP));
|
resultMap.put("safe", new BigDecimal(safeScore).divide(new BigDecimal(100)).divide(new BigDecimal(list.size()), 2, BigDecimal.ROUND_HALF_UP));
|
||||||
// 一级二级分险占比
|
// 一级二级分险占比
|
||||||
@ -741,7 +748,7 @@ public class XzRiskPredictionController {
|
|||||||
}
|
}
|
||||||
// 超期未关闭
|
// 超期未关闭
|
||||||
if (xzSecurityQualityInspectionRecords.size() > 0) {
|
if (xzSecurityQualityInspectionRecords.size() > 0) {
|
||||||
long inspectionCount = xzSecurityQualityInspectionRecords.stream().filter(x -> x.getStatus() != 5 && x.getStatus() != 6 && DateUtil.parseDate(x.getChangeLimitTime()).compareTo(new Date()) < 0).count();
|
long inspectionCount = xzSecurityQualityInspectionRecords.stream().filter(x -> x.getStatus() != 5 && DateUtil.parseDate(x.getChangeLimitTime()).compareTo(new Date()) < 0).count();
|
||||||
resultMap.put("limitTime", new BigDecimal(inspectionCount).divide(new BigDecimal(xzSecurityQualityInspectionRecords.size()), 2, BigDecimal.ROUND_HALF_UP));
|
resultMap.put("limitTime", new BigDecimal(inspectionCount).divide(new BigDecimal(xzSecurityQualityInspectionRecords.size()), 2, BigDecimal.ROUND_HALF_UP));
|
||||||
} else {
|
} else {
|
||||||
resultMap.put("limitTime", 0);
|
resultMap.put("limitTime", 0);
|
||||||
@ -770,10 +777,12 @@ public class XzRiskPredictionController {
|
|||||||
|
|
||||||
List<XzSecurityQualityInspectionRecord> allXzSecurityQualityInspectionRecords = xzSecurityQualityInspectionRecordService.list(Wrappers.<XzSecurityQualityInspectionRecord>lambdaQuery()
|
List<XzSecurityQualityInspectionRecord> allXzSecurityQualityInspectionRecords = xzSecurityQualityInspectionRecordService.list(Wrappers.<XzSecurityQualityInspectionRecord>lambdaQuery()
|
||||||
.eq(XzSecurityQualityInspectionRecord::getRecordType, 1)
|
.eq(XzSecurityQualityInspectionRecord::getRecordType, 1)
|
||||||
.eq(XzSecurityQualityInspectionRecord::getProjectSn, projectSn));
|
.eq(XzSecurityQualityInspectionRecord::getProjectSn, projectSn)
|
||||||
|
.ne(XzSecurityQualityInspectionRecord::getStatus, 6));
|
||||||
|
|
||||||
List<WorkerInfo> allWorkerList = workerInfoService.list(Wrappers.<WorkerInfo>lambdaQuery()
|
List<WorkerInfo> allWorkerList = workerInfoService.list(Wrappers.<WorkerInfo>lambdaQuery()
|
||||||
.eq(WorkerInfo::getProjectSn, projectSn));
|
.eq(WorkerInfo::getProjectSn, projectSn)
|
||||||
|
.eq(WorkerInfo::getInserviceType, 1));
|
||||||
|
|
||||||
for (ProjectEnterprise projectEnterprise : parentList) {
|
for (ProjectEnterprise projectEnterprise : parentList) {
|
||||||
EnterpriseInfo enterpriseInfo = enterpriseInfoService.getById(projectEnterprise.getEnterpriseId());
|
EnterpriseInfo enterpriseInfo = enterpriseInfoService.getById(projectEnterprise.getEnterpriseId());
|
||||||
@ -785,7 +794,7 @@ public class XzRiskPredictionController {
|
|||||||
// 安全检查隐患
|
// 安全检查隐患
|
||||||
List<XzSecurityQualityInspectionRecord> xzSecurityQualityInspectionRecords = allXzSecurityQualityInspectionRecords.stream().filter(x -> enterpriseIds.contains(x.getEnterpriseId())).collect(Collectors.toList());
|
List<XzSecurityQualityInspectionRecord> xzSecurityQualityInspectionRecords = allXzSecurityQualityInspectionRecords.stream().filter(x -> enterpriseIds.contains(x.getEnterpriseId())).collect(Collectors.toList());
|
||||||
if (xzSecurityQualityInspectionRecords.size() > 0) {
|
if (xzSecurityQualityInspectionRecords.size() > 0) {
|
||||||
long inspectionCount = xzSecurityQualityInspectionRecords.stream().filter(x -> x.getStatus() != 5 && x.getStatus() != 6).count();
|
long inspectionCount = xzSecurityQualityInspectionRecords.stream().filter(x -> x.getStatus() != 5).count();
|
||||||
resultMap.put("security", new BigDecimal(inspectionCount).divide(new BigDecimal(xzSecurityQualityInspectionRecords.size()), 2, BigDecimal.ROUND_HALF_UP));
|
resultMap.put("security", new BigDecimal(inspectionCount).divide(new BigDecimal(xzSecurityQualityInspectionRecords.size()), 2, BigDecimal.ROUND_HALF_UP));
|
||||||
} else {
|
} else {
|
||||||
resultMap.put("security", 0);
|
resultMap.put("security", 0);
|
||||||
@ -803,7 +812,7 @@ public class XzRiskPredictionController {
|
|||||||
}
|
}
|
||||||
// 超期未关闭
|
// 超期未关闭
|
||||||
if (xzSecurityQualityInspectionRecords.size() > 0) {
|
if (xzSecurityQualityInspectionRecords.size() > 0) {
|
||||||
long inspectionCount = xzSecurityQualityInspectionRecords.stream().filter(x -> x.getStatus() != 5 && x.getStatus() != 6 && DateUtil.parseDate(x.getChangeLimitTime()).compareTo(new Date()) < 0).count();
|
long inspectionCount = xzSecurityQualityInspectionRecords.stream().filter(x -> x.getStatus() != 5 && DateUtil.parseDate(x.getChangeLimitTime()).compareTo(new Date()) < 0).count();
|
||||||
resultMap.put("limitTime", new BigDecimal(inspectionCount).divide(new BigDecimal(xzSecurityQualityInspectionRecords.size()), 2, BigDecimal.ROUND_HALF_UP));
|
resultMap.put("limitTime", new BigDecimal(inspectionCount).divide(new BigDecimal(xzSecurityQualityInspectionRecords.size()), 2, BigDecimal.ROUND_HALF_UP));
|
||||||
} else {
|
} else {
|
||||||
resultMap.put("limitTime", 0);
|
resultMap.put("limitTime", 0);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user