Commit abdc333f authored by manohar's avatar manohar

bug fixing trandate column set without time part


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91731 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 6f62db90
......@@ -96,7 +96,7 @@ public class InvHoldGen
tranId = generateTranId( "w_inv_hold", conn );
pstmtHold.setString( 1, tranId );
pstmtHold.setTimestamp( 2, currDate );
pstmtHold.setTimestamp( 2, java.sql.Timestamp.valueOf(sdf.format(date).toString() + " 00:00:00.0"));
pstmtHold.setString( 3, siteCode );
pstmtHold.setString( 4, "N" );
pstmtHold.setString( 5, refID );
......
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