Commit 47bfcd1d authored by vdhoble's avatar vdhoble

code for set emp_code_verify commented


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@97072 ce508802-f39f-4f6c-b175-0d175dae99d5
parent f7ad3d8b
......@@ -212,11 +212,10 @@ public class MPhyItemScanPos extends ValidatorEJB implements MPhyItemScanPosLoca
pstmt.close();
pstmt=null;
// ADDED BY RITESH 25/MAR/14 START
sql="update physcandet set emp_code__verify = ?,reverify='N' where tran_id=? and line_no=? ";
sql="update physcandet set reverify='N' where tran_id=? and line_no=? ";//code set emp_code__verify=? commented by vishakha **** 02/01/2015
pstmt=conn.prepareStatement(sql);
pstmt.setString(1,empCode);
pstmt.setString(2,tranId);
pstmt.setInt(3,lineNo);
pstmt.setString(1,tranId);
pstmt.setInt(2,lineNo);
upd = pstmt.executeUpdate();
pstmt.close();
pstmt=null;
......
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