Commit 5b5e9deb authored by ssurve's avatar ssurve

Issue of item in detail not exists in dist order detail validation corrected


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96186 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 7b1f2912
...@@ -435,7 +435,7 @@ public class DistIssWiz extends ValidatorEJB implements DistIssWizLocal, DistIss ...@@ -435,7 +435,7 @@ public class DistIssWiz extends ValidatorEJB implements DistIssWizLocal, DistIss
while(rs.next()) while(rs.next())
{ {
//itemCodeH = rs.getString(1) == null ? "":rs.getString(1); //itemCodeH = rs.getString(1) == null ? "":rs.getString(1);
itemCodeList.add(rs.getString(1) == null ? "":rs.getString(1)); itemCodeList.add(rs.getString(1) == null ? "":rs.getString(1).trim());
} }
pstmt.close(); pstmt.close();
rs.close(); rs.close();
......
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