Commit 1f7ef2b9 authored by msharma's avatar msharma

Remove space from reason code


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@98230 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 6db6dc5f
...@@ -549,7 +549,11 @@ public class WoTransferPrc extends ProcessEJB implements WoTransferPrcLocal,WoTr ...@@ -549,7 +549,11 @@ public class WoTransferPrc extends ProcessEJB implements WoTransferPrcLocal,WoTr
retTabSepStrBuff.append("<remarks>").append("<![CDATA[" + remarks +"]]>").append("</remarks>"); retTabSepStrBuff.append("<remarks>").append("<![CDATA[" + remarks +"]]>").append("</remarks>");
retTabSepStrBuff.append("<reas_code>").append("<![CDATA[" + checkNull(reasCode) +"]]>").append("</reas_code>");
reasCode = disCommon .getDisparams("999999","DEFAULT_REAS_CODE",conn);
System.out.println("Default Reason Code["+reasCode+"]");
//Added trim by manoj dtd 09/07/2015
retTabSepStrBuff.append("<reas_code>").append("<![CDATA[" + (checkNull(reasCode)).trim() +"]]>").append("</reas_code>");
retTabSepStrBuff.append("<loc_code>").append("<![CDATA[" + rs.getString("loc_code") +"]]>").append("</loc_code>"); retTabSepStrBuff.append("<loc_code>").append("<![CDATA[" + rs.getString("loc_code") +"]]>").append("</loc_code>");
......
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