|
|
|
|
@ -21,6 +21,7 @@ import com.biutag.supervision.pojo.vo.ComfortMapIconVo;
|
|
|
|
|
import com.biutag.supervision.pojo.vo.EchartsVo; |
|
|
|
|
import com.biutag.supervision.service.DataRightsComfortService; |
|
|
|
|
import com.biutag.supervision.service.RpcApplyService; |
|
|
|
|
import com.biutag.supervision.service.SupDepartService; |
|
|
|
|
import com.biutag.supervision.service.SupDictDataService; |
|
|
|
|
import com.biutag.supervision.service.datav.DatavService; |
|
|
|
|
import com.biutag.supervision.util.CompletableUtils.CompletableFutureUtil; |
|
|
|
|
@ -57,6 +58,7 @@ public class DataVRightsComfortController {
|
|
|
|
|
private final SupDictDataService supDictDataService; |
|
|
|
|
private final SupDepartMapper supDepartMapper; |
|
|
|
|
private final DatavService datavService; |
|
|
|
|
private final SupDepartService supDepartService; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
@ -237,11 +239,11 @@ public class DataVRightsComfortController {
|
|
|
|
|
} |
|
|
|
|
for (ComfortMapIconVo re : res) { |
|
|
|
|
String departId = re.getDepartId(); |
|
|
|
|
|
|
|
|
|
List<String> allNodeIds = supDepartService.getAllNodeIds(departId); |
|
|
|
|
List<RpcApply> list = rpcApplyService.list(new LambdaQueryWrapper<RpcApply>() |
|
|
|
|
.between(RpcApply::getCrtTime, beginTime, finalEndTime) |
|
|
|
|
.eq(RpcApply::getDepartId,departId) |
|
|
|
|
.eq(RpcApply::getVerified,"0") |
|
|
|
|
.in(RpcApply::getDepartId,allNodeIds) |
|
|
|
|
// .eq(RpcApply::getVerified,"0")
|
|
|
|
|
.eq(RpcApply::getType, RpcApplyTypeEnum.RIGHTS_PROTECTION.getValue())); |
|
|
|
|
|
|
|
|
|
Set<String> caseNumbers = list.stream() |
|
|
|
|
|