zioinfo-mail/zioinfo/user/UserView.jsp
DESKTOP-TKLFCPR\ython e228faabf5 feat(itsm): G-1~G-12 확장 기능 + 하네스/봇/설치스크립트 구현
G-1: 메신저 Webhook Relay + _send_to_room 실제 httpx 호출 구현
G-2: POST /api/tasks/bulk SR 대량작업 엔드포인트 (최대 100건)
G-3: 라이선스 만료 알림 스케줄러 (매일 09:00 KST)
G-4: 체험판 upgrade_banner 필드 + license.py 배너 로직
G-5: core/auto_rca.py + incidents/problem auto-rca 엔드포인트
G-6: core/deploy_impact.py + vibe impact-analysis 엔드포인트
G-7: core/ticket_classifier.py + SR 생성 시 AI 분류 + ai-suggestion API
G-8: VulnPatchRecord 모델 + vuln_scan 패치추적 4개 엔드포인트
G-9: core/jira_sync.py + gateway Jira/Confluence 연동 엔드포인트
G-10: core/push_notify.py + routers/push.py + PushSubscription 모델
G-11: approvals 다중승인 (위임/서명/기한초과/마감연장)
G-12: alembic.ini + migrations/ + cicd/migrate_to_postgres.sh

하네스: guardia-orchestrator 확장기능 Phase 반영
봇명령어: /sr /status /license /bulk 슬래시 명령어 추가
설치스크립트: setup/ (Ubuntu, CentOS, RHEL, Windows) --test 옵션 포함

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-29 18:18:52 +09:00

156 lines
3.9 KiB
Plaintext

<%@ page language="java" pageEncoding="EUC-KR"%>
<%@ include file="/jsp/include/commonVariable.jspf"%>
<%
// 검색조건과, 페이징에 관련된 파라미터만 연결한다.
String paramString = new StringBuffer().append("searchKeyword=").append(parameterMap.getValue("searchKeyword")).append("&searchColumn=").append(parameterMap.getValue("searchColumn")).append("&pageNo=").append(parameterMap.getValue("pageNo", "1")).append("&pageSize=").append(parameterMap.getValue("pageSIze", "10")).toString();
%>
<bean:define id="userInfo" name="userBean" property="user"></bean:define>
<html:html locale="true">
<head>
<html:base />
<title>회원정보 보기</title>
<%@ include file="/jsp/include/header.jspf"%>
<%@ include file="/jsp/include/css.jspf"%>
<%@ include file="/jsp/include/javascript.jspf"%>
<script type="text/javascript">
function init() {
}
</script>
</head>
<body onload="init()">
<div class="container">
<div
style="background-color: transparent; text-align: right;font-family:돋움; font-size:8pt;">
회원관리 &gt;
<strong>회원 상세보기</strong>
</div>
<!-- <h2>상세</h2> -->
<div class="tableZone">
<%
//테이블영역
%>
<table class="view" cellspacing="0" cellpadding="0">
<colgroup>
<col width="100" align="center"></col>
<col width="220" align="left"></col>
<col width="100" align="center"></col>
<col width="200" align="left"></col>
</colgroup>
<tbody>
<tr>
<th>
아이디
</th>
<td>
${userBean.user.memberID}&nbsp;
</td>
<th>
이 름
</th>
<td id="lastColumn">
${userBean.user.memberName}&nbsp;
</td>
</tr>
<tr>
<th>
이메일
</th>
<td>
${userBean.user.email}&nbsp;
</td>
<th>
생년월일
</th>
<td id="lastColumn">
${userBean.user.birthDay}&nbsp;
</td>
</tr>
<tr>
<th>
휴대폰
</th>
<td>
${userBean.user.handPhone}&nbsp;
</td>
<th>
가입일
</th>
<td id="lastColumn">
<bean:write name="userInfo" property="startDate"
format="yyyy-MM-dd" />
&nbsp;
</td>
</tr>
<tr>
<th>
주 소
</th>
<td id="lastColumn" colspan="3">
${userBean.user.address1}&nbsp;${userBean.user.address2}
</td>
</tr>
<tr>
<th>
전화번호
</th>
<td>
${userBean.user.phone}&nbsp;
</td>
<th>
회원등급
</th>
<td id="lastColumn">
${userBean.user.level}&nbsp;
</td>
</tr>
<tr>
<th>
직 업
</th>
<td>
${userBean.user.userJob}&nbsp;
</td>
<th>
직장명
</th>
<td id="lastColumn">
${userBean.user.companyName}&nbsp;
</td>
</tr>
</tbody>
</table>
</div>
<div class="buttonZone">
<button class="normal" onmouseover="toggleButtonClassName(this);"
onmouseout="toggleButtonClassName(this);"
onclick="JavaScript:history.go(-1);">
목록
</button>
<c:if test="${userBean.user.outFlag == '0'}">
<!-- 정상회원 -->
<button class="normal" style="width:65px"
onmouseover="toggleButtonClassName(this);"
onmouseout="toggleButtonClassName(this);"
onclick="confirmation('<%=contextPath%>/user/removeUser.do?memberID=${userBean.user.memberID}&outFlag=${userBean.user.outFlag}', '<bean:message key="msg.user.confirmWithdraw"/>');">
강제탈퇴
</button>
</c:if>
<c:if test="${userBean.user.outFlag == '1'}">
<!-- 탈퇴회원 -->
<button class="normal" style="width:65px"
onmouseover="toggleButtonClassName(this);"
onmouseout="toggleButtonClassName(this);"
onclick="confirmation('<%=contextPath%>/user/removeUser.do?memberID=${userBean.user.memberID}&outFlag=${userBean.user.outFlag}', '<bean:message key="msg.user.confirmWithdraw"/>');">
탈퇴승인
</button>
</c:if>
</div>
</div>
</body>
</html:html>