Commit 9805ab20 authored by kgaikwad's avatar kgaikwad

Bank reconciliation (manual) - eff_date is not inserted in bank_statement even...

Bank reconciliation (manual) - eff_date is not inserted in bank_statement even though logic is there in code

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@201529 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 24a99230
......@@ -706,7 +706,7 @@ public class BankRecoPrc extends ProcessEJB implements BankRecoPrcLocal,
exchRate = childNode.getFirstChild().getNodeValue();
}//Pavan R on 03-may-18 to visible eff_date during processing
else if (childNodeName.equals("eff_date")) {
effDate = childNode.getFirstChild().getNodeValue();
effDate = checkNull(childNode.getFirstChild().getNodeValue());// call checknull method by kailas gaikwad on 3/6/2019
}
//Pavan R on 03-may-18 end
System.out.println("tranType["+tranType+"]tranDate["+tranDate+"]bankCode["+bankCode+"]siteCode["+siteCode+"]tranSer["+tranSer+"]" +
......@@ -751,8 +751,11 @@ public class BankRecoPrc extends ProcessEJB implements BankRecoPrcLocal,
/* insert data into the 'bank_statement' table */
currDate = new java.sql.Date(System.currentTimeMillis());
effDate = genericUtility.getColumnValue("eff_date", headerDom);//remove comment by Ajay on 01/06/18 error Unparseable date
if(effDate == null || effDate.trim().length() == 0)// add condition by kailas gaikwad on 3/6/19
{
effDate = genericUtility.getColumnValue("eff_date", headerDom);
}
// int loop = amountList.size();
if (remarks == null) {
remarks = " ";
......
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