Commit 30910ce5 authored by nkhan's avatar nkhan

*** empty log message ***


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@103535 ce508802-f39f-4f6c-b175-0d175dae99d5
parent f24ac90f
...@@ -1279,8 +1279,8 @@ implements CustomerLocal, CustomerRemote ...@@ -1279,8 +1279,8 @@ implements CustomerLocal, CustomerRemote
} }
else if (childNodeName.equalsIgnoreCase("loss_perc")) else if (childNodeName.equalsIgnoreCase("loss_perc"))
{ {
lossPerc = checkNull(genericUtility.getColumnValue("loss_perc", dom)); lossPerc = genericUtility.getColumnValue("loss_perc", dom);
if (lossPerc.trim() != null) if (lossPerc != null && lossPerc.trim().length() > 0)
{ {
cnt1 = Integer.parseInt(lossPerc); cnt1 = Integer.parseInt(lossPerc);
} }
...@@ -1646,7 +1646,7 @@ implements CustomerLocal, CustomerRemote ...@@ -1646,7 +1646,7 @@ implements CustomerLocal, CustomerRemote
} }
} }
} }
valueXmlString.append("</Detail1>"); valueXmlString.append("</Detail2>");
} }
int errListSize = errList.size(); int errListSize = errList.size();
cnt = 0; cnt = 0;
...@@ -2407,6 +2407,7 @@ implements CustomerLocal, CustomerRemote ...@@ -2407,6 +2407,7 @@ implements CustomerLocal, CustomerRemote
} }
} }
private String errorType(Connection conn, String errorCode) throws ITMException private String errorType(Connection conn, String errorCode) throws ITMException
{ {
String msgType = ""; String msgType = "";
......
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