|
@ -49,7 +49,6 @@ public class SignDataFilter {
|
|
@Autowired
|
|
@Autowired
|
|
private CachePool cachePool;
|
|
private CachePool cachePool;
|
|
|
|
|
|
private int count=0;
|
|
|
|
/**
|
|
/**
|
|
* 过滤数据
|
|
* 过滤数据
|
|
* @param signFamilies 签约列表
|
|
* @param signFamilies 签约列表
|
|
@ -332,14 +331,8 @@ public class SignDataFilter {
|
|
}
|
|
}
|
|
|
|
|
|
private String getExpenses(SignFamily signFamily) {
|
|
private String getExpenses(SignFamily signFamily) {
|
|
if("1".equals(signFamily.getExpensesStatus())){
|
|
|
|
count++;
|
|
|
|
}
|
|
|
|
String returnLevel2Key= signFamily.getExpensesStatus();
|
|
String returnLevel2Key= signFamily.getExpensesStatus();
|
|
if(returnLevel2Key==null){
|
|
|
|
returnLevel2Key="0";
|
|
|
|
}
|
|
|
|
if("".equals(returnLevel2Key.trim())){
|
|
|
|
|
|
if(StringUtils.isEmpty(returnLevel2Key)){
|
|
returnLevel2Key="0";
|
|
returnLevel2Key="0";
|
|
}
|
|
}
|
|
return returnLevel2Key;
|
|
return returnLevel2Key;
|