|
@@ -97,7 +97,7 @@ public class ProjectImportListServiceImpl extends ServiceImpl<ProjectImportListM
|
|
|
String taskno = chb.getTaskno();
|
|
|
String nd = chb.getNd();
|
|
|
String kmbh = chb.getKmbh();
|
|
|
- if(!Objects.equals(taskno,"") && !Objects.equals(nd,"") && !Objects.equals(kmbh,"")){
|
|
|
+ if(taskno!=null && !taskno.equals("") && nd!=null && !nd.equals("") && kmbh!=null && !kmbh.equals("")){
|
|
|
String fylb = kmbhService.getByNdAndKmbh(nd, kmbh);//费用类别
|
|
|
if(Objects.equals(fylb,"事务费")){
|
|
|
swfList.add(CHBConvert.INSTANCE.toSWF(chb));
|