Commit f42921a6 authored by prane's avatar prane

bug fixed in sql while checking comp_type

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@202513 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e117124c
...@@ -121,7 +121,7 @@ public class SalesReturnVerifyPasswordPrc extends ProcessEJB implements SalesRet ...@@ -121,7 +121,7 @@ public class SalesReturnVerifyPasswordPrc extends ProcessEJB implements SalesRet
}*/ }*/
if ("Y".equalsIgnoreCase(lsPwdVerified)) { if ("Y".equalsIgnoreCase(lsPwdVerified)) {
sql = "select comp_type from system_events where obj_name = ? and EVENT_CODE = 'pre_confirm';"; sql = "select comp_type from system_events where obj_name = ? and EVENT_CODE = 'pre_confirm'";
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
pstmt.setString(1, objName); pstmt.setString(1, objName);
rs = pstmt.executeQuery(); rs = pstmt.executeQuery();
......
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