Commit 94ce2f10 authored by dpawar's avatar dpawar

added change_status in update statement of carton_master


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@97239 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e83a2ba5
......@@ -1326,7 +1326,7 @@ public class MultiplePtcnWizConf extends ActionHandlerEJB implements MultiplePtc
}
sqlBuf.append("UPDATE CARTON_MASTER SET STATUS = ?,PALLET_NO = PTCN WHERE PTCN IN (");
sqlBuf.append("UPDATE CARTON_MASTER SET STATUS = ?,CHANGE_STATUS = ?,PALLET_NO = PTCN WHERE PTCN IN (");
for(int i = 0; i < ptcnList.size(); i++)
{
mark = mark + "?,";
......@@ -1344,6 +1344,7 @@ public class MultiplePtcnWizConf extends ActionHandlerEJB implements MultiplePtc
}
pstmt.setString(++pstmtCnt,"R");
pstmt.setString(++pstmtCnt,"N");
cnt = pstmt.executeUpdate();
if(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