Commit e84c1491 authored by manohar's avatar manohar

Bug fix table name wrongly specified as itemCode instead of item while taking loc_code


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96869 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 8e030f5b
...@@ -383,7 +383,7 @@ public class QcOrderAct extends ActionHandlerEJB implements QcOrderActLocal , Q ...@@ -383,7 +383,7 @@ public class QcOrderAct extends ActionHandlerEJB implements QcOrderActLocal , Q
} }
if ("I".equalsIgnoreCase (locLogic )) if ("I".equalsIgnoreCase (locLogic ))
{ {
sql = " select LOC_CODE from itemCode " sql = " select LOC_CODE from item "
+" where item_code = ? " ; +" where item_code = ? " ;
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
pstmt.setString(1, itemCode); pstmt.setString(1, itemCode);
......
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