processRunGet.jsp 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. <%--
  2. time:2011-12-04 18:56:52
  3. --%>
  4. <%@page language="java" pageEncoding="UTF-8"%>
  5. <%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  6. <%@taglib prefix="f" uri="http://www.jee-soft.cn/functions" %>
  7. <%@taglib prefix="fn" uri="http://java.sun.com/jsp/jstl/functions" %>
  8. <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt" %>
  9. <%@include file="/commons/include/html_doctype.html"%>
  10. <html>
  11. <head>
  12. <title>${processRun.subject}</title>
  13. <c:set var="ctx" value="${pageContext.request.contextPath}" />
  14. <%@include file="/commons/include/get.jsp" %>
  15. <style type="text/css">
  16. body{ padding:0px; margin:0;overflow:hidden;}
  17. </style>
  18. </head>
  19. <body>
  20. <div class="panel">
  21. <div class="l-layout-header">流程实例-【<i>${processRun.subject}</i>】明细。</div>
  22. <c:if test="${param.tab eq 1 }">
  23. <c:choose>
  24. <c:when test="${processRun.status==2 || processRun.status==3}">
  25. <f:tab curTab="detail" tabName="process" />
  26. </c:when>
  27. <c:otherwise>
  28. <f:tab curTab="detail" tabName="process" hideTabs="copyUser"/>
  29. </c:otherwise>
  30. </c:choose>
  31. </c:if>
  32. <div class="panel-body">
  33. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  34. <tr>
  35. <th width="20%">
  36. 运行实例ID(runId)
  37. </th>
  38. <td>${processRun.runId}</td>
  39. </tr>
  40. <tr>
  41. <th width="20%">流程定义ID:</th>
  42. <td>${processRun.defId}</td>
  43. </tr>
  44. <tr>
  45. <th width="20%">流程实例标题:</th>
  46. <td>${processRun.subject}</td>
  47. </tr>
  48. <tr>
  49. <th width="20%">创建人ID:</th>
  50. <td>${processRun.creatorId}</td>
  51. </tr>
  52. <tr>
  53. <th width="20%">创建人:</th>
  54. <td>${processRun.creator}</td>
  55. </tr>
  56. <tr>
  57. <th width="20%">创建时间:</th>
  58. <td>${f:shortDate(processRun.createtime)}</td>
  59. </tr>
  60. <tr>
  61. <th width="20%">业务表单简述:</th>
  62. <td>${processRun.busDescp}</td>
  63. </tr>
  64. <tr>
  65. <th width="20%">状态:</th>
  66. <td>
  67. <c:choose>
  68. <c:when test="${processRun.status==1}">
  69. <font color='green'>正在运行</font>
  70. </c:when>
  71. <c:when test="${processRun.status==2}">
  72. 结束
  73. </c:when>
  74. <c:when test="${processRun.status==3}">
  75. 人工结束
  76. </c:when>
  77. <c:when test="${processRun.status==4}">
  78. 流程草稿
  79. </c:when>
  80. <c:when test="${processRun.status==5}">
  81. 已撤销
  82. </c:when>
  83. <c:when test="${processRun.status==6}">
  84. 已驳回
  85. </c:when>
  86. <c:when test="${processRun.status==10}">
  87. 逻辑删除
  88. </c:when>
  89. </c:choose>
  90. </td>
  91. </tr>
  92. <tr>
  93. <th width="20%">ACT流程实例ID:</th>
  94. <td>${processRun.actInstId}</td>
  95. </tr>
  96. <tr>
  97. <th width="20%">ACT流程定义ID:</th>
  98. <td>${processRun.actDefId}</td>
  99. </tr>
  100. <tr>
  101. <th width="20%">businessKey:</th>
  102. <td>${processRun.businessKey}</td>
  103. </tr>
  104. </table>
  105. </div><!-- end of tab panel -->
  106. </div>
  107. </div>
  108. </body>
  109. </html>