Commit 1ac41f79 authored by rbhogale's avatar rbhogale

Changed by Rohan on 23-03-13 for Wave Cancellation replanishment scan checking


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92865 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 865a934b
......@@ -1226,7 +1226,8 @@ public class WaveCancelEJB extends ActionHandlerEJB implements WaveCancelEJBLoca
System.out.println("repl type:::"+replType);
//Changed by Rohan on 18-02-13 for checking repanishment confirm.start
sqlReplConf = "SELECT COUNT(*) AS COUNT FROM REPL_ISS_DET WHERE REPL_ORDER = ? AND LINE_NO__ORD = ?";
//sqlReplConf = "SELECT COUNT(*) AS COUNT FROM REPL_ISS_DET WHERE REPL_ORDER = ? AND LINE_NO__ORD = ?";
sqlReplConf = "SELECT COUNT(*) AS COUNT FROM REPL_ISS_HDR WHERE REPL_ORDER = ? AND CONFIRMED = 'Y' ";
pstmt2 = conn.prepareStatement(sqlReplConf);
//Changed by Rohan on 06-03-13 for checking pnd repalinshment
......@@ -1241,7 +1242,7 @@ public class WaveCancelEJB extends ActionHandlerEJB implements WaveCancelEJBLoca
{
pstmt2.setString(1, replOrd1);
pstmt2.setString(2, replLine1);
//pstmt2.setString(2, replLine1);
rs2 = pstmt2.executeQuery();
if(rs2.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