Commit c717439c authored by manohar's avatar manohar

In case of selective period if feedback exists in that period then only show the work allocation


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@103293 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 0c65d6ee
......@@ -1104,8 +1104,8 @@ public class ManagmentDashboard implements ManagmentDashboardLocal, ManagmentDas
toDateInTs= Timestamp.valueOf(genericUtility.getValidDateString(toDate, genericUtility.getApplDateFormat(),genericUtility.getDBDateFormat()) + " 00:00:00.0");
//dateInpute =" and h.TRAN_DATE >= ? AND h.TRAN_DATE <= ?";
dateInpute = "and (select count(1) from SER_REQ_FEEDBK f where f.req_id = h.req_id and f.execut_dt ? AND ? ) > 0 ";
dateInpute1 = "and (select count(1) from SER_REQ_FEEDBK f where f.ticket_no = h.ticket_no and f.execut_dt ? AND ? ) > 0 ";
dateInpute = "and (select count(1) from SER_REQ_FEEDBK f where f.req_id = h.req_id and f.execut_dt between ? AND ? ) > 0 ";
dateInpute1 = "and (select count(1) from SER_REQ_FEEDBK f where f.ticket_no = h.ticket_no and f.execut_dt between ? AND ? ) > 0 ";
}
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