|
@@ -60,14 +60,19 @@ public class ProposalInfoServiceImpl implements IProposalInfoService
|
|
zxFj.setType("1");
|
|
zxFj.setType("1");
|
|
List<ZxFj> zxFjList = zxFjMapper.selectZxFjList(zxFj);
|
|
List<ZxFj> zxFjList = zxFjMapper.selectZxFjList(zxFj);
|
|
List<ZxFj> fjList = new ArrayList<>();
|
|
List<ZxFj> fjList = new ArrayList<>();
|
|
|
|
+ List<ZxFj> dfwyFjList = new ArrayList<>();
|
|
if(zxFjList!=null && zxFjList.size()>0){
|
|
if(zxFjList!=null && zxFjList.size()>0){
|
|
for (ZxFj fj : zxFjList) {
|
|
for (ZxFj fj : zxFjList) {
|
|
if("4".equals(fj.getStytle())){
|
|
if("4".equals(fj.getStytle())){
|
|
fjList.add(fj);
|
|
fjList.add(fj);
|
|
}
|
|
}
|
|
|
|
+ if("5".equals(fj.getStytle())){
|
|
|
|
+ dfwyFjList.add(fj);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
|
|
|
|
proposalInfo.setZxFjList(fjList);
|
|
proposalInfo.setZxFjList(fjList);
|
|
|
|
+ proposalInfo.setDfFjList(dfwyFjList);
|
|
}
|
|
}
|
|
//查询人员
|
|
//查询人员
|
|
ProposalUser proposalUser = new ProposalUser();
|
|
ProposalUser proposalUser = new ProposalUser();
|