parent
f23ed0e444
commit
2fcc444b35
|
|
@ -111,6 +111,9 @@ public class UserInfoService implements UserDetailsService {
|
|||
if(!ObjectUtils.isEmpty(userInfo.getUserStatus())){
|
||||
savedInfo.setUserStatus(userInfo.getUserStatus());
|
||||
}
|
||||
if(!ObjectUtils.isEmpty(userInfo.getDutyCd())){
|
||||
savedInfo.setDutyCd(userInfo.getDutyCd());
|
||||
}
|
||||
userInfoRepository.save(savedInfo);
|
||||
saveUserInfoHistory(savedInfo, loginUser);
|
||||
}
|
||||
|
|
|
|||
|
|
@ -31,8 +31,8 @@
|
|||
<div class="col-sm-2">
|
||||
<select class="form-select form-select-sm" id="majorType" name="majorType">
|
||||
<option value="">선택해주세요.</option>
|
||||
<th:block th:each="commonCode:${session.commonCode.get('MST')}">
|
||||
<option th:value="${commonCode.itemCd}" th:text="${commonCode.itemValue}" th:selected="${commonCode.itemCd eq majorStatus.majorType}"></option>
|
||||
<th:block th:each="code:${session.commonCode.get('MST')}">
|
||||
<option th:if="${code.useChk eq 'T'}" th:value="${code.itemCd}" th:text="${code.itemValue}" th:selected="${code.itemCd eq majorStatus.majorType}"></option>
|
||||
</th:block>
|
||||
</select>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue