Commit 5b21c586 authored by kmandhre's avatar kmandhre

change in itemchange method (detail screen )for station code f


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@91725 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 8913faaa
......@@ -736,6 +736,9 @@ public class DistributionRoute extends ValidatorEJB implements DistributionRoute
else if(currentColumn.trim().equalsIgnoreCase("stan_code__fr"))
{
stanCodeFr = checkNull(genericUtility.getColumnValue("stan_code__fr", dom));
stateCodeFr = "";
stateDescr = "";
descr = "";
if(stanCodeFr != null && stanCodeFr.trim().length() > 0)
{
sql = "Select descr,state_code from station where stan_code = ?";
......@@ -774,6 +777,9 @@ public class DistributionRoute extends ValidatorEJB implements DistributionRoute
else if(currentColumn.trim().equalsIgnoreCase("stan_code__to"))
{
stanCodeTo = checkNull(genericUtility.getColumnValue("stan_code__to", dom));
stateCodeTo = "";
descr = "";
stateDescr = "";
if(stanCodeTo != null && stanCodeTo.trim().length() > 0)
{
sql = "Select descr,state_code from station where stan_code = ?";
......
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