|
@@ -17,6 +17,7 @@ import com.jkcredit.invoice.util.RespR;
|
|
import com.jkcredit.invoice.util.WordUtil;
|
|
import com.jkcredit.invoice.util.WordUtil;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.Api;
|
|
import io.swagger.annotations.ApiOperation;
|
|
import io.swagger.annotations.ApiOperation;
|
|
|
|
+import org.apache.commons.lang.StringUtils;
|
|
import org.apache.poi.util.IOUtils;
|
|
import org.apache.poi.util.IOUtils;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.bind.annotation.*;
|
|
@@ -231,21 +232,29 @@ public class CustomerController {
|
|
@ApiOperation(value="客户备案预警查询", notes="客户备案预警查询")
|
|
@ApiOperation(value="客户备案预警查询", notes="客户备案预警查询")
|
|
@LoginRequired
|
|
@LoginRequired
|
|
public RespR findCustomerRecTimeList(Page page, CustomerRec customerRec) {
|
|
public RespR findCustomerRecTimeList(Page page, CustomerRec customerRec) {
|
|
-
|
|
|
|
- Param param = paramService.getParamsByParamName("CUST_EARLY_WARNING");
|
|
|
|
- IPage ipage = customerRecService.findAllCustomerRec(page, customerRec);
|
|
|
|
- List<CustomerRec> lists = ipage.getRecords();
|
|
|
|
- if(lists.size()>0){
|
|
|
|
- //遍历删除
|
|
|
|
- Iterator<CustomerRec> iterator = lists.iterator();
|
|
|
|
- while (iterator.hasNext()) {
|
|
|
|
- CustomerRec customerRec1 = iterator.next();
|
|
|
|
- if (Integer.valueOf(param.getParamValue()) <= (DateUtil.daysBetween(customerRec1.getServiceEndTime(),new Date()))) {
|
|
|
|
- iterator.remove();//使用迭代器的删除方法删除
|
|
|
|
|
|
+ IPage ipage = null;
|
|
|
|
+ if(StringUtils.isNotEmpty(customerRec.getServiceEndTime()) && !"null".equals(customerRec.getServiceEndTime())){
|
|
|
|
+ String [] res =customerRec.getServiceEndTime().split(",");
|
|
|
|
+ customerRec.setServiceEndTimeStart(res[0]);
|
|
|
|
+ customerRec.setServiceEndTimeEnd(res[1]);
|
|
|
|
+ ipage = customerRecService.findAllCustomerRec(page, customerRec);
|
|
|
|
+ }else{
|
|
|
|
+ Param param = paramService.getParamsByParamName("CUST_EARLY_WARNING");
|
|
|
|
+ ipage = customerRecService.findAllCustomerRec(page, customerRec);
|
|
|
|
+ List<CustomerRec> lists = ipage.getRecords();
|
|
|
|
+ if(lists.size()>0){
|
|
|
|
+ //遍历删除
|
|
|
|
+ Iterator<CustomerRec> iterator = lists.iterator();
|
|
|
|
+ while (iterator.hasNext()) {
|
|
|
|
+ CustomerRec customerRec1 = iterator.next();
|
|
|
|
+ if (Integer.valueOf(param.getParamValue()) <= (DateUtil.daysBetween(customerRec1.getServiceEndTime(),new Date()))) {
|
|
|
|
+ iterator.remove();//使用迭代器的删除方法删除
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
+ ipage.setTotal(lists.size());
|
|
}
|
|
}
|
|
- ipage.setTotal(lists.size());
|
|
|
|
|
|
+
|
|
return new RespR(ipage);
|
|
return new RespR(ipage);
|
|
}
|
|
}
|
|
|
|
|