ERP-node/WebContent/WEB-INF/view/admin/product/adminProductViewPopup.jsp

64 lines
1.8 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 class="no_bottom_border">
<select type="select" title="제품군" id="productGroupObjid" name="productGroupObjid" required>
<option value="">선택</option>
</select>
</td>
</tr>
<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><p></p></td>
</tr>
<tr>
<td><label>활성화 여부</label></td>
<td class="no_bottom_border">
<select id="status" name="status">
<option value="active" ${productInfo.STATUS eq 'active'?'selected':''}>활성화</option>
<option value="inActive" ${productInfo.STATUS eq 'inActive'?'selected':''}>비활성화</option>
</select>
</td>
</tr>
</tbody>
</table>
<div id="adminPopupBtnWrap">
<span id="overlapStatus"></span>
<input type="button" value="저장" class="btns">
<input type="button" value="중복확인" class="btns">
</div>
</div>
</section>
</form>
</body>
</html>