Commit 3f1568d4 authored by prane's avatar prane

bug fixed in itmDefaultEdit

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@189987 ce508802-f39f-4f6c-b175-0d175dae99d5
parent a7810e98
......@@ -11433,9 +11433,10 @@ public class SalesOrderIC extends ValidatorEJB implements SalesOrderICLocal, Sal
.append("</ins_amt>");
}
lsOrderType = checkNull(genericUtility.getColumnValue("order_type", dom));
sql = "select descr from sordertype where order_type = =?";
sql = "select descr from sordertype where order_type =?";
pstmt = conn.prepareStatement(sql);
pstmt.setString(1, mkeyval);
//pstmt.setString(1, mkeyval);
pstmt.setString(1, lsOrderType);
rs = pstmt.executeQuery();
if (rs.next()) {
lsOtypeDescr = rs.getString("descr");
......
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