printForTimeCostOfPersonal.jsp 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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__">
  17. <!-- <INPUT type="button" -->
  18. <!-- value="直接打印" class="p__" onclick="prn1_print()"> -->
  19. <INPUT
  20. type="button" value="打印预览" onclick="prn1_preview()" class="p__"></TD>
  21. </TR>
  22. </TABLE>
  23. <center>
  24. <table style="width: 100%;" cellspacing="0" cellpadding="0" border="1">
  25. <tbody>
  26. <tr>
  27. <th style="width: 15%; text-align: center; height: 40px;">姓名
  28. </th>
  29. <th style="width: 25%; 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. <th style="width: 20%; text-align: center; height: 40px;">办理环节数量
  36. </th>
  37. </tr>
  38. </tbody>
  39. <tbody>
  40. <c:forEach items="${requestScope.list }" var="stat">
  41. <tr>
  42. <td style="text-align: center; height: 30px;">
  43. ${stat.name }
  44. </td>
  45. <td style="text-align: center; height: 30px;">
  46. <c:choose>
  47. <c:when test="${stat.avgcost == null || stat.avgcost == '' }">0</c:when>
  48. <c:otherwise>${stat.avgcost }</c:otherwise>
  49. </c:choose>
  50. </td>
  51. <td style="text-align: center; height: 30px;">
  52. <c:choose>
  53. <c:when test="${stat.mincost == null || stat.mincost == '' }">0</c:when>
  54. <c:otherwise>${stat.mincost }</c:otherwise>
  55. </c:choose>
  56. </td>
  57. <td style="text-align: center; height: 30px;">
  58. <c:choose>
  59. <c:when test="${stat.maxcost == null || stat.maxcost == '' }">0</c:when>
  60. <c:otherwise>${stat.maxcost }</c:otherwise>
  61. </c:choose>
  62. </td>
  63. <td style="text-align: center; height: 30px;">
  64. <c:choose>
  65. <c:when test="${stat.counts == null || stat.counts == '' }">0</c:when>
  66. <c:otherwise>${stat.counts }</c:otherwise>
  67. </c:choose>
  68. </td>
  69. </tr>
  70. </c:forEach>
  71. </tbody>
  72. </table>
  73. </center>
  74. </body>
  75. </html>