Commit 8ca90631 authored by agaikwad's avatar agaikwad

Added Check null COndition for part_qty.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104664 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 115102fe
......@@ -6445,7 +6445,7 @@ public class SalesOrderIC extends ValidatorEJB implements SalesOrderICLocal, Sal
{
lsOrderType = checkNull(rs.getString("order_type"));
lsLocGroup = checkNull(rs.getString("loc_group"));
lsPartQty = rs.getString("part_qty");
lsPartQty = checkNull(rs.getString("part_qty"));
}
pstmt.close();
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