77 lines
2.1 KiB
Plaintext
77 lines
2.1 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">
|
|
<title><%=Constants.SYSTEM_NAME%></title>
|
|
</head>
|
|
<body>
|
|
<form name="form1" action="" method="post">
|
|
<section id="commonSection" class="admin_min">
|
|
<div class="admin_title">
|
|
<h2>제품군 관리</h2>
|
|
</div>
|
|
<div id="adminPopupFormWrap">
|
|
<table id="adminPopupForm">
|
|
<colgroup>
|
|
<col width="30%">
|
|
<col width="*">
|
|
</colgroup>
|
|
<tbody>
|
|
<tr>
|
|
<td><label>제품군 명</label></td>
|
|
<td><p></p></td>
|
|
</tr>
|
|
<tr>
|
|
<td><label>제품군 설명</label></td>
|
|
<td><p></p></td>
|
|
</tr>
|
|
<tr>
|
|
<td><label>활성화 여부</label></td>
|
|
<td class="no_bottom_border">
|
|
<select id="productGroupStatus" name="productGroupStatus">
|
|
<option value="active" ${productGroupInfo.STATUS eq 'active' ? 'selected' : ''}>활성화</option>
|
|
<option value="inActive" ${productGroupInfo.STATUS eq 'inActive' ? 'selected' : ''}>비활성화</option>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
<div class="oem_pso_wrap">
|
|
<div id="adminPopTableW">
|
|
<table id="adminPopTable">
|
|
<colgroup>
|
|
<col width="8%" />
|
|
<col width="30%" />
|
|
<col width="*%" />
|
|
<col width="18%" />
|
|
</colgroup>
|
|
<tr id="thead">
|
|
<td>코드</td>
|
|
<td>제품</td>
|
|
<td>설명</td>
|
|
<td>활성화 여부</td>
|
|
</tr>
|
|
<tr>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
<div class="btnCenterWrap">
|
|
<center class="center_btns_wrap">
|
|
<input type="button" value="저장" name="" id="" class="pdm_btns" onclick="saveEO();">
|
|
<input type="button" value="닫기" name="" id="btn_close" class="pdm_btns" onclick="javascript:self.close();">
|
|
</center>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html> |