Commit f4d6d978 authored by vvengurlekar's avatar vvengurlekar

AdjReceiptIC.java - CHANGES DONE TO TAKE ACCOUNT CODE AND CCTR CODE FROM...

AdjReceiptIC.java - CHANGES DONE TO TAKE ACCOUNT CODE AND CCTR CODE FROM DETAIL DOM NOT FROM HEADER DOM


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@196695 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 3d7fc429
...@@ -3197,8 +3197,12 @@ public class AdjReceiptIC extends ValidatorEJB implements AdjReceiptICRemote,Adj ...@@ -3197,8 +3197,12 @@ public class AdjReceiptIC extends ValidatorEJB implements AdjReceiptICRemote,Adj
else else
{ {
//Commented and added by sarita to set acct_code__dr & cctr_code__dr values using dom on 03 SEP 2018 [START] //Commented and added by sarita to set acct_code__dr & cctr_code__dr values using dom on 03 SEP 2018 [START]
acctCodeAr=checkNull(genericUtility.getColumnValue("acct_code__dr",dom)); //Commented and added below two lines to get acct_code_dr from detail on 04-02-19
cctrCodeAr=checkNull(genericUtility.getColumnValue("cctr_code__dr",dom)); //acctCodeAr=checkNull(genericUtility.getColumnValue("acct_code__dr",dom));
//cctrCodeAr=checkNull(genericUtility.getColumnValue("cctr_code__dr",dom));
acctCodeAr=checkNull(genericUtility.getColumnValue("acct_code__dr",detail));
cctrCodeAr=checkNull(genericUtility.getColumnValue("cctr_code__dr",detail));
//Ended below two lines to get acct_code_dr from detail on 04-02-19
System.out.println("acctCodeAr ["+acctCodeAr+"] \t cctrCodeAr ["+cctrCodeAr+"]"); System.out.println("acctCodeAr ["+acctCodeAr+"] \t cctrCodeAr ["+cctrCodeAr+"]");
if((acctCodeAr != null && acctCodeAr.trim().length() > 0) && (cctrCodeAr != null && cctrCodeAr.trim().length() > 0)) if((acctCodeAr != null && acctCodeAr.trim().length() > 0) && (cctrCodeAr != null && cctrCodeAr.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