Commit 59fad107 authored by ngadkari's avatar ngadkari

Loan Tracking system

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@186283 ce508802-f39f-4f6c-b175-0d175dae99d5
parent b321d2da
......@@ -1156,8 +1156,8 @@ public class LoanIC extends ValidatorEJB implements LoanICLocal, LoanICRemote
if("ref_no".equalsIgnoreCase(childNodeName))
{
refNo = checkNull(genericUtility.getColumnValue("ref_no", dom));
String tranType=checkNull(genericUtility.getColumnValue("tran_type", dom1));
if(!"1".equalsIgnoreCase(tranType.trim()) && refNo.length()>0 )
String loanType=checkNull(genericUtility.getColumnValue("loan_type", dom1));
if(!"2".equalsIgnoreCase(loanType.trim()) && refNo.length()>0 )
{
errCode = "VTINVTRTPN";
errList.add(errCode);
......
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