Commit 3db7d501 authored by kmandhre's avatar kmandhre

update lot no ,lot sl in header for QC = Y


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92052 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e4d9a988
......@@ -210,13 +210,17 @@ public class RcptBackFlushPos extends ValidatorEJB implements RcptBackFlushPosL
sql = " update receipt_backflush "
+" set mfg_date = ? , "
+" exp_date = ? , "
+" loc_code = ? "
+" loc_code = ? ,"
+" lot_no = ? ,"
+ " lot_sl = ? "
+" where tran_id = ? ";
pstmt = conn.prepareStatement(sql);
pstmt.setTimestamp(1,mfgDate);
pstmt.setTimestamp(2,expDate);
pstmt.setString(3,locCodeInsp); // modify by cpatil on 20-AUG-12 as per suggestion
pstmt.setString(4,tranId);
pstmt.setString(4,lotNoDet); //added by Kunal on 25/10/12 as per Rawtani Sir instruction
pstmt.setString(5,lotSlDet);//added by Kunal on 25/10/12 as per Rawtani Sir instruction
pstmt.setString(6,tranId);
}
else
{
......
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