| | |
| | | user.setAgentProvinceCode(province); |
| | | user.setAgentCityCode(city); |
| | | user.setAgentCountyCode(county); |
| | | log.info("用户:{}修改了营销员城市地址",user.getRealName()); |
| | | } |
| | | // user.setSignature(info.signature); |
| | | // user.setAddress(info.address); |
| | |
| | | vo.setIdCard(user.getIdCard()); |
| | | vo.setImAccount(user.getImAccount()); |
| | | vo.setImPassword(user.getImPassword()); |
| | | |
| | | vo.setIsLeaveOffice(user.getIsLeaveOffice()); |
| | | //在职 |
| | | boolean condition1 = user.getIsLeaveOffice() == 0 && user.getAuditState() == 1; |
| | | //已提交申请 |
| | | boolean condition2 = user.getIsLeaveOffice() == 1 && user.getAuditState() == 0; |
| | | if (condition1 || condition2) { |
| | | vo.setModifyUserInfo(Boolean.FALSE); |
| | | } |
| | | return vo; |
| | | } |
| | | |