Commit 59df6779 authored by sshinde's avatar sshinde

Comment the code of Status decoding i.e. if status is C then CLOSED else PENDING.


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@99991 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 32cd0bcb
...@@ -1308,7 +1308,7 @@ public class ManagmentDashboard implements ManagmentDashboardLocal, ManagmentDas ...@@ -1308,7 +1308,7 @@ public class ManagmentDashboard implements ManagmentDashboardLocal, ManagmentDas
//*Added New code by sachin on 7-Jan-16*/ //*Added New code by sachin on 7-Jan-16*/
compStat=checkNull(rs.getString("COMP_STAT")); compStat=checkNull(rs.getString("COMP_STAT"));
if(compStat.trim().length()>0) /*if(compStat.trim().length()>0)
{ {
if("C".equalsIgnoreCase(compStat)) if("C".equalsIgnoreCase(compStat))
{ {
...@@ -1317,7 +1317,7 @@ public class ManagmentDashboard implements ManagmentDashboardLocal, ManagmentDas ...@@ -1317,7 +1317,7 @@ public class ManagmentDashboard implements ManagmentDashboardLocal, ManagmentDas
{ {
compStat="PENDING"; compStat="PENDING";
} }
} }*/
//rowData.put("req_status",checkNull(rs.getString("COMP_STAT"))); //rowData.put("req_status",checkNull(rs.getString("COMP_STAT")));
......
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