Commit 9c50c64c authored by cpatil's avatar cpatil

if( "Y".equalsIgnoreCase(waveFlag)) condition commented as per manoj sir...

if( "Y".equalsIgnoreCase(waveFlag)) condition  commented as per manoj sir instruction because same functionality provided with line no


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@93945 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 5d933bfb
...@@ -1018,7 +1018,9 @@ public class StockDeallocationPrc extends ProcessEJB implements StockDeallocat ...@@ -1018,7 +1018,9 @@ public class StockDeallocationPrc extends ProcessEJB implements StockDeallocat
System.out.println(" sumit wave flag - >["+waveFlag+"]"); System.out.println(" sumit wave flag - >["+waveFlag+"]");
//Changed by sumit on 27/11/12 error msg if wave done condition start. //Changed by sumit on 27/11/12 error msg if wave done condition start.
//if(DeallocQty > 0 ) //if(DeallocQty > 0 )
if( "Y".equalsIgnoreCase(waveFlag))
/* // commented by cpatil on 04/12/13 as per manoj sir instruction because same functionality provided with line no
if( "Y".equalsIgnoreCase(waveFlag))
{ {
errString="VTWAPROALL"; errString="VTWAPROALL";
errString = itmDBAccessEJB.getErrorString("",errString,"","",conn); errString = itmDBAccessEJB.getErrorString("",errString,"","",conn);
...@@ -1026,6 +1028,9 @@ public class StockDeallocationPrc extends ProcessEJB implements StockDeallocat ...@@ -1026,6 +1028,9 @@ public class StockDeallocationPrc extends ProcessEJB implements StockDeallocat
return errString; return errString;
} }
else if(DeallocQty > 0 && "N".equalsIgnoreCase(waveFlag) && flag == false) else if(DeallocQty > 0 && "N".equalsIgnoreCase(waveFlag) && flag == false)
*/
if(DeallocQty > 0 && "N".equalsIgnoreCase(waveFlag) && flag == false)
{ {
//Changed by sumit on 27/11/12 error msg if wave done condition end. //Changed by sumit on 27/11/12 error msg if wave done condition end.
System.out.println("if calling...*...."); System.out.println("if calling...*....");
......
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