Commit 1db18862 authored by kgaikwad's avatar kgaikwad

Customer master - stan_code blank should not be allowed

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@202739 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 3784776d
...@@ -538,7 +538,7 @@ implements CustomerLocal, CustomerRemote ...@@ -538,7 +538,7 @@ implements CustomerLocal, CustomerRemote
} }
else if (childNodeName.equalsIgnoreCase("stan_code")) else if (childNodeName.equalsIgnoreCase("stan_code"))
{ {
stanCode = checkNull(genericUtility.getColumnValue("stan_code", dom)); stanCode = E12GenericUtility.checkNull(genericUtility.getColumnValue("stan_code", dom));// added by kailas Gaikwad on 28 june 2019
cnt = 0; cnt = 0;
if (stanCode != null) if (stanCode != null)
...@@ -563,14 +563,25 @@ implements CustomerLocal, CustomerRemote ...@@ -563,14 +563,25 @@ implements CustomerLocal, CustomerRemote
errFields.add(childNodeName.toLowerCase()); errFields.add(childNodeName.toLowerCase());
} }
} }
/* Comment By Nasruddin [16-SEP-16] START /* Comment By Nasruddin [16-SEP-16] START*/
else /*else
{ {
errCode = "VMSTNCDNLL"; //errCode = "VMSTNCDNLL";
errCode = "VTAMDSTCOD";
errList.add(errCode);
errFields.add(childNodeName.toLowerCase());
}*/
/*Comment By Nasruddin [16-SEP-16] END*/
else // added by kailas Gaikwad on 28 june 2019
{
errCode = "VMSTANCOD";
errList.add(errCode); errList.add(errCode);
errFields.add(childNodeName.toLowerCase()); errFields.add(childNodeName.toLowerCase());
} }
Comment By Nasruddin [16-SEP-16] END*/
} }
else if (childNodeName.equalsIgnoreCase("terr_code")) else if (childNodeName.equalsIgnoreCase("terr_code"))
......
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