27 lines
831 B
Plaintext
27 lines
831 B
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>
|
|
<script>
|
|
function fn_saveInfo(){
|
|
parent.addPartSearchPopUpBottomFS.addPartSearchPopUpLeft.fn_saveConnectedPartInfo();
|
|
}
|
|
</script>
|
|
|
|
<body>
|
|
<form name="form1" action="" method="post">
|
|
<div class="btn_wrap">
|
|
<div class="plm_btn_wrap_center">
|
|
<input type="button" value="저장" id="btn_close" class="plm_btns" onclick="fn_saveInfo();">
|
|
<input type="button" value="닫기" id="btn_close" class="plm_btns" onclick="top.close();">
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</body>
|
|
</html> |