헤더 영역 후불제 회원 체크 기능 오류 수정
- 관리자 로그인 후 신규 브라우저 탭에서 문자온 접속시 헤더영역 오류 발생 -> 회원테이블에 관리자 정보가 없는 상태에서 후불제 정보를 찾아서 Null 오류 발생하였음
This commit is contained in:
parent
fafde9249d
commit
a085e6b35f
@ -1178,7 +1178,11 @@ public class MainController {
|
||||
userManageVO = userManageService.selectAdminSmsNoticeYn(userManageVO);
|
||||
}
|
||||
|
||||
model.addAttribute("prePaymentYn", userManageVO.getPrePaymentYn());
|
||||
String prePaymentYn = "";
|
||||
if(userManageVO.getPrePaymentYn() != null) {
|
||||
prePaymentYn = userManageVO.getPrePaymentYn();
|
||||
}
|
||||
model.addAttribute("prePaymentYn", prePaymentYn);
|
||||
|
||||
return "web/com/webCommonHeader";
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user