80 lines
2.6 KiB
Plaintext
80 lines
2.6 KiB
Plaintext
<%@ page language="java" contentType="text/html; charset=UTF-8"
|
|
pageEncoding="UTF-8"%>
|
|
<%@ page import="com.pms.common.utils.*"%>
|
|
<%@ page import="java.util.*"%>
|
|
<%@include file="/init.jsp"%>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<link rel="stylesheet" href="css/basic.css">
|
|
<title><%=Constants.SYSTEM_NAME%></title>
|
|
|
|
<script>
|
|
$(function(){
|
|
$(document).ready(function(){
|
|
$("#btnModify").click(function(){
|
|
//if(confirm("Edit Mode로 이동하시겠습니까?")){
|
|
document.form1.action = "/admin/deptFormPopup.do";
|
|
document.form1.submit();
|
|
//}
|
|
});
|
|
});
|
|
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<section id="commonSection">
|
|
<div class=admin_title>
|
|
<h2>기타업체 관리</h2>
|
|
</div>
|
|
<div id="adminPopupFormWrap">
|
|
<form id="form1" name="form1" method="post">
|
|
<input type="hidden" name="deptCode" id="deptCode" value="${info.DEPT_CODE}" />
|
|
<table id="adminPopupForm">
|
|
<colgroup>
|
|
<col width="37%" />
|
|
<col width="63%" />
|
|
</colgroup>
|
|
<tbody>
|
|
<%-- <tr>
|
|
<td><label>업체구분</label></td>
|
|
<td style="font-size:13px;" class="admin_tr_data_border_bottom">${info.LOCATION_NAME}</td>
|
|
</tr> --%>
|
|
|
|
<tr>
|
|
<td><label>부서코드</label></td>
|
|
<td style="font-size:13px;" class="admin_tr_data_border_bottom">${info.DEPT_CODE}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label>회사명</label></td>
|
|
<td style="font-size:13px;" class="admin_tr_data_border_bottom">${info.COMPANY_NAME}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label>부서명</label></td>
|
|
<td style="font-size:13px;" class="admin_tr_data_border_bottom">${info.DEPT_NAME}</td>
|
|
</tr>
|
|
<tr>
|
|
<td><label for="">활성화 여부</label></td>
|
|
<td>
|
|
<select name="status" id="status" type="select" title="활성화 여부" disabled>
|
|
<option value="">선택</option>
|
|
<option value="active" ${info.STATUS eq 'active' ? 'selected' : ''}>활성화</option>
|
|
<option value="inActive" ${info.STATUS eq 'inActive' ? 'selected' : ''}>비활성화</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|
|
</div>
|
|
<div class="btnCenterWrap">
|
|
<center class="center_btns_wrap">
|
|
<input type="button" value="Edit" class="btns" id="btnModify">
|
|
<input type="button" value="닫기" name="" id="btn_close" class="btns" onclick="javascript:self.close();">
|
|
</center>
|
|
</div>
|
|
</secsion>
|
|
</body>
|
|
</html> |