Commit 10c41d2f authored by smanohar's avatar smanohar

Bug of single & for and condition corrected

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@180998 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 6843f898
...@@ -1043,11 +1043,11 @@ conn = getConnection(); ...@@ -1043,11 +1043,11 @@ conn = getConnection();
receiptMap.put("acct_code__bal",acctCodeBal); receiptMap.put("acct_code__bal",acctCodeBal);
receiptMap.put("cctr_code__bal",cctrCodeBal); receiptMap.put("cctr_code__bal",cctrCodeBal);
if(acctCodeCfAr != null & acctCodeCfAr.trim().length() != 0) if(acctCodeCfAr != null && acctCodeCfAr.trim().length() != 0)
{ {
acctCodeCf = acctCodeCfAr; acctCodeCf = acctCodeCfAr;
} }
if(cctrCodeCfAr != null & cctrCodeCfAr.trim().length() != 0) if(cctrCodeCfAr != null && cctrCodeCfAr.trim().length() != 0)
{ {
cctrCodeCf = cctrCodeCfAr; cctrCodeCf = cctrCodeCfAr;
} }
...@@ -1670,11 +1670,11 @@ conn = getConnection(); ...@@ -1670,11 +1670,11 @@ conn = getConnection();
rcpMap.put("acct_code__bal",acctCodeBal); rcpMap.put("acct_code__bal",acctCodeBal);
rcpMap.put("cctr_code__bal",cctrCodeBal); rcpMap.put("cctr_code__bal",cctrCodeBal);
if(acctCodeCfAr != null & acctCodeCfAr.trim().length() != 0) if(acctCodeCfAr != null && acctCodeCfAr.trim().length() != 0)
{ {
acctCodeCf = acctCodeCfAr; acctCodeCf = acctCodeCfAr;
} }
if(cctrCodeCfAr != null & cctrCodeCfAr.trim().length() != 0) if(cctrCodeCfAr != null && cctrCodeCfAr.trim().length() != 0)
{ {
cctrCodeCf = cctrCodeCfAr; cctrCodeCf = cctrCodeCfAr;
} }
......
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