Commit d8f52fcc authored by ssalve's avatar ssalve

Sarita : Update changes on 05 APR 2019

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@199277 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 842cc234
...@@ -17908,10 +17908,13 @@ public class SalesOrderIC extends ValidatorEJB implements SalesOrderICLocal, Sal ...@@ -17908,10 +17908,13 @@ public class SalesOrderIC extends ValidatorEJB implements SalesOrderICLocal, Sal
ResultSet rs = null; ResultSet rs = null;
try try
{ {
sql = "select customer.cust_code__dlv " //Changed by sarita on 05 APR 2019 [START]
+ "from customer customer , sorder sform " /*sql = "select customer.cust_code__dlv "
+ "from customer customer , sordform sform "
+ "where customer.cust_code = sform.cust_code " + "where customer.cust_code = sform.cust_code "
+ "and sform.cust_code= ? "; + "and sform.cust_code= ? ";*/
sql = "select cust_code__dlv from customer where cust_code = ?";
//Changed by sarita on 05 APR 2019 [END]
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
pstmt.setString(1,custCode); pstmt.setString(1,custCode);
rs = pstmt.executeQuery(); rs = pstmt.executeQuery();
......
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