Commit 0d397f5b authored by prane's avatar prane

lsStatus.trim() bug fix

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@172903 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 81f88189
......@@ -1442,7 +1442,7 @@ public class PostOrderProcess extends ProcessEJB implements PostOrderProcessLoca
//if( cnt2 == 0 )
//Added by Pavan R on 27/OCT/17 ls
//added lsStatus == null on 31/OCT/17
if(chkamt > 0 || lsStatus == null || lsStatus.length() == 0 )
if(chkamt > 0 || lsStatus == null || lsStatus.trim().length() == 0 )
{ // Pavan R End
tranId = generateTranId( "T_CRCHKTRACE",siteCode, conn );
if( tranId == null || tranId.trim().length() == 0 )
......
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