Commit 457245e3 authored by rbhogale's avatar rbhogale

Changed by Rohna on 11-02-13 for setting 0 if pick order null


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92671 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 018f1a4c
...@@ -18696,10 +18696,13 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo ...@@ -18696,10 +18696,13 @@ public class WaveGenerationPrc extends ProcessEJB implements WaveGenerationPrcLo
rs.close(); rs.close();
rs =null; rs =null;
} }
pickOrd = pickOrd !=null && pickOrd.length() > 0?pickOrd:"0";
System.out.println("Pick Order"+pickOrd);
if(!invStat.trim().equalsIgnoreCase(invReserve)) if(!invStat.trim().equalsIgnoreCase(invReserve))
{ {
//Changed by Rohan on 06-02-13 for checking location instat.start //Changed by Rohan on 06-02-13 for checking location instat.start
pickOrd = pickOrd !=null && pickOrd.length() > 0?pickOrd:"0"; //Change by Rohna on 11-02-13 for bug fixing
//pickOrd = pickOrd !=null && pickOrd.length() > 0?pickOrd:"0";
if(pickOrd.equalsIgnoreCase("0") && replID != null && replID.length() > 0) if(pickOrd.equalsIgnoreCase("0") && replID != null && replID.length() > 0)
{ {
pstmt = conn.prepareStatement(sSQL); pstmt = conn.prepareStatement(sSQL);
......
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