Commit c6000c76 authored by skale's avatar skale

Changes in code as no of articals calculating was wrong.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91193 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 42d4f6be
...@@ -502,6 +502,22 @@ public class DistIssueAct extends ActionHandlerEJB implements DistIssueActLocal, ...@@ -502,6 +502,22 @@ public class DistIssueAct extends ActionHandlerEJB implements DistIssueActLocal,
e.printStackTrace(); e.printStackTrace();
throw new ITMException(e); throw new ITMException(e);
} }
finally
{
try
{
if(conn != null)
{
conn.close();
conn = null;
}
}
catch( Exception e )
{
e.printStackTrace();
throw new ITMException(e);
}
}
return valueXmlString.toString(); return valueXmlString.toString();
} }
......
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