mg
2022-10-14 75c3c13b083e2d3ffa0aefdf5e1c117697a032e7
处理流程问题。
1个文件已修改
14 ■■■■■ 已修改文件
ycl-platform/src/main/java/com/ycl/service/caseHandler/impl/BaseCaseServiceImpl.java 14 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
ycl-platform/src/main/java/com/ycl/service/caseHandler/impl/BaseCaseServiceImpl.java
@@ -327,12 +327,14 @@
        QueryWrapper<Investigation> wrapperI = new QueryWrapper<>();
        wrapperI.lambda().eq(Investigation::getBaseCaseId, baseCase.getId());
        Investigation investigation = investigationMapper.selectOne(wrapperI);
        //获取当事人信息
        Map mapP = new HashMap();
        mapP.put("id", investigation.getPartyId());
        PartyInfo partyInfo = partyInfoMapper.selectCondMap(mapP);
        //填充当事人
        investigation.setPartyInfo(partyInfo);
        if (investigation != null && investigation.getPartyId() != null) {
            //获取当事人信息
            Map mapP = new HashMap();
            mapP.put("id", investigation.getPartyId());
            PartyInfo partyInfo = partyInfoMapper.selectCondMap(mapP);
            //填充当事人
            investigation.setPartyInfo(partyInfo);
        }
        currentSitVo.setInvestigation(investigation);
        //设置告知违法
        QueryWrapper<Writ> wrapperW = new QueryWrapper<>();