ERP-node/WebContent/WEB-INF/view/project/partMaster/addPartSearchPopUpCenter.jsp

39 lines
1.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>
</head>
<script>
//선택된 part와 part master를 연결한다.
function fn_connectPart(){
if(confirm("선택한 Part를 연결 하시겠습니까?")){
parent.addPartSearchPopUpRight.fn_connectPart();
}
}
//선택된 part와 part master의 연결을 해제한다.
function fn_disConnectPart(){
if(confirm("선택한 Part를 연결해제 하시겠습니까? \n(연결해제 시 개발Master에서도 연결이 해제 됩니다.)")){
parent.addPartSearchPopUpLeft.fn_disConnectPart();
}
}
//연결된 Part의 Seq를 저장한다.
function fn_saveConnectedPartInfo(){
parent.addPartSearchPopUpLeft.fn_saveConnectedPartInfo();
}
</script>
<body>
<form name="form1" action="" method="post">
<div style="width:56px; margin: 0 auto; padding-top:360px;">
<input type="button" value="<<" class="blue_btn" id="moveLeft" onclick="fn_connectPart();">
<input type="button" value=">>" class="blue_btn" id="moveRight" onclick="fn_disConnectPart();">
</div>
</form>
</body>
</html>