Commit 1fd54cb0 authored by spawar's avatar spawar

D15HKAT002 added change for show order date instead of delivery date on form2


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@99192 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 48b33c81
......@@ -342,7 +342,10 @@ public class PorderTableServlet extends HttpServlet
rs.close();
if(itmDLVDate.length>1)
{
DLVDate = getSubLeadTime(itmDLVDate[0], itmDLVDate[1], conn);
//Changed by samadhan on 19/11/2015 for delivary date calculation change
//DLVDate = getSubLeadTime(itmDLVDate[0], itmDLVDate[1], conn);
DLVDate = itmDLVDate[1];
valueXmlString.append("<DLVDate><![CDATA[").append(checkNullAndTrim(DLVDate)).append("]]></DLVDate>\r\n");
}
//Changed by Samadhan on 14/07/2015 D15CKAT026 End
......@@ -384,7 +387,10 @@ public class PorderTableServlet extends HttpServlet
valueXmlString.append("</tr>\r\n");
valueXmlString.append("<tooltip><![CDATA[").append("Quantity").append("]]></tooltip>\r\n");
valueXmlString.append("<Descr><![CDATA[").append(checkNullAndTrim(rs.getString(2))).append("]]></Descr>\r\n");
DLVDate = getSubLeadTime(itmcode, itemDLVDate, conn);
//Changed by samadhan on 19/11/2015 for delivary date calculation change
//DLVDate = getSubLeadTime(itmcode, itemDLVDate, conn);
DLVDate = itemDLVDate;
valueXmlString.append("<DLVDate><![CDATA[").append(checkNullAndTrim(DLVDate)).append("]]></DLVDate>\r\n");
valueXmlString.append("</RECORDS>\r\n");
valueXmlString.append("</PRODUCT_SET>\r\n");
......
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