Commit a439158a authored by manohar's avatar manohar

bug fixing, space problem in sql statemnt becuse of mutiple line string corrected


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@96668 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 51c51beb
...@@ -139,7 +139,7 @@ public class CalculateCommission ...@@ -139,7 +139,7 @@ public class CalculateCommission
// Ended by fatema - 30/04/2007 - DI7CHT0010 // Ended by fatema - 30/04/2007 - DI7CHT0010
// create debit note for invoice = ls_invno and factor = lc_factor // create debit note for invoice = ls_invno and factor = lc_factor
sql1 = "select case when rcp_amt is null then 0 else rcp_amt end from rcpdet" + sql1 = "select case when rcp_amt is null then 0 else rcp_amt end from rcpdet " +
"where tran_id = ? and ref_ser = ? and ref_no = ?"; "where tran_id = ? and ref_ser = ? and ref_no = ?";
pstmt1 = conn.prepareStatement(sql1); pstmt1 = conn.prepareStatement(sql1);
......
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