|
|
@ -694,6 +694,11 @@ public class IcPartyActServiceImpl extends BaseServiceImpl<IcPartyActDao, IcPart |
|
|
|
|
|
|
|
//2.根据所属支部及查询条件筛选数据
|
|
|
|
List<IcPartyActListResultDTO> list = baseDao.selectresiPartyActList(formDTO); |
|
|
|
|
|
|
|
//3.封装数据
|
|
|
|
List<IcPartActTypeDTO> dict = actTypeList(formDTO.getCustomerId()); |
|
|
|
list.forEach(u -> dict.stream().filter(r -> u.getActType().equals(r.getValue())).forEach(d -> u.setActTypeName(d.getLabel()))); |
|
|
|
|
|
|
|
PageInfo<IcPartyActListResultDTO> pageInfo = new PageInfo<>(list); |
|
|
|
return new PageData<>(list, pageInfo.getTotal()); |
|
|
|
} |
|
|
|