24 lines
849 B
Plaintext
24 lines
849 B
Plaintext
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
|
|
<%
|
|
java.util.Map map = (java.util.HashMap)request.getAttribute("info");
|
|
if(map == null || map.isEmpty()) {
|
|
response.sendRedirect("/common/error500.do");
|
|
return;
|
|
}
|
|
String objId = com.pms.common.utils.CommonUtils.checkNull(map.get("OBJID"));
|
|
String quantity = com.pms.common.utils.CommonUtils.checkNull(map.get("QUANTITY"));
|
|
%>
|
|
<html>
|
|
<head>
|
|
<script>
|
|
// 프로젝트 수주수량을 전역 변수로 설정 (하위 프레임에서 접근 가능)
|
|
var PROJECT_QUANTITY = <%=quantity.isEmpty() ? "1" : quantity%>;
|
|
</script>
|
|
</head>
|
|
<frameset rows="100px, *" border="0" noresize>
|
|
<frame src="/productionplanning/mBomHeaderPopup.do?objId=<%=objId%>">
|
|
<frame src="/productionplanning/mBomBottomPopupFS.do?objId=<%=objId%>">
|
|
</frameset><noframes></noframes>
|
|
</html>
|
|
|