Commit b5226d56 authored by mnair's avatar mnair

Changes in sql by setting the key string from w_voucher to W_VOUCHER

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@183978 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e0f382c1
......@@ -97,7 +97,7 @@ public class PorderConf extends ActionHandlerEJB implements PorderConfLocal, Por
{
confirm = checkNull(rs.getString("confirmed"));
status = checkNull(rs.getString("status"));
//wrkStatus = checkNull(rs.getString(3));
//wrkStatus = checkNull(rs.ge tString(3));
pordType = checkNull(rs.getString("pord_type"));
//siteCodeBill = checkNull(rs.getString("site_code__bill"));
projCode = checkNull(rs.getString("proj_code"));
......@@ -3619,8 +3619,9 @@ public class PorderConf extends ActionHandlerEJB implements PorderConfLocal, Por
if(errString.trim().length() == 0)
{
sql = "select key_string from transetup where upper(tran_window) = 'w_voucher' " ;
//changed by mayur on 23-APR-2018
//sql = "select key_string from transetup where upper(tran_window) = 'w_voucher' " ;
sql = "select key_string from transetup where upper(tran_window) = 'W_VOUCHER' " ;
pstmt = conn.prepareStatement(sql);
rs = pstmt.executeQuery();
if(rs.next())
......@@ -3988,8 +3989,9 @@ public class PorderConf extends ActionHandlerEJB implements PorderConfLocal, Por
if(errString.trim().length() == 0)
{
sql = "select key_string from transetup where upper(tran_window) = 'w_voucher' " ;
//changed by mayur on 23-APR-2018
//sql = "select key_string from transetup where upper(tran_window) = 'w_voucher' " ;
sql = "select key_string from transetup where upper(tran_window) = 'W_VOUCHER' " ;
pstmt = conn.prepareStatement(sql);
rs = pstmt.executeQuery();
if(rs.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