Commit 18337beb authored by prane's avatar prane

to set process date in filter screen

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@194577 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 69d42276
......@@ -132,6 +132,7 @@ conn = getConnection();
valueXmlString.append("<cust_code__to>").append("<![CDATA[ZZ]]>").append("</cust_code__to>");
valueXmlString.append("<due_date>").append("<![CDATA[" + simpleDateFormat1.format(new Date()) +"]]>").append("</due_date>");
valueXmlString.append("<due_date_to>").append("<![CDATA[" + simpleDateFormat1.format(new Date()) +"]]>").append("</due_date_to>");
valueXmlString.append("<prc_date>").append("<![CDATA[" + simpleDateFormat1.format(new Date()) +"]]>").append("</prc_date>");//Pavan R 17dec18[to set process date in filter screen]
/*valueXmlString.append("<cheque_date protect='1'>").append("<![CDATA["+chequeDate+"]]>").append("</cheque_date>");
valueXmlString.append("<cheque_amount protect='1'>").append("<![CDATA[]]>").append("</cheque_amount>");*/
//commented by Nandkumar gadkari on 26/03/18 --end------
......@@ -442,7 +443,12 @@ conn = getConnection();
valueXmlString.append("<cust_bank_ref protect='0'>").append("<![CDATA["+custBlank+"]]>").append("</cust_bank_ref>");
}*/
}
}//Pavan R 17dec18[to set process date in filter screen]
else if(currentColumn.trim().equalsIgnoreCase("due_date_to"))
{
String prcDateStr = checkNull(genericUtility.getColumnValue("due_date_to", dom));
valueXmlString.append("<prc_date>").append("<![CDATA[" + prcDateStr +"]]>").append("</prc_date>");
}//Pavan R 17dec18--end
valueXmlString.append("</Detail1>");
break;
}
......
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