Commit 7ac26296 authored by prane's avatar prane

to visible eff_date during processing

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@184437 ce508802-f39f-4f6c-b175-0d175dae99d5
parent cee7489d
......@@ -253,7 +253,9 @@ conn = getConnection();
retTabSepStrBuff.append("<exch_rate>").append(
"<![CDATA[" + rs.getString("EXCH_RATE") + "]]>")
.append("</exch_rate>");
//Pavan R on 03-may-18 to visible eff_date during processing
retTabSepStrBuff.append("<eff_date>").append("<![CDATA[" +effDate+ "]]>").append("</eff_date>");
//Pavan R on 03-may-18 end
retTabSepStrBuff.append("</Detail2>");
cnt++;
......@@ -745,9 +747,11 @@ conn = getConnection();
currCode = childNode.getFirstChild().getNodeValue();
} else if (childNodeName.equals("exch_rate")) {
exchRate = childNode.getFirstChild().getNodeValue();
} else if (childNodeName.equals("eff_date")) {
}//Pavan R on 03-may-18 to visible eff_date during processing
else if (childNodeName.equals("eff_date")) {
effDate = childNode.getFirstChild().getNodeValue();
}
//Pavan R on 03-may-18 end
}// end inner for
xmlValues = "<?xml version=\"1.0\" encoding=\"utf-8\"?><Root>";
xmlValues = xmlValues + "<Header></Header>";
......
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