기업회원 마이페이지 > 정보 변경 및 담당자 정보 변경시 Slack 알림 발송 기능 추가
@565c6286e5cd9c414a151c12ca1ab4eafc198f3a
--- src/main/java/itn/let/uat/uia/web/EgovMypageController.java
+++ src/main/java/itn/let/uat/uia/web/EgovMypageController.java
... | ... | @@ -847,6 +847,11 @@ |
| 847 | 847 |
|
| 848 | 848 |
|
| 849 | 849 |
mberManageService.insertCmpUsrHst(mberManageVO); |
| 850 |
+ |
|
| 851 |
+ //Slack 알림 전송 처리 |
|
| 852 |
+ String msg = "[문자온] 기업회원 담당자변경 요청 - " + mberManageVO.getMberNm() +"("+ mberManageVO.getMberId() + ")";
|
|
| 853 |
+ mjonCommon.sendSimpleSlackMsg(msg); |
|
| 854 |
+ |
|
| 850 | 855 |
} |
| 851 | 856 |
|
| 852 | 857 |
modelAndView.addObject("result", "success");
|
... | ... | @@ -927,6 +932,10 @@ |
| 927 | 932 |
|
| 928 | 933 |
mberManageService.insertCmpUsrHst(mberManageVO); |
| 929 | 934 |
|
| 935 |
+ //Slack 알림 처리 |
|
| 936 |
+ String msg = "[문자온] 기업회원 정보변경 요청 - " + mberManageVO.getMberNm() +"("+ mberManageVO.getMberId() + ")";
|
|
| 937 |
+ mjonCommon.sendSimpleSlackMsg(msg); |
|
| 938 |
+ |
|
| 930 | 939 |
modelAndView.addObject("result", "success");
|
| 931 | 940 |
|
| 932 | 941 |
}catch (Exception e) {
|
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?