Commit 83d3738a authored by smestry's avatar smestry

Updated java file to add new column customer priority.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@103877 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 366492e4
...@@ -179,6 +179,22 @@ implements CustomerLocal, CustomerRemote ...@@ -179,6 +179,22 @@ implements CustomerLocal, CustomerRemote
} }
} }
} }
//Changed by Sneha on 10-11-2016, for validating the field customer priority [Start]
else if (childNodeName.equalsIgnoreCase("cust_priority"))
{
String custPriority = checkNull(genericUtility.getColumnValue("cust_priority", dom));
/* System.out.println("custPriority======>>"+custPriority);
System.out.println("custPriority length======>>"+custPriority.length());*/
if(custPriority.length() > 1)
{
System.out.println("custPriority found larger value--------->>");
errCode = "VMCUSTPRIT";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}
}
//Changed by Sneha on 10-11-2016, for validating the field customer priority [End]
// Comment By Nkhan [16-SEP-16] START // Comment By Nkhan [16-SEP-16] START
/* else if (childNodeName.equalsIgnoreCase("cust_name")) /* else if (childNodeName.equalsIgnoreCase("cust_name"))
{ {
......
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