Commit 2b3fd0d7 authored by manohar's avatar manohar

Bug fix for validating ship_docs


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96576 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 20b51b6f
......@@ -368,7 +368,7 @@ public class DespatchWiz extends ValidatorEJB implements DespatchWizLocal, Despa
System.out.println("despId ["+despId + "]");
sql = "select count(1) from ship_docs where ref_ser = 'S-DSP' and ref_id = ?";
pstmt=conn.prepareStatement(sql);
pstmt.setString(1,tranId);
pstmt.setString(1,despId);
rs = pstmt.executeQuery();
if(rs.next())
{
......
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