Commit 7a8e7a3c authored by apal's avatar apal

Client name: Pitambari ,Client request Id:D17FPIT001

bug fix

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@173943 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 979656dc
...@@ -3965,7 +3965,9 @@ public class SalesReturnConfirm extends ActionHandlerEJB implements SalesReturnC ...@@ -3965,7 +3965,9 @@ public class SalesReturnConfirm extends ActionHandlerEJB implements SalesReturnC
rs1.close(); rs1.close();
rs1 = null; rs1 = null;
} }
if(ls_old_cust_code != ls_cust_code || ls_old_item_ser != ls_item_ser) //added by apal for Outbound Integration
System.out.println("ls_old_cust_code["+ls_old_cust_code+"]"+"[ls_cust_code"+ls_cust_code+"]"+"ls_old_item_ser["+ls_old_item_ser+"]"+"ls_item_ser["+ls_item_ser+"]");
if(! (ls_old_cust_code.trim().equalsIgnoreCase(ls_cust_code)) || !(ls_old_item_ser.trim().equalsIgnoreCase(ls_item_ser) ))
{ {
sql = "select fin_entity from site where site_code = ? "; sql = "select fin_entity from site where site_code = ? ";
pstmt1 = conn.prepareStatement(sql); pstmt1 = 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