Commit e96cb94c authored by kmandhre's avatar kmandhre

bug fix in getAcctDetrTtype method


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@92942 ce508802-f39f-4f6c-b175-0d175dae99d5
parent cc425a93
......@@ -4854,7 +4854,7 @@ public class FinCommon
}
sql = " SELECT ACCT_CODE__PH,CCTR_CODE__PH FROM ITEM_ACCT_DETR WHERE ITEM_CODE = ' ' "
+ " AND ITEM_SER = '" + itemSerN + "' AND TRAN_TYPE '" + tranType + "'";
+ " AND ITEM_SER = '" + itemSerN + "' AND TRAN_TYPE = '" + tranType + "'"; //change done by kunal 4/04/13 bug fix in sql stmt
pstmt = conn.prepareStatement(sql);
System.out.println("sql ::: " + sql);
rs = pstmt.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