Commit b9aa18c1 authored by agaikwad's avatar agaikwad

Bug Fix in cust_prd column


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@105104 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 6ceb66a6
...@@ -7456,9 +7456,16 @@ public class SalesOrderIC extends ValidatorEJB implements SalesOrderICLocal, Sal ...@@ -7456,9 +7456,16 @@ public class SalesOrderIC extends ValidatorEJB implements SalesOrderICLocal, Sal
rs = null; rs = null;
pstmt.close(); pstmt.close();
pstmt = null; pstmt = null;
String ldPorDtStr=genericUtility.getValidDateString(ldPorderDate.toString(),genericUtility.getDBDateFormat(), if(ldPorderDate != null)
genericUtility.getApplDateFormat()); {
String ldPorDtStr=genericUtility.getValidDateString(ldPorderDate.toString(),genericUtility.getDBDateFormat(),genericUtility.getApplDateFormat());
valueXmlString.append("<pord_date>").append("<![CDATA[" + ldPorDtStr + "]]>").append("</pord_date>"); valueXmlString.append("<pord_date>").append("<![CDATA[" + ldPorDtStr + "]]>").append("</pord_date>");
}
else
{
String ldPorDtStr="";
valueXmlString.append("<pord_date>").append("<![CDATA[" + ldPorDtStr + "]]>").append("</pord_date>");
}
} }
} else if (currentColumn.trim().equalsIgnoreCase("quot_no")) } else if (currentColumn.trim().equalsIgnoreCase("quot_no"))
{ {
......
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