代马帅提交
This commit is contained in:
parent
6aa9887316
commit
ed79555cd7
|
|
@ -509,6 +509,12 @@ public class LeaseApplyInfoServiceImpl implements ILeaseApplyInfoService {
|
||||||
if (detail.getTypeId() != null) {
|
if (detail.getTypeId() != null) {
|
||||||
List<MaCodeVo> maCodeVoList = maCodeMap.get(detail.getTypeId().toString());
|
List<MaCodeVo> maCodeVoList = maCodeMap.get(detail.getTypeId().toString());
|
||||||
if (!CollectionUtils.isEmpty(maCodeVoList)) {
|
if (!CollectionUtils.isEmpty(maCodeVoList)) {
|
||||||
|
if (StringUtils.isNotBlank(publishTask)) {
|
||||||
|
// 获取到maCodeVoList中publishTask与detail中publishTask相同的
|
||||||
|
maCodeVoList = maCodeVoList.stream()
|
||||||
|
.filter(maCode -> StringUtils.equals(maCode.getPublishTask(), publishTask))
|
||||||
|
.collect(Collectors.toList());
|
||||||
|
}
|
||||||
detail.setMaCodeVoList(maCodeVoList);
|
detail.setMaCodeVoList(maCodeVoList);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue