Commit 9a1113e0 authored by rtiwari's avatar rtiwari

UPDATED


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@94454 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 0caa34ba
......@@ -262,19 +262,20 @@ public class PhyItemScanPos extends ValidatorEJB implements PhyItemScanPosLocal,
pstmt1.executeUpdate();
pstmt1.close();
pstmt1=null;
sql="update physcandet set reverify = 'Y' where tran_id=? and line_no=? and quantity <> QTY_PHYSICAL ";
pstmt1=conn.prepareStatement(sql);
pstmt1.setString(1,tranId);
pstmt1.setInt(2,lineNo);
pstmt1.executeUpdate();
pstmt1.close();
pstmt1=null;
}
// ADDED ON 25/MAR/14 BY RITESH END
}
// added on 12/march/2014 BY RITESH start
if("w_empty_loc_scan".equalsIgnoreCase(winName))
{
sql="update physcandet set reverify = 'Y' where tran_id=? and line_no=? and quantity <> QTY_PHYSICAL ";
pstmt1=conn.prepareStatement(sql);
pstmt1.setString(1,tranId);
pstmt1.setInt(2,lineNo);
pstmt1.executeUpdate();
pstmt1.close();
pstmt1=null;
}
sql="update physcandet set emp_code__user = ? where tran_id=? and line_no=? ";
pstmt1=conn.prepareStatement(sql);
pstmt1.setString(1,empCode);
......
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