Commit 09ddbe33 authored by kshinde's avatar kshinde

Bug Fix extra parameters in statement


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@105532 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 76eb7ca2
...@@ -822,7 +822,6 @@ public class PriceListConf extends ActionHandlerEJB implements PriceListConfLoca ...@@ -822,7 +822,6 @@ public class PriceListConf extends ActionHandlerEJB implements PriceListConfLoca
pstmtSql.setString(5, listtype); pstmtSql.setString(5, listtype);
pstmtSql.setDouble(6, minqty); pstmtSql.setDouble(6, minqty);
pstmtSql.setDouble(7, maxqty); pstmtSql.setDouble(7, maxqty);
pstmtSql.setString(8, refNoold);
rs = pstmtSql.executeQuery(); rs = pstmtSql.executeQuery();
System.out.println("COUNT"+countup); System.out.println("COUNT"+countup);
if (rs.next()) if (rs.next())
...@@ -879,7 +878,6 @@ public class PriceListConf extends ActionHandlerEJB implements PriceListConfLoca ...@@ -879,7 +878,6 @@ public class PriceListConf extends ActionHandlerEJB implements PriceListConfLoca
pstmtSql.setString(5, listtype); pstmtSql.setString(5, listtype);
pstmtSql.setDouble(6, minqty); pstmtSql.setDouble(6, minqty);
pstmtSql.setDouble(7, maxqty); pstmtSql.setDouble(7, maxqty);
pstmtSql.setString(8, refNoold);
rs = pstmtSql.executeQuery(); rs = pstmtSql.executeQuery();
if (rs.next()) if (rs.next())
{ {
......
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