Commit 015959b0 authored by arawankar's avatar arawankar

-Changes made in MiscVoucherIC.java

-Changes made in cctr_code validation in case 3.
-Before taking cctr_code and acct_code from dom2, now its taking from dom2 with form number "3".


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@188039 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 0d2c175d
...@@ -1696,8 +1696,15 @@ public class MiscVoucherIC extends ValidatorEJB implements MiscVoucherICLocal, M ...@@ -1696,8 +1696,15 @@ public class MiscVoucherIC extends ValidatorEJB implements MiscVoucherICLocal, M
////changes while comparing cctrCode and cctrCodeAdv ////changes while comparing cctrCode and cctrCodeAdv
else if(childNodeName.equalsIgnoreCase("cctr_code")) else if(childNodeName.equalsIgnoreCase("cctr_code"))
{ {
acctCode = checkNull(genericUtility.getColumnValue("acct_code", dom2)); //Modified by Anjali R. on [24/07/2018][To take acct_code ,cctr_code from detail3][Start]
cctrCode =checkNull( genericUtility.getColumnValue("cctr_code", dom2)); //acctCode = checkNull(genericUtility.getColumnValue("acct_code", dom2));
acctCode = checkNull(genericUtility.getColumnValue("acct_code", dom2 , "3"));
System.out.println("acctCode::["+acctCode+"]");
//cctrCode =checkNull( genericUtility.getColumnValue("cctr_code", dom2));
cctrCode =checkNull( genericUtility.getColumnValue("cctr_code", dom2 , "3"));
System.out.println("cctrCode::["+cctrCode+"]");
//Modified by Anjali R. on [24/07/2018][To take acct_code ,cctr_code from detail3][End]
vouchType = checkNull(genericUtility.getColumnValue("vouch_type", dom1)); vouchType = checkNull(genericUtility.getColumnValue("vouch_type", dom1));
cctrCodeAdv = checkNull(genericUtility.getColumnValue("cctr_code__adv", dom1)); cctrCodeAdv = checkNull(genericUtility.getColumnValue("cctr_code__adv", dom1));
if("A".equalsIgnoreCase(vouchType)) if("A".equalsIgnoreCase(vouchType))
......
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