Commit 52319ddf authored by manohar's avatar manohar

insert in rcpacct line_no changed to int instead of string


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@97053 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 882bdf69
...@@ -1973,7 +1973,9 @@ public class ReceiptAdvConf extends ActionHandlerEJB implements ReceiptAdvConfLo ...@@ -1973,7 +1973,9 @@ public class ReceiptAdvConf extends ActionHandlerEJB implements ReceiptAdvConfLo
pstmt.setString(1,tranId); pstmt.setString(1,tranId);
pstmt.setString(2,String.valueOf(maxline)); // 29/12/14 manoharan line_no is numeric not string
//pstmt.setString(2,String.valueOf(maxline));
pstmt.setInt(2,maxline);
pstmt.setString(3,acctCode); pstmt.setString(3,acctCode);
pstmt.setString(4,cctrCode==null?"":cctrCode); pstmt.setString(4,cctrCode==null?"":cctrCode);
pstmt.setDouble(5,exchRate); pstmt.setDouble(5,exchRate);
......
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