Commit b5337cf9 authored by msingh's avatar msingh

Changes in WavegenerationPrc.java for DDUK


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@99212 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 72261dff
......@@ -637,6 +637,18 @@ public class DockTranPos extends ValidatorEJB implements DockTranPosLocal, DockT
if(errString != null && errString.indexOf("VTSUCC1") > 0)
{
System.out.println("----------"+despId+" Despatch confirmed successfully.................");
updateSql = "UPDATE WAVE_TASK_DET SET STATUS = 'Y', WAVE_STATUS = 'V' WHERE REF_ID = ? ";
pstmt = conn.prepareStatement(updateSql);
pstmt.setString(1, despId);
updCnt = pstmt.executeUpdate();
if( updCnt > 0 )
{
System.out.println( updCnt + " rows updated successfully " );
}
pstmt.close();pstmt = null;
//Changed by Manish on [12/05/15] start
String printer = "";
printer = genericUtility.getColumnValue( "printer_name", dom );
......
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