Commit 6a4b1050 authored by prane's avatar prane

lineno added, while inserting tax chap in sorditem

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@178273 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 7cbdcdfe
...@@ -2696,10 +2696,11 @@ public class SorderConf extends ActionHandlerEJB implements SorderConfLocal, Sor ...@@ -2696,10 +2696,11 @@ public class SorderConf extends ActionHandlerEJB implements SorderConfLocal, Sor
mqty=geRndamt(mqty,round,roundTo); mqty=geRndamt(mqty,round,roundTo);
sql="Select tax_chap from sorditem where exp_lev= ? and sale_order= ? "; sql="Select tax_chap from sorditem where exp_lev= ? and sale_order= ? and line_no=? ";
pstmt2=conn.prepareStatement(sql); pstmt2=conn.prepareStatement(sql);
pstmt2.setString(1,expLev); pstmt2.setString(1,expLev);
pstmt2.setString(2,saleOrder); pstmt2.setString(2,saleOrder);
pstmt2.setString(3,lineNo);
rs2=pstmt2.executeQuery(); rs2=pstmt2.executeQuery();
if(rs2.next()) if(rs2.next())
{ {
......
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