Commit f2b77caa 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@202100 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 06c4f33b
......@@ -110,7 +110,13 @@ public class BankRecoPrc extends ProcessEJB implements BankRecoPrcLocal,
conn = getConnection();
//Changes and Commented By Bhushan on 06-06-2016 :END
bankCode = genericUtility.getColumnValue("bank_code", dom);
effDate = genericUtility.getColumnValue("eff_date", dom);
effDate = E12GenericUtility.checkNull(genericUtility.getColumnValue("eff_date", dom));
System.out.println();
if (effDate == null || effDate.length() == 0) //add condition by kailasG on 17 june 2019
{
resultString = itmDBAccessEJB.getErrorString("", "VTEMPSTS04", "", "", conn);
return resultString;
}
refDate = genericUtility.getColumnValue("ref_date", dom);
sdf = new SimpleDateFormat(genericUtility.getApplDateFormat());
if (refDate != null) {
......@@ -705,8 +711,11 @@ public class BankRecoPrc extends ProcessEJB implements BankRecoPrcLocal,
} else if (childNodeName.equals("exch_rate")) {
exchRate = childNode.getFirstChild().getNodeValue();
}//Pavan R on 03-may-18 to visible eff_date during processing
else if (childNodeName.equals("eff_date")) {
effDate = checkNull(childNode.getFirstChild().getNodeValue());// call checknull method by kailas gaikwad on 3/6/2019
else if (childNodeName.equals("eff_date"))
{
effDate = childNode.getFirstChild().getNodeValue();// call 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+"]" +
......
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