|
@@ -29,7 +29,6 @@ import org.jeecg.modules.smscheck.entity.*;
|
|
|
import org.jeecg.modules.smscheck.entity.excel.SpecialExaminationExport;
|
|
import org.jeecg.modules.smscheck.entity.excel.SpecialExaminationExport;
|
|
|
import org.jeecg.modules.smscheck.enums.SpecialExaminationReopen;
|
|
import org.jeecg.modules.smscheck.enums.SpecialExaminationReopen;
|
|
|
import org.jeecg.modules.smscheck.service.*;
|
|
import org.jeecg.modules.smscheck.service.*;
|
|
|
-import org.jeecg.modules.smscheck.service.impl.SmsCheckTaskServiceImpl;
|
|
|
|
|
import org.jeecg.modules.smscheck.vo.SpecialExaminationCustomerVo;
|
|
import org.jeecg.modules.smscheck.vo.SpecialExaminationCustomerVo;
|
|
|
import org.jeecg.modules.smscheck.vo.SpecialExaminationVo;
|
|
import org.jeecg.modules.smscheck.vo.SpecialExaminationVo;
|
|
|
import org.jeecgframework.poi.excel.ExcelImportUtil;
|
|
import org.jeecgframework.poi.excel.ExcelImportUtil;
|
|
@@ -45,7 +44,6 @@ import org.springframework.web.servlet.ModelAndView;
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
import javax.annotation.Resource;
|
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
|
-import java.text.SimpleDateFormat;
|
|
|
|
|
import java.util.*;
|
|
import java.util.*;
|
|
|
import java.util.function.Function;
|
|
import java.util.function.Function;
|
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Collectors;
|
|
@@ -431,6 +429,8 @@ public class SpecialExaminationContrller extends JeecgController<SmsCheckCustome
|
|
|
info.setTaskId(generate);
|
|
info.setTaskId(generate);
|
|
|
info.setStaffUsername(sysUser.getUsername());
|
|
info.setStaffUsername(sysUser.getUsername());
|
|
|
info.setStaffName(sysUser.getRealname());
|
|
info.setStaffName(sysUser.getRealname());
|
|
|
|
|
+ // 客户经理手机号
|
|
|
|
|
+ info.setAccountManagerPhone(sysUser.getPhone());
|
|
|
info.setDelFlag(CommonConstant.DEL_FLAG_0);
|
|
info.setDelFlag(CommonConstant.DEL_FLAG_0);
|
|
|
// 0:未处理;1:未完善;2:待稽核;3:待整改;4:已整改;5:稽核通过;
|
|
// 0:未处理;1:未完善;2:待稽核;3:待整改;4:已整改;5:稽核通过;
|
|
|
info.setCheckState(CheckStateCode.CHECK_STSTE_0);
|
|
info.setCheckState(CheckStateCode.CHECK_STSTE_0);
|
|
@@ -556,7 +556,7 @@ public class SpecialExaminationContrller extends JeecgController<SmsCheckCustome
|
|
|
//@AutoLog(value = "客户信息-通过id查询")
|
|
//@AutoLog(value = "客户信息-通过id查询")
|
|
|
@ApiOperation(value = "客户信息-通过id查询 稽核统计数", notes = "客户信息-通过id查询 稽核统计数")
|
|
@ApiOperation(value = "客户信息-通过id查询 稽核统计数", notes = "客户信息-通过id查询 稽核统计数")
|
|
|
@GetMapping(value = "/type/count")
|
|
@GetMapping(value = "/type/count")
|
|
|
- @PermissionData(pageComponent = "smscheck/modules/TaskCheckList")
|
|
|
|
|
|
|
+ @PermissionData(pageComponent = "specialApply/modules/TaskCheckList")
|
|
|
public Result<Dict> count(HttpServletRequest request) {
|
|
public Result<Dict> count(HttpServletRequest request) {
|
|
|
Dict dict = Dict.create();
|
|
Dict dict = Dict.create();
|
|
|
//0:未处理;1:未完善;2:待稽核; ;4:待整改;5:稽核通过;*/
|
|
//0:未处理;1:未完善;2:待稽核; ;4:待整改;5:稽核通过;*/
|
|
@@ -612,6 +612,7 @@ public class SpecialExaminationContrller extends JeecgController<SmsCheckCustome
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
@RequestMapping(value = "/exportXls")
|
|
@RequestMapping(value = "/exportXls")
|
|
|
|
|
+ @PermissionData(pageComponent = "specialApply/modules/TaskCheckList")
|
|
|
public ModelAndView exportXls(HttpServletRequest request, SmsCheckCustomerInfo smsCheckCustomerInfo) {
|
|
public ModelAndView exportXls(HttpServletRequest request, SmsCheckCustomerInfo smsCheckCustomerInfo) {
|
|
|
smsCheckCustomerInfo.setType(3);
|
|
smsCheckCustomerInfo.setType(3);
|
|
|
return exportXls(request, smsCheckCustomerInfo, SpecialExaminationExport.class, "特审复开信息");
|
|
return exportXls(request, smsCheckCustomerInfo, SpecialExaminationExport.class, "特审复开信息");
|
|
@@ -672,10 +673,14 @@ public class SpecialExaminationContrller extends JeecgController<SmsCheckCustome
|
|
|
if (smcSpecialCheckLog.getNumberCardState() != null && !smcSpecialCheckLog.getNumberCardState().equals(smcSpecialCheckLogHistory.getNumberCardState())){
|
|
if (smcSpecialCheckLog.getNumberCardState() != null && !smcSpecialCheckLog.getNumberCardState().equals(smcSpecialCheckLogHistory.getNumberCardState())){
|
|
|
specialExaminationExport.setNumberCardStateIs(1);
|
|
specialExaminationExport.setNumberCardStateIs(1);
|
|
|
}
|
|
}
|
|
|
|
|
+ if (smcSpecialCheckLog.getHandNumberCardState() != null && !smcSpecialCheckLog.getHandNumberCardState().equals(smcSpecialCheckLogHistory.getHandNumberCardState())){
|
|
|
|
|
+ specialExaminationExport.setHandNumberCardStateIs(1);
|
|
|
|
|
+
|
|
|
if (smcSpecialCheckLog.getLetterCommitmentState() != null && !smcSpecialCheckLog.getLetterCommitmentState().equals(smcSpecialCheckLogHistory.getLetterCommitmentState())){
|
|
if (smcSpecialCheckLog.getLetterCommitmentState() != null && !smcSpecialCheckLog.getLetterCommitmentState().equals(smcSpecialCheckLogHistory.getLetterCommitmentState())){
|
|
|
specialExaminationExport.setLetterCommitmentStateIs(1);
|
|
specialExaminationExport.setLetterCommitmentStateIs(1);
|
|
|
}
|
|
}
|
|
|
- if (smcSpecialCheckLog.getNumberCardState() != null && !smcSpecialCheckLog.getNumberCardState().equals(smcSpecialCheckLogHistory.getNumberCardState())){
|
|
|
|
|
|
|
+ }
|
|
|
|
|
+ if (smcSpecialCheckLog.getBusinessLicenseState() != null && !smcSpecialCheckLog.getBusinessLicenseState().equals(smcSpecialCheckLogHistory.getBusinessLicenseState())){
|
|
|
specialExaminationExport.setBusinessLicenseStateIs(1);
|
|
specialExaminationExport.setBusinessLicenseStateIs(1);
|
|
|
}
|
|
}
|
|
|
if (smcSpecialCheckLog.getLetterIntroductionState() != null && !smcSpecialCheckLog.getLetterIntroductionState().equals(smcSpecialCheckLogHistory.getLetterIntroductionState())){
|
|
if (smcSpecialCheckLog.getLetterIntroductionState() != null && !smcSpecialCheckLog.getLetterIntroductionState().equals(smcSpecialCheckLogHistory.getLetterIntroductionState())){
|