Commit c8349a8d authored by cpatil's avatar cpatil

modify code


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@98388 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 13f099e8
......@@ -637,8 +637,8 @@ public class SuppInfoUpdIC extends ValidatorEJB implements SuppInfoUpdICLocal, S
sql = " insert into supp_amd ( tran_id, supp_code , chq_name_o, tele1_o,pan_no_o,excise_ref_o,ser_tax_reg_o," +
"tax_reg_o " +
" ) values (?,?,?,?,?,?,?,? ) ";
"tax_reg_o, wf_status " +
" ) values (?,?,?,?,?,?,?,?,? ) ";
System.out.println("sql :"+sql);
pstmt = conn.prepareStatement(sql);
pstmt.setString(1,tranId);
......@@ -649,6 +649,7 @@ public class SuppInfoUpdIC extends ValidatorEJB implements SuppInfoUpdICLocal, S
pstmt.setString(6,exciseRef);
pstmt.setString(7,serTaxReg);
pstmt.setString(8,taxReg);
pstmt.setString(9,"O");
cnt = pstmt.executeUpdate();
pstmt.close();
pstmt = null;
......
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