Commit 82c86aed authored by ssalve's avatar ssalve

missing ? and bug fixing for operating language in DDProductWizard


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104930 ce508802-f39f-4f6c-b175-0d175dae99d5
parent a96f0899
......@@ -1704,7 +1704,9 @@ public class DDProductWizEditPosEJB extends ValidatorEJB implements DDProductWiz
String sqlSiteIns = "INSERT INTO SITEITEM (SITE_CODE, ITEM_CODE, MIN_QTY, MAX_QTY, REO_QTY, REO_LEV, "
+ " PUR_LEAD_TIME, STK_OPT, ITEM_SER, ACTIVE, CHG_DATE, CHG_USER, CHG_TERM , LOC_CODE__APRV, "
+ " SUPP_SOUR ) " // Added by Sneha on 21-11-2016
+ " VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?,?) ";
//change by sarita ? missing 09-03-2017
//+ " VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) ";
+ " VALUES(?,?,?,?,?,?,?,?,?,?,?,?,?,?,?) ";
if (siteList.contains(siteCode.trim()))
{
......
......@@ -2368,6 +2368,8 @@ public class DDProductWizPosEJB extends ValidatorEJB implements DDProductWizPosR
if(rs.next())
{
langCode = rs.getString("operating_language");
//Added by sarita 09-03-2017
langCode = langCode==null?"":langCode;
}
pstmt.close();
......
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