zioinfo-mail/zioinfo/user/UserPostNumber.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

187 lines
5.6 KiB
Plaintext

<%@ page language="java" pageEncoding="EUC-KR"%>
<%@ include file="/jsp/include/commonVariable.jspf"%>
<bean:define id="postList" name="userBean" property="selectPostNumber"></bean:define>
<script language="JavaScript" src="<%=contextPath%>/js/matiComm.js"></script>
<script language="javascript" src="<%=contextPath %>/js/prototype.js"></script>
<script type="text/JavaScript">
function init()
{
$('user.searchValue').focus();
}
function clickSearch()
{
var form = document.listForm;
var checker = new FormChecker(form);
checker.checkRequired('user.searchValue', '동 이름을 입력하세요', true);
if (checker.validate()) {
form.submit();
}
}
// 우편번호 클릭하면...
function clickSelect(zip1, zip2, address)
{
opener.writeForm.zipcode1.value = zip1;
opener.writeForm.zipcode2.value = zip2;
opener.writeForm.address1.value = address;
opener.writeForm.address2.focus();
window.close();
}
</script>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr">
<title>Untitled Document</title>
<link href="<%=contextPath%>/css/global.css" rel="stylesheet"
type="text/css">
</head>
<body onload="init()">
<table width="310" cellspacing="0" cellpadding="0">
<tr>
<td align="center">
<img src="<%=contextPath%>/images/user/postnumber_tit.gif"
vspace="10">
<table width="290" cellspacing="0" cellpadding="0">
<tr>
<td height="12">
<img
src="<%=contextPath%>/images/user/repetition_line_top_01.gif">
</td>
<td width="262" height="12"
background="<%=contextPath%>/images/user/repetition_line_top_bg.gif"></td>
<td>
<img
src="<%=contextPath%>/images/user/repetition_line_top_02.gif">
</td>
</tr>
<tr>
<td
background="<%=contextPath%>/images/user/repetition_line_left.gif">
&nbsp;
</td>
<td>
<form method="post" name="listForm">
<table width="262" cellspacing="0" cellpadding="0">
<tr>
<td height="40" align="center">읍/면/동
<input type="text" name="user.searchValue">
<img src="<%=contextPath%>/images/user/bt_s_search.gif"
hspace="2" align="absmiddle" onClick="clickSearch();"
style="cursor:hand">
</td>
</tr>
<tr>
<td height="40" align="center">
<table width="260" cellspacing="0" cellpadding="0">
<tr>
<td height="12">
<img
src="<%=contextPath%>/images/user/repetition_line_top_01.gif">
</td>
<td width="262" height="12"
background="<%=contextPath%>/images/user/repetition_line_top_bg.gif"></td>
<td>
<img
src="<%=contextPath%>/images/user/repetition_line_top_02.gif">
</td>
</tr>
<tr>
<td
background="<%=contextPath%>/images/user/repetition_line_left.gif">
&nbsp;
</td>
<td>
<table width="230" cellspacing="1" cellpadding="1">
<tr>
<td width="62" height="20" align="center"
bgcolor="efefef">
<b>우편번호</b>
</td>
<td width="170" height="20" align="center"
bgcolor="efefef">
<b>주소</b>
</td>
</tr>
<logic:iterate id="zip" name="postList">
<tr>
<td align="center">
<bean:write name="zip" property="zipcode1" />
-
<bean:write name="zip" property="zipcode2" />
</td>
<td align="left">
<a href="#"
onClick="clickSelect('<bean:write name="zip" property="zipcode1" />', '<bean:write name="zip" property="zipcode2" />', '<bean:write name="zip" property="address1" />')"><bean:write
name="zip" property="address1" />
</td>
</tr>
<tr>
<td colspan="2" height="1" bgcolor="#c1acde"></td>
</tr>
</logic:iterate>
</table>
</td>
<td
background="<%=contextPath%>/images/user/repetition_line_right.gif">
&nbsp;
</td>
</tr>
<tr>
<td
background="<%=contextPath%>/images/user/repetition_line_bottom_01.gif">
&nbsp;
</td>
<td
background="<%=contextPath%>/images/user/repetition_line_bottom_bg.gif">
&nbsp;
</td>
<td
background="<%=contextPath%>/images/user/repetition_line_bottom_02.gif">
&nbsp;
</td>
</tr>
</table>
</td>
</tr>
</table>
</form>
</td>
<td
background="<%=contextPath%>/images/user/repetition_line_right.gif">
&nbsp;
</td>
</tr>
<tr>
<td
background="<%=contextPath%>/images/user/repetition_line_bottom_01.gif">
&nbsp;
</td>
<td
background="<%=contextPath%>/images/user/repetition_line_bottom_bg.gif">
&nbsp;
</td>
<td
background="<%=contextPath%>/images/user/repetition_line_bottom_02.gif">
&nbsp;
</td>
</tr>
</table>
<img src="<%=contextPath%>/images/user/bt_s_close.gif"
vspace="15" onClick="window.close();" style="cursor:hand">
</td>
</tr>
</table>
</body>
</html>