|
@@ -317,7 +317,6 @@ public class ContractInfoServiceImpl extends BaseServiceImpl<ContractInfoMapper,
|
|
|
|
|
|
@Override
|
|
|
public R<Object> getTreeNodeByValueAndContractId(String queryValue, String contractId, String tableOwner) {
|
|
|
- Map<Long, List<WbsTreeContractTreeAllVO>> resultMaps = new LinkedHashMap<>();
|
|
|
if (StringUtils.isNotEmpty(queryValue) && StringUtils.isNotEmpty(contractId)) {
|
|
|
ContractInfo contractInfo = contractInfoMapper.selectById(contractId);
|
|
|
if (contractInfo != null) {
|
|
@@ -433,6 +432,7 @@ public class ContractInfoServiceImpl extends BaseServiceImpl<ContractInfoMapper,
|
|
|
}
|
|
|
} else if (contractInfo.getContractType().equals(2) || contractInfo.getContractType().equals(3)) {
|
|
|
//TODO 监理、指挥部
|
|
|
+ Map<Long, List<WbsTreeContractTreeAllVO>> resultMaps = new LinkedHashMap<>();
|
|
|
List<ContractRelationJlyz> relationJLYZList = jdbcTemplate.query("select * from m_contract_relation_jlyz where contract_id_jlyz = " + contractId, new BeanPropertyRowMapper<>(ContractRelationJlyz.class));
|
|
|
if (ObjectUtil.isEmpty(relationJLYZList) || relationJLYZList.size() <= 0) {
|
|
|
return null;
|