printForTimeCostOfPersonal.jsp 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. <%@ page language="java" contentType="text/html;charset=GBK"
  2. pageEncoding="GBK"%>
  3. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
  4. <%@ taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions"%>
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  6. <html>
  7. <head>
  8. <meta http-equiv="Content-Type" content="text/html;charset=GBK">
  9. <title>流程办理耗时统计</title>
  10. <script type="text/javascript" src="/shares/pazu/plugPrint.js"></script>
  11. </head>
  12. <body>
  13. <TABLE width="100%" cellpadding="0" cellspacing="0" align="center"
  14. class="p__" style="margin: 0px auto;">
  15. <TR class="p__">
  16. <TD align="center" id="form1" class="p__"><INPUT type="button"
  17. value="直接打印" class="p__" onclick="prn1_print()"><INPUT
  18. type="button" value="打印预览" onclick="prn1_preview()" class="p__"></TD>
  19. </TR>
  20. </TABLE>
  21. <center>
  22. <table style="width: 100%;" cellspacing="0" cellpadding="0" border="1">
  23. <tbody>
  24. <tr>
  25. <th style="width: 15%; text-align: center; height: 40px;">姓名
  26. </th>
  27. <th style="width: 25%; text-align: center; height: 40px;">平均办理时间(单位:小时)
  28. </th>
  29. <th style="width: 20%; text-align: center; height: 40px;">最少办理时间(单位:小时)
  30. </th>
  31. <th style="width: 20%; text-align: center; height: 40px;">最长办理时间(单位:小时)
  32. </th>
  33. <th style="width: 20%; text-align: center; height: 40px;">办理环节数量
  34. </th>
  35. </tr>
  36. </tbody>
  37. <tbody>
  38. <c:forEach items="${requestScope.list }" var="stat">
  39. <tr>
  40. <td style="text-align: center; height: 30px;">
  41. ${stat.name }
  42. </td>
  43. <td style="text-align: center; height: 30px;">
  44. <c:choose>
  45. <c:when test="${stat.avgcost == null || stat.avgcost == '' }">0</c:when>
  46. <c:otherwise>${stat.avgcost }</c:otherwise>
  47. </c:choose>
  48. </td>
  49. <td style="text-align: center; height: 30px;">
  50. <c:choose>
  51. <c:when test="${stat.mincost == null || stat.mincost == '' }">0</c:when>
  52. <c:otherwise>${stat.mincost }</c:otherwise>
  53. </c:choose>
  54. </td>
  55. <td style="text-align: center; height: 30px;">
  56. <c:choose>
  57. <c:when test="${stat.maxcost == null || stat.maxcost == '' }">0</c:when>
  58. <c:otherwise>${stat.maxcost }</c:otherwise>
  59. </c:choose>
  60. </td>
  61. <td style="text-align: center; height: 30px;">
  62. <c:choose>
  63. <c:when test="${stat.counts == null || stat.counts == '' }">0</c:when>
  64. <c:otherwise>${stat.counts }</c:otherwise>
  65. </c:choose>
  66. </td>
  67. </tr>
  68. </c:forEach>
  69. </tbody>
  70. </table>
  71. </center>
  72. </body>
  73. </html>