Commit 7cdba561 authored by cpatil's avatar cpatil

modify for order_type


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@95388 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 58e24778
...@@ -171,6 +171,8 @@ public class RunMRPPrc extends ProcessEJB implements RunMRPPrcLocal, RunMRPPrcRe ...@@ -171,6 +171,8 @@ public class RunMRPPrc extends ProcessEJB implements RunMRPPrcLocal, RunMRPPrcRe
boolean isWizard=false; boolean isWizard=false;
String orderType=""; // added by cpatil on 02/07/14
//String IPD_INDEPENDENT = "",IPD_INDENT = "",IPD_MPS_ORDER = "",IPD_DIST = ""; //cpatil on 15/01/14 //String IPD_INDEPENDENT = "",IPD_INDENT = "",IPD_MPS_ORDER = "",IPD_DIST = ""; //cpatil on 15/01/14
/* /*
...@@ -299,6 +301,12 @@ public class RunMRPPrc extends ProcessEJB implements RunMRPPrcLocal, RunMRPPrcRe ...@@ -299,6 +301,12 @@ public class RunMRPPrc extends ProcessEJB implements RunMRPPrcLocal, RunMRPPrcRe
siteItemList = genericUtility.getColumnValue("site_item_list", dom); //added by chandrashekar siteItemList = genericUtility.getColumnValue("site_item_list", dom); //added by chandrashekar
String isBomReplaceStr = genericUtility.getColumnValue("isBomReplace", dom); // added by cpatil on 17/05/14 String isBomReplaceStr = genericUtility.getColumnValue("isBomReplace", dom); // added by cpatil on 17/05/14
if( isDetailReq )
{
orderType = genericUtility.getColumnValue("order_type", dom); // added by cpatil on 26/06/14
}
if (isBomReplaceStr == null || isBomReplaceStr.trim().length() == 0) if (isBomReplaceStr == null || isBomReplaceStr.trim().length() == 0)
{ {
isBomReplaceStr = "N"; isBomReplaceStr = "N";
...@@ -7590,6 +7598,10 @@ public class RunMRPPrc extends ProcessEJB implements RunMRPPrcLocal, RunMRPPrcRe ...@@ -7590,6 +7598,10 @@ public class RunMRPPrc extends ProcessEJB implements RunMRPPrcLocal, RunMRPPrcRe
} }
//added by cpatil on 12/05/14 end //added by cpatil on 12/05/14 end
if( isDetailReq ) // added by cpatil on 02/07/14
{
valueXmlString.append("<order_type protect = '1'>").append("<![CDATA[" + orderType + "]]>").append("</order_type>\r\n");
}
//valueXmlString.append("<Deatail4 protect = '1'>"); //valueXmlString.append("<Deatail4 protect = '1'>");
{ {
......
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