Commit 1c5d5878 authored by cpatil's avatar cpatil

modify for convert date to string


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@98507 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 64d0f79a
......@@ -1555,7 +1555,11 @@ System.out.println("Getting winName============"+windowName);
tempMapNeg.put("vouch_no", refNo);
if(refdateNeg!=null)
{
tempMapNeg.put("vouch_date", refdateNeg);
System.out.println("refdateNeg["+refdateNeg+"]");
String dueMaxDateStr=sdf.format(refdateNeg); // changes done by cpatil for convert date to string
System.out.println("refdateNeg dueMaxDateStr ["+dueMaxDateStr+"]");
tempMapNeg.put("vouch_date", dueMaxDateStr);
}
tempMapNeg.put("net_amt", pay_amt);
......
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