Commit ccc7fd39 authored by ssalve's avatar ssalve

Sarita: Done changes to resolve invalid identifier error coming for...

Sarita: Done changes to resolve invalid identifier error coming for price_list__disc field in wfvaldata on 01DEC2017

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@175081 ce508802-f39f-4f6c-b175-0d175dae99d5
parent f5f3cf92
...@@ -238,7 +238,9 @@ public class SiteCustomer extends ValidatorEJB implements SiteCustomerLocal,Site ...@@ -238,7 +238,9 @@ public class SiteCustomer extends ValidatorEJB implements SiteCustomerLocal,Site
priceListDisc = genericUtility.getColumnValue("price_list__disc", dom); priceListDisc = genericUtility.getColumnValue("price_list__disc", dom);
if( priceListDisc != null && priceListDisc.trim().length() > 0) if( priceListDisc != null && priceListDisc.trim().length() > 0)
{ {
sql = "select count(*) from pricelist where price_list__disc = ?"; //Added by sarita on 01DEC2017
//sql = "select count(*) from pricelist where price_list__disc = ?";
sql = "select count(*) from pricelist where price_list = ?";
pstmt = conn.prepareStatement(sql); pstmt = conn.prepareStatement(sql);
pstmt.setString(1,priceListDisc); pstmt.setString(1,priceListDisc);
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