Commit 5224bf1f authored by ngadkari's avatar ngadkari

Loan Tracking system

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@186261 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 47882e61
......@@ -1156,6 +1156,13 @@ 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 )
{
errCode = "VTINVTRTPN";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
if(refNo == null || refNo.trim().length() ==0)
{
errCode = "VTREFRNO";
......
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