Commit 0a497359 authored by manohar's avatar manohar

Only feedback for request along with resolution exists considered in work...

Only feedback for request along with resolution exists considered in work allocation, ignored if feedback not exists against resolution for which no feeback during the period


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@103582 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 7c6f7b51
...@@ -1104,8 +1104,8 @@ public class ManagmentDashboard implements ManagmentDashboardLocal, ManagmentDas ...@@ -1104,8 +1104,8 @@ public class ManagmentDashboard implements ManagmentDashboardLocal, ManagmentDas
toDateInTs= Timestamp.valueOf(genericUtility.getValidDateString(toDate, genericUtility.getApplDateFormat(),genericUtility.getDBDateFormat()) + " 00:00:00.0"); toDateInTs= Timestamp.valueOf(genericUtility.getValidDateString(toDate, genericUtility.getApplDateFormat(),genericUtility.getDBDateFormat()) + " 00:00:00.0");
//dateInput =" and h.TRAN_DATE >= ? AND h.TRAN_DATE <= ?"; //dateInput =" and h.TRAN_DATE >= ? AND h.TRAN_DATE <= ?";
dateInput = "and (select count(1) from SER_REQ_FEEDBK f where f.req_id = h.req_id and f.execut_dt between ? AND ? ) > 0 "; dateInput = "and (select count(1) from SER_REQ_FEEDBK f,SER_REQ_FEEDBKDTL fd where f.feedbk_id = fd.feedbk_id and fd.action_id = d.action_id and fd.action_code = d.action_code and f.req_id = h.req_id and f.execut_dt between ? AND ? ) > 0 ";
dateInput1 = "and (select count(1) from SER_REQ_FEEDBK f where f.ticket_no = h.ticket_no and f.execut_dt between ? AND ? ) > 0 "; dateInput1 = "and (select count(1) from SER_REQ_FEEDBK f,SER_REQ_FEEDBKDTL fd where f.feedbk_id = fd.feedbk_id and fd.action_id = d.action_id and fd.action_code = d.action_code and f.ticket_no = h.ticket_no and f.execut_dt between ? AND ? ) > 0 ";
} }
System.out.println("getWorkAlloSummary frmDateInTs :"+frmDateInTs +"---- toDateInTs :"+toDateInTs); System.out.println("getWorkAlloSummary frmDateInTs :"+frmDateInTs +"---- toDateInTs :"+toDateInTs);
......
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