Compare commits

..

No commits in common. "7c82124d632bf96ff6c0d4309d0a9f2823759827" and "f5b0c1ec3b1ba057833be0e171f71aedde604e68" have entirely different histories.

1 changed files with 5 additions and 0 deletions

View File

@ -527,6 +527,11 @@ public class UsersController extends BaseController {
} }
usersService.editUser(pd); //执行修改 usersService.editUser(pd); //执行修改
if ("true".equals(pd.getString("ISSTUDENT"))) { if ("true".equals(pd.getString("ISSTUDENT"))) {
if (!IdcardUtils.validateCard(pd.getString("USER_ID_CARD"))) {
map.put("result", "errInfo");
map.put("msg", "身份证号校验不通过,请核对信息");
return map;
}
if ("select".equals(pd.getString("letDutiesType"))) { if ("select".equals(pd.getString("letDutiesType"))) {
pd.put("DUTIES", pd.getString("DUTIES")); pd.put("DUTIES", pd.getString("DUTIES"));
} else { } else {