|
@@ -84,6 +84,9 @@ public class ContractServiceImpl implements ContractService, InitializingBean {
|
|
|
private SysUserContractsService sysUserContractsService;
|
|
|
|
|
|
@Autowired
|
|
|
+ private SysUserContractsDao sysUserContractsDao;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
private StudentRegistrationService studentRegistrationService;
|
|
|
|
|
|
@Autowired
|
|
@@ -1155,6 +1158,11 @@ public class ContractServiceImpl implements ContractService, InitializingBean {
|
|
|
return BaseController.failed("用户不存在");
|
|
|
}
|
|
|
|
|
|
+ int validContactNum = sysUserContractsDao.countUserValidContact(userId);
|
|
|
+ if(validContactNum>0){
|
|
|
+ return BaseController.succeed();
|
|
|
+ }
|
|
|
+
|
|
|
if(StringUtils.isBlank(user.getRealName())||StringUtils.isBlank(user.getIdCardNo())){
|
|
|
return BaseController.failed(HttpStatus.PARTIAL_CONTENT, user, "");
|
|
|
}
|