- Add Docker Compose configurations for dev, prod, and standalone environments - Add database initialization scripts (init-db.sh, init-db-docker.sh) - Add enhanced start-docker-linux.sh with DB init support - Add comprehensive database initialization guide - Support for automatic dbexport.pgsql import on first run - Include safety checks for production environment
110 lines
3.8 KiB
Plaintext
110 lines
3.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_jqGrid.jsp"%>
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title><%=Constants.SYSTEM_NAME%></title>
|
|
<script>
|
|
$(document).ready(function(){
|
|
|
|
$("#btnSearch").click(function(){
|
|
$("#search_partNo").val($.trim($("#search_partNo").val()));
|
|
$("#search_partName").val($.trim($("#search_partName").val()));
|
|
|
|
fn_search();
|
|
});
|
|
});
|
|
|
|
function fn_search() {
|
|
document.form1.action = "/salesMng/searchOrderSpecMngList.do";
|
|
document.form1.submit();
|
|
}
|
|
|
|
</script>
|
|
</head>
|
|
<body class="backcolor">
|
|
<form name="form1" id="form1" action="" method="post">
|
|
<div class="min_part_enroll">
|
|
<div class="content-box">
|
|
<div class="content-box-s">
|
|
<div class="plm_menu_name">
|
|
<h2>
|
|
<span>발주특성 관리 이력</span>
|
|
</h2>
|
|
</div>
|
|
<div class="contents_page_basic_margin">
|
|
<div class="ascendig_text">
|
|
<font size="3px">총 ${fn:length(LIST)}건</font>
|
|
</div>
|
|
<div class="plm_table_wrap">
|
|
<div style="overflow-y:scroll;">
|
|
<table class="plm_table">
|
|
<colgroup>
|
|
<col width="4%" /> <!-- No -->
|
|
<col width="6%" /> <!-- 순위 -->
|
|
<col width="20%" /> <!-- 공급업체명 -->
|
|
<col width="9%" /> <!-- 단가 -->
|
|
<col width="12%" /> <!-- 단가적용일 -->
|
|
<col width="*" /> <!-- 비고 -->
|
|
</colgroup>
|
|
<thead>
|
|
<tr class="plm_thead">
|
|
<td>No </td>
|
|
<td>순위 </td>
|
|
<td>공급업체명 </td>
|
|
<td>단가 </td>
|
|
<td>단가적용일 </td>
|
|
<td>비고 </td>
|
|
</tr>
|
|
</thead>
|
|
</table>
|
|
</div>
|
|
<div>
|
|
<div class="plm_scroll_table" style="height:300px;">
|
|
<table class="plm_table">
|
|
<colgroup>
|
|
<col width="4%" /> <!-- No -->
|
|
<col width="6%" /> <!-- 순위 -->
|
|
<col width="20%" /> <!-- 공급업체명 -->
|
|
<col width="9%" /> <!-- 단가 -->
|
|
<col width="12%" /> <!-- 단가적용일 -->
|
|
<col width="*" /> <!-- 비고 -->
|
|
</colgroup>
|
|
<c:choose>
|
|
<c:when test="${empty LIST}">
|
|
<tr style="text-align: center;">
|
|
<td align="center" colspan="6">조회된 데이터가 없습니다.</td>
|
|
</tr>
|
|
</c:when>
|
|
<c:otherwise>
|
|
<c:forEach var="item" items="${LIST}" varStatus="varStatus">
|
|
<tr>
|
|
<td>${item.RNUM}</td><!-- 순 -->
|
|
<td title="${item.SEQ}">${item.SEQ}</td><!-- 품번 -->
|
|
<td title="${item.PARTNER_NAME}" class="align_c">${item.PARTNER_NAME}</td><!-- Revision -->
|
|
<td title="${item.PARTNER_PRICE}">${item.PARTNER_PRICE}</td><!-- 품명 -->
|
|
<td title="${item.APPLY_DATE}">${item.APPLY_DATE}</td><!-- 품명 -->
|
|
<td title="${item.REMARK}" class="align_l" style="text-align: left; padding-left: 5px;">${item.REMARK}</td><!-- 품명 -->
|
|
</tr>
|
|
</c:forEach>
|
|
</c:otherwise>
|
|
</c:choose>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
<style>
|
|
.container::-webkit-scrollbar-thumb {background: linear-gradient(to bottom, #f5d78e, #f5d78e) !important;}
|
|
.container::-webkit-scrollbar-track {background-color: white !important;}
|
|
.container::-webkit-scrollbar-button { display: none !important;}
|
|
</style>
|
|
</html> |