Commit b1b10ad4 authored by manohar's avatar manohar

Bug fixing


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92019 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 8d86f1da
...@@ -3652,7 +3652,7 @@ public class PoRcpConf extends ActionHandlerEJB implements PoRcpConfLocal, PoRcp ...@@ -3652,7 +3652,7 @@ public class PoRcpConf extends ActionHandlerEJB implements PoRcpConfLocal, PoRcp
if ( "Y".equalsIgnoreCase(qcReqd) ) if ( "Y".equalsIgnoreCase(qcReqd) )
{ {
sql = "SELECT ITEM_CODE, MIN(LINE_NO) AS LINE_NO FROM PORCPDET WHERE PORCPDET.TRAN_ID = ? GROUP BY ITEM_CODE ORDER BY MIN(LINE_NO)"; sql = "SELECT ITEM_CODE, MIN(LINE_NO) AS LINE_NO FROM PORCPDET WHERE PORCPDET.TRAN_ID = ? GROUP BY ITEM_CODE "; //ORDER BY MIN(LINE_NO)";
pstmtSql = conn.prepareStatement(sql); pstmtSql = conn.prepareStatement(sql);
pstmtSql.setString(1, tranId); pstmtSql.setString(1, tranId);
rs = pstmtSql.executeQuery(); rs = pstmtSql.executeQuery();
......
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