Commit 400eab3a authored by steurwadkar's avatar steurwadkar

Sorder Status jsp changes


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104953 ce508802-f39f-4f6c-b175-0d175dae99d5
parent d72039cc
@font-face {
font-family: "MuseoLight-300";
src: url("/ibase/webitm/css/fonts/Museo300-Regular.eot");
src: local("Museo 300"), local("Museo-300"),
url("/ibase/webitm/css/fonts/Museo300-Regular.woff") format("woff"),
url("/ibase/webitm/css/fonts/Museo300-Regular.otf") format("opentype"),
url("/ibase/webitm/css/fonts/Museo300-Regular.svg#Museo-300") format("svg");
}
*{
font-family: 'MuseoLight-300';
font-size: 13px;
}
.linkDataDivClassBrow{
position: absolute !important;
top:0 !important;
height: 100%;
overflow: auto !important;
}
.mainContainer{
/*height:100%;*/
height: calc(100% - 17px);
}
.statusHeader{
border-bottom: 1px solid #ccc;
padding: 5px;
width: auto;
line-height: 20px;
background: #fff7d4;
display: block;
}
.leftAlignDiv > p, .rightAlignDiv > p{
margin:0px;
}
.leftAlignDiv{
width: auto;
float: left;
}
.rightAlignDiv{
width: auto;
text-align: right;
float: right;
padding-left:8px;
}
.orderStatsImg{
width: 32px;
height: 32px;
vertical-align: middle;
}
.orderStatsDiv{
height: 25px;
line-height: 25px;
vertical-align: top;
margin-top: -5px;
}
.eachLineData{
width: calc(100% - 10px);
border-bottom: 1px solid #ccc;
padding: 5px;
display: inline-block;
}
.itemDescrDiv{
display: block;
width: 40%;
float: left;
}
.lineSumryDiv{
display: block;
width: 60%;
float: left;
}
.pendQtyDiv{
display: block;
text-align: right;
}
.shipQtyDiv{
display: block;
text-align: right;
}
.stkQtyDiv{
display: block;
width: 31%;
float: left;
text-align: right;
padding-left: 4px;
}
.closeOrderQtyDiv{
display: block;
width: 48%;
float: left;
text-align: right;
}
.closeOrderSumryDiv{
display: block;
width: 48%;
float: left;
text-align: right;
padding-left: 4px;
}
.statusLine{
display: inline-block;
width: 100%;
margin-bottom: 5px;
}
.pendDueDtLblDiv{
float: left;
display: block;
width: 33%;
}
.shipQtyDueDtDiv{
float: left;
display: block;
width: 33%;
}
.dueDate{
margin-top: 5px;
text-align: right;
}
.dueDateLbl{
margin-top: 5px;
font-weight: bold;
text-align: right;
}
\ No newline at end of file
This diff is collapsed.
...@@ -21,6 +21,6 @@ ...@@ -21,6 +21,6 @@
<head> <head>
</head> </head>
<body style="overflow:hidden;"> <body style="overflow:hidden;">
<iframe src="/ibase/webitm/jsp/ITMLinkPage.jsp?QRY_PARAM=<%=queryParam%>&QRY_PARAM_TYPE=<%=paramType%>&TAR_OBJ_NAME=<%=targetObject%>&LINK_DESCR=<%=linkDescr%>&OBJ_TYPE=<%=objType%>&OBJ_CTXT=<%=objCtx%>" width="100%" height="100%" class="FrameFlowPanel" style="border:none;"></iframe> <iframe src="/ibase/webitm/jsp/SorderStatus.jsp?QRY_PARAM=<%=queryParam%>&QRY_PARAM_TYPE=<%=paramType%>&TAR_OBJ_NAME=<%=targetObject%>&LINK_DESCR=<%=linkDescr%>&OBJ_TYPE=<%=objType%>&OBJ_CTXT=<%=objCtx%>" width="100%" height="100%" class="FrameFlowPanel" style="border:none;"></iframe>
</body> </body>
</html> </html>
<%@page import = "java.lang.*,java.util.*, ibase.webitm.utility.*"%>
<%
response.setHeader("Expires", "Sat, 6 May 1995 12:00:00 GMT");
response.setHeader("Cache-Control", "no-store, no-cache,must-revalidate");
response.addHeader("Cache-Control", "post-check=0, pre-check=0");
response.setHeader("Pragma", "no-cache");
%>
<%
System.out.println("#######################################################");
System.out.println(" ITMLinkPage.jsp ");
System.out.println("#######################################################");
String queryParam = request.getParameter( "QRY_PARAM" );
String paramType = request.getParameter( "QRY_PARAM_TYPE" );
String targetObject = request.getParameter( "TAR_OBJ_NAME" );
String linkDescr = request.getParameter( "LINK_DESCR" );
//Changed by Roshan 09/01/08 [To set obj type globally]
String objType = request.getParameter( "OBJ_TYPE" );
//Changed by Dayanand on 31/03/08 [Take OBJ_CTXT for display link for selected form]
String objCtx = request.getParameter( "OBJ_CTXT" );
//Changed by Pravin on 28/07/08.[to apply theme, request ID- WS89BAS022 ] Start
//changed by rahul barve on 01-oct-2014 [Start]
//ibase.webitm.utility.GenericUtility genericUtilityObj = new ibase.webitm.utility.GenericUtility();
ibase.utility.E12GenericUtility genericUtilityObj = new ibase.utility.E12GenericUtility();
//changed by rahul barve on 01-oct-2014 [End]
String displayThemeXSL = ( (String)session.getAttribute( "DISPLAY_THEME") )== null ? genericUtilityObj.getThemeFormat():(String)session.getAttribute( "DISPLAY_THEME");
//Changed by Pravin on 28/07/08.[to apply theme, request ID- WS89BAS022 ] End
%>
<html>
<HEAD>
<TITLE>
<%= targetObject %>
</TITLE>
<!-- Changed by Pravin on 28/07/08.[to apply theme, request ID- WS89BAS022 ]Start -->
<!-- <link type="text/css" rel="stylesheet" href="/ibase/webitm/css/default.css"/> -->
<link type="text/css" rel="stylesheet" href="/ibase/webitm/css/<%=displayThemeXSL%>/default.css"/>
<!-- Changed by Pravin on 28/07/08.[to apply theme, request ID- WS89BAS022 ]End -->
<!-- Added by Santosh on 11/02/2017 to link CSS file Start -->
<link type="text/css" rel="stylesheet" href="/ibase/webitm/css/SorderStatus.css"/>
<script type='text/javascript' language="javascript" src='/ibase/webitm/js/jquery-1.10.2.js'></script>
<!-- Added by Santosh on 11/02/2017 to link CSS file End -->
<script language="Javascript" src="../js/GlobalVar.js"></script>
<script language="Javascript" src="../js/GlobalFunc.js"></script>
<script language="Javascript" src="../js/ITMLinkPage.js"></script>
</HEAD>
<div id="linkBrowDiv">
</div>
<!-- Changed by Dhruv on 11/10/2007 to focus window on load -->
<!-- Changed by Santosh on 13/02/2017 -->
<%-- <body onLoad="loadLink(),viewLinkBrow('<%=targetObject%>','<%=queryParam%>','<%=paramType%>');window.focus();" class="" onClick = "hideContextMenu()"> --%>
<body onLoad="loadLink(),viewLinkBrow('<%=targetObject%>','<%=queryParam%>','<%=paramType%>');window.focus();removeDuplicateRows();" class="" onClick = "hideContextMenu()">
<!-- changes made by sanket on 12-09-16 for label width 100% from <hr style="position:absolute;top:2;left:5;height:22;width:790;background-color: #D7D7D7;font-family:Verdana"> -->
<!-- Commented by Santosh on 11/02/2017 Start -->
<%-- <hr style="position:absolute;top:2;left:5;height:22;width:99%;background-color: #D7D7D7;font-family:Verdana">
<b><a id ="menudescr" style ="position : absolute; top : 3;left:10;color: #0000FF;font-family:Tahoma;font-size: 12"><%= linkDescr %></a></b> --%>
<!-- Commented by Santosh on 11/02/2017 End -->
</body>
<script>
link_obj_name = '<%= targetObject%>';
//Changed by Dayanand on 31/03/08 [Pass OBJ_CTXT for display link for selected form]
obj_ctx = '<%= objCtx%>';
//Changed by Roshan 22/11/07 [Gui related changes.Applying Theme]
displayTheme='<%= session.getAttribute( "DISPLAY_THEME")%>';
//Changed by Roshan 09/01/08 [to get obj type anywhere]
obj_Type = '<%= objType%>' ;
function invokeAction()
{
alert(" Not Allowed ");
}
</script>
</html>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment