Commit 38ed7118 authored by ngadkari's avatar ngadkari

line no invoice trace added in point base scheme type

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@213557 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 94b558f1
......@@ -5249,9 +5249,9 @@ public class PostOrderActivity {
+" values (?, ?, ?, ?,?,?, ?,?,?,?,?, ?,?,?,?)" ;
pstmt90 = conn.prepareStatement(sql);
sql=" select sord_line_no, sord_no, item_code, quantity__stduom, line_type,inv_line_no from invoice_trace where invoice_id =? "
+ " order by INV_LINE_NO ";
sql=" select sord_line_no, sord_no, item_code, quantity__stduom, line_type,inv_line_no,line_no from invoice_trace where invoice_id =? "
// + " order by INV_LINE_NO ";
+ " order by line_no ";
pstmt8=conn.prepareStatement(sql);
pstmt8.setString(1,invoiceId);
rs8=pstmt8.executeQuery();
......@@ -5263,6 +5263,7 @@ public class PostOrderActivity {
soLineNo=checkNull(rs8.getString("sord_line_no"));
quantityStduom=rs8.getDouble("quantity__stduom");
nature=checkNull(rs8.getString("line_type"));
invLineNo=(rs8.getInt("line_no"));// added by nandkyumar gadkari on 16/12/19
sql = "select order_date,state_code__dlv,count_code__dlv,site_code from sorder where sale_order = ? ";
pstmt = conn.prepareStatement(sql);
......
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