Commit 0ad13c57 authored by rtiwari's avatar rtiwari

UPDATED


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@94371 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 0fbeed4a
......@@ -221,7 +221,6 @@ public class PhyItemVerifyPos extends ValidatorEJB implements PhyItemVerifyPosLo
}
sql="update physcandet set EMP_CODE__VERIFY = ? where tran_id=? and reverify='N' ";
pstmt1=conn.prepareStatement(sql);
pstmt1.setString(1,empCode);
......@@ -230,6 +229,14 @@ public class PhyItemVerifyPos extends ValidatorEJB implements PhyItemVerifyPosLo
pstmt1.close();
pstmt1=null;
System.out.println(" upd success::"+upd);
sql="update physcandet set EMP_CODE__USER = ? where tran_id=? and reverify='Y' ";
pstmt1=conn.prepareStatement(sql);
pstmt1.setString(1,empCode);
pstmt1.setString(2,tranId);
upd = pstmt1.executeUpdate();
pstmt1.close();
pstmt1=null;
System.out.println("EMP_CODE__USER updated success::"+upd);
// added BY RITESH 01/mar/14 end
}
......
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