Commit e5831400 authored by msalla's avatar msalla

Bug fixed in SalesReturnConfirm and SalesReturnVerifyPasswordPrc

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@217416 ce508802-f39f-4f6c-b175-0d175dae99d5
parent f661f4fa
......@@ -3950,7 +3950,9 @@ public class SalesReturnConfirm extends ActionHandlerEJB implements SalesReturnC
lb_flag = false;
ll_line_no ++;
ls_cust_code = checkNullAndTrim(rs.getString(1));
//ls_cust_code = checkNullAndTrim(rs.getString(1));commented by monika salla 3 march 2020 --getting error while match cust_code and cust_code__dlv..
ls_cust_code = rs.getString(1);//end
ld_eff_date = rs.getTimestamp(2);
ls_curr_code = checkNullAndTrim(rs.getString(3));
lc_exch_rate = rs.getDouble(4);
......@@ -4896,7 +4898,7 @@ public class SalesReturnConfirm extends ActionHandlerEJB implements SalesReturnC
while(rs.next())
{
ll_line_no ++;
ls_cust_code = checkNullAndTrim(rs.getString(1));
ls_cust_code = rs.getString(1);
ld_eff_date = rs.getTimestamp(2);
ls_curr_code = checkNullAndTrim(rs.getString(3));
lc_exch_rate = rs.getDouble(4);
......
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