Commit 3e5ed8cb authored by dkasliwal's avatar dkasliwal

Modify label closed to closing and comment total hours from pending Request Dashboard


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@102546 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 50db6520
...@@ -908,11 +908,16 @@ public class ManagmentDashboard implements ManagmentDashboardLocal, ManagmentDas ...@@ -908,11 +908,16 @@ public class ManagmentDashboard implements ManagmentDashboardLocal, ManagmentDas
time_spnet=checkNull(rs.getString("time_spent")); time_spnet=checkNull(rs.getString("time_spent"));
STD_COMP_TIME=checkNull(rs.getString("STD_COMP_TIME")); STD_COMP_TIME=checkNull(rs.getString("STD_COMP_TIME"));
} }
rowData = new JSONObject(); /*Start : Code commnent for Total Hours hide from dashboard as per manohar sir told On date 15-07-2016*/
/*rowData = new JSONObject();
rowData.put("descr","Total Hours" ); rowData.put("descr","Total Hours" );
rowData.put("count",(time_spnet=="" ? 0 : time_spnet) ); rowData.put("count",(time_spnet=="" ? 0 : time_spnet) );
rowDataPendingTaskJson.put(count, rowData); rowDataPendingTaskJson.put(count, rowData);
count++; count++;*/
/*End : Code commnent for Total Hours hide from dashboard as per manohar sir told On date 15-07-2016*/
rowData = new JSONObject(); rowData = new JSONObject();
rowData.put("descr","Estimated Hours" ); rowData.put("descr","Estimated Hours" );
rowData.put("count",(STD_COMP_TIME=="" ? 0 : STD_COMP_TIME)); rowData.put("count",(STD_COMP_TIME=="" ? 0 : STD_COMP_TIME));
...@@ -999,7 +1004,7 @@ public class ManagmentDashboard implements ManagmentDashboardLocal, ManagmentDas ...@@ -999,7 +1004,7 @@ public class ManagmentDashboard implements ManagmentDashboardLocal, ManagmentDas
{ {
rowData = new JSONObject(); rowData = new JSONObject();
rowData.put("descr","Closed" ); rowData.put("descr","Closing" );
rowData.put("count",checkNull(rs.getString("no_req")) ); rowData.put("count",checkNull(rs.getString("no_req")) );
rowDataPendingTaskJson.put(count, rowData); rowDataPendingTaskJson.put(count, rowData);
count++; count++;
......
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