Commit d6a6f50a authored by manohar's avatar manohar

StockAllocPrc removed from dis and added in dis.adv


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91816 ce508802-f39f-4f6c-b175-0d175dae99d5
parent b33662c4
This diff is collapsed.
...@@ -517,6 +517,28 @@ public class StockAllocPrc extends ActionHandlerEJB implements StockAllocPrcLoca ...@@ -517,6 +517,28 @@ public class StockAllocPrc extends ActionHandlerEJB implements StockAllocPrcLoca
{ {
if(conn != null) if(conn != null)
{ {
//Changed by sumit on 20/08/12 closing prepared statement start.
if( pSelSordItem != null)
{
pSelSordItem.close();
pSelSordItem = null;
}
if(pSelSordAlloc != null)
{
pSelSordAlloc.close();
pSelSordAlloc = null;
}
if( pUpdSordItem != null )
{
pUpdSordItem.close();
pUpdSordItem = null;
}
if( pUpdSordAlloc != null)
{
pUpdSordAlloc.close();
pUpdSordAlloc = null;
}
//Changed by sumit on 20/08/12 closing prepared statement end.
if(pSordAllocDet != null) if(pSordAllocDet != null)
{ {
pSordAllocDet.close(); pSordAllocDet.close();
......
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