Commit 8c9dddd1 authored by pchavan's avatar pchavan

Change the condition.

git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@184000 ce508802-f39f-4f6c-b175-0d175dae99d5
parent e9a2f3db
...@@ -1468,7 +1468,10 @@ public class Supplier extends ValidatorEJB implements SupplierLocal,SupplierRemo ...@@ -1468,7 +1468,10 @@ public class Supplier extends ValidatorEJB implements SupplierLocal,SupplierRemo
{ {
errCode = "VMACCTA"; errCode = "VMACCTA";
} }
else if(siteSpec != null && !siteSpec.equals("Y")) //Changed By PriyankaC on 23April2018.[START]
//else if(siteSpec != null && !siteSpec.equals("Y"))
else if(siteSpec != null && siteSpec.equals("Y"))
//Changed By PriyankaC on 23April2018.[END]
{ {
sql = "select count(*) from site_account where site_code = ? and acct_code = ?"; sql = "select count(*) from site_account where site_code = ? and acct_code = ?";
pstmt = conn.prepareStatement(sql); pstmt = 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