Commit b1f30b63 authored by mjadhav's avatar mjadhav

removed space from ccy1


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@98256 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 59ecfe94
......@@ -675,17 +675,17 @@ public class GenPaymentSchedule implements Schedule {
Element rfrdDocAmt = doc.createElement("RfrdDocAmt");
Element duePybl_amt = doc.createElement("DuePyblAmt");
duePybl_amt.setAttribute("CCY", ccy1);
duePybl_amt.setAttribute("CCY", ccy1.trim());
duePybl_amt.setTextContent(rmtInfoMap.get("duePyblAmt1@"+j));
rfrdDocAmt.appendChild(duePybl_amt);
Element dscntApld_amt = doc.createElement("DscntApldAmt");
dscntApld_amt.setAttribute("CCY", ccy1);
dscntApld_amt.setAttribute("CCY", ccy1.trim());
dscntApld_amt.setTextContent(rmtInfoMap.get("dscntApldAmt@"+j));
rfrdDocAmt.appendChild(dscntApld_amt);
Element rmtd_amt = doc.createElement("RmtdAmt");
rmtd_amt.setAttribute("CCY", ccy1);
rmtd_amt.setAttribute("CCY", ccy1.trim());
rmtd_amt.setTextContent(rmtInfoMap.get("rmtdAmt@"+j));
rfrdDocAmt.appendChild(rmtd_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