Commit eb4a5709 authored by ssalve's avatar ssalve

Sarita: done chages to perform checkNullAndTrim on refSer on 14 JUN 18

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@186491 ce508802-f39f-4f6c-b175-0d175dae99d5
parent bdaa4ccd
...@@ -302,8 +302,10 @@ public class StockTransferEJB extends ValidatorEJB implements StockTransferEJBRe ...@@ -302,8 +302,10 @@ public class StockTransferEJB extends ValidatorEJB implements StockTransferEJBRe
lineNo = genericUtility.getColumnValue( "line_no", currDom ); lineNo = genericUtility.getColumnValue( "line_no", currDom );
//Changes by mayur on 04-June-2018----start //Changes by mayur on 04-June-2018----start
refSer = genericUtility.getColumnValue( "ref_ser__for", hdrDom ); //Commented by sarita as refSer coming with space and if condition ("S-REQ".equalsIgnoreCase(refSer)) not getting satisfied on 14 JUN 18 [START]
//refSer = genericUtility.getColumnValue( "ref_ser__for", hdrDom );
refSer = checkNullAndTrim(genericUtility.getColumnValue( "ref_ser__for", hdrDom ));
//Commented by sarita as refSer coming with space and if condition ("S-REQ".equalsIgnoreCase(refSer)) not getting satisfied on 14 JUN 18 [END]
System.out.println("Reference series::::::::["+refSer+"]"); System.out.println("Reference series::::::::["+refSer+"]");
refId = genericUtility.getColumnValue("ref_id__for", hdrDom); refId = genericUtility.getColumnValue("ref_id__for", hdrDom);
......
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