Files
wace_plm/WebContent/WEB-INF/view/massProductionTransfer/moldTransferFileFormPopUp.jsp
chpark da06c4684c Initial commit: WACE PLM with database initialization features
- 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
2025-08-29 15:46:08 +09:00

72 lines
2.3 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>
<script>
$(document).ready(function(){
$("#btn_close").click(function(){
self.close(0);
});
});
</script>
</head>
<body>
<form name="form1" action="" method="post">
<section style="business_staff_popup_min_width">
<div class="plm_menu_name">
<h2>
<span>금형 인수인계 현황</span>
</h2>
</div>
<div id="businessPopupFormWrap">
<div class="form_popup_title">&nbsp;&nbsp;&nbsp;금형 인수인계 현황 자료등록</div>
<table class="pmsPopupForm">
<tr>
<td rowspan="2" class="input_title">파일첨부</td>
<td colspan="5">
<div id="srDropZone" class="dropzone">Drag & Drop Files Here</div>
<div id="" class="spec_data_in_table">
<div style="overflow-y:scroll;">
<table id="" class="fileListscrollThead" style="width:100% !important;">
<colgroup>
<col width="10%">
<col width="*">
<col width="15%">
<col width="15%">
<col width="15%">
</colgroup>
<tr>
<td>No</td>
<td>파일명</td>
<td>부서</td>
<td>등록자</td>
<td>등록일</td>
</tr>
</table>
</div>
<div style="width:100%; height: 90px; overflow-y: scroll; border-bottom: 2px solid #cacaca;">
<table id="" class="fileListscrollTbody">
</table>
</div>
</div>
</td>
</tr>
</table>
<div class="btn_wrap">
<div class="plm_btn_wrap_center">
<input type="button" value="닫기" id="btn_close" class="plm_btns">
</div>
</div>
</div>
</section>
</form>
</body>
</html>