Commit e1a0b97e authored by cpatil's avatar cpatil

*** empty log message ***


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91888 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 42b4c63c
...@@ -309,12 +309,12 @@ public class InvHoldRelGen extends ProcessEJB implements InvHoldRelGenLocal, Inv ...@@ -309,12 +309,12 @@ public class InvHoldRelGen extends ProcessEJB implements InvHoldRelGenLocal, Inv
if(refIdFrom != null ) if(refIdFrom != null )
{ {
getDataSql = getDataSql + " and ih.ref_id >= ? "; getDataSql = getDataSql + " and ih.ref_id >= ? or ih.ref_id is null ";
} }
if(refIdTo != null ) if(refIdTo != null )
{ {
getDataSql = getDataSql + " and ih.ref_id <= ? "; getDataSql = getDataSql + " and ih.ref_id <= ? or ih.ref_id is null ";
} }
System.out.println("Sql Fired :::::"+getDataSql.trim().length()); System.out.println("Sql Fired :::::"+getDataSql.trim().length());
......
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