|
@@ -302,11 +302,13 @@ public class IdentityAuthenticationInfoServiceImpl extends ServiceImpl<IdentityA
|
|
|
if (identityAuthenticationInfo.getFlag() == 1) {
|
|
|
identityAuthenticationInfo1.setAuthenticationStatusKey(StatusEnum.IDENTITY_COMPLETED.getFlag());
|
|
|
identityAuthenticationInfo1.setAuthenticationStatus(StatusEnum.IDENTITY_COMPLETED.getName());
|
|
|
+ identityAuthenticationInfo1.setExaminer(identityAuthenticationInfo.getExaminer());
|
|
|
}
|
|
|
//驳回
|
|
|
else {
|
|
|
identityAuthenticationInfo1.setAuthenticationStatusKey(StatusEnum.IDENTITY_FAILED.getFlag());
|
|
|
identityAuthenticationInfo1.setAuthenticationStatus(StatusEnum.IDENTITY_FAILED.getName());
|
|
|
+ identityAuthenticationInfo1.setExaminer(identityAuthenticationInfo.getExaminer());
|
|
|
}
|
|
|
//更改粮商信息
|
|
|
this.updateById(identityAuthenticationInfo1);
|
|
@@ -358,6 +360,7 @@ public class IdentityAuthenticationInfoServiceImpl extends ServiceImpl<IdentityA
|
|
|
.eq(IdentityAuthenticationInfo.QueryFiles.DELETE_FLAG, NumberConstant.CONSTANT0);
|
|
|
identityAuthenticationInfoWrapper.andNew("replace(" + "customer_name" + ",' ','')like {0} or "
|
|
|
+ "customer_phone" + " like {0} or "
|
|
|
+ + "customer_type" + " like {0} or "
|
|
|
+ "customer_number_card" + " like {0}", "%" + identityAuthenticationInfo.getSearchKeyWord() + "%");
|
|
|
identityAuthenticationInfoWrapper.orderBy("update_date", false);
|
|
|
}
|