bpmRunLogGet.jsp 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. <%--
  2. time:2012-08-06 13:56:42
  3. --%>
  4. <%@page language="java" pageEncoding="UTF-8"%>
  5. <%@include file="/commons/include/html_doctype.html"%>
  6. <html>
  7. <head>
  8. <title>流程运行日志明细</title>
  9. <%@include file="/commons/include/getById.jsp" %>
  10. <script type="text/javascript">
  11. //放置脚本
  12. </script>
  13. </head>
  14. <body>
  15. <div class="panel">
  16. <div class="panel-top">
  17. <div class="tbar-title">
  18. <span class="tbar-label">流程运行日志详细信息</span>
  19. </div>
  20. <c:if test="${canReturn==0}">
  21. <div class="panel-toolbar">
  22. <div class="toolBar">
  23. <div class="group"><a class="link back" onclick="history.back()"><span></span>返回</a></div>
  24. </div>
  25. </div>
  26. </c:if>
  27. </div>
  28. <div class="panel-body">
  29. <table class="table-detail" cellpadding="0" cellspacing="0" border="0">
  30. <tr>
  31. <th width="20%">流程运行ID:</th>
  32. <td>${bpmRunLog.runid}</td>
  33. </tr>
  34. <tr>
  35. <th width="20%">流程标题:</th>
  36. <td>${bpmRunLog.processSubject}</td>
  37. </tr>
  38. <tr>
  39. <th width="20%">用户名称:</th>
  40. <td>${bpmRunLog.username}</td>
  41. </tr>
  42. <tr>
  43. <th width="20%">操作时间:</th>
  44. <td><fmt:formatDate value="${bpmRunLog.createtime}" pattern="yyyy-MM-dd HH:mm:ss"/></td>
  45. </tr>
  46. <tr>
  47. <th width="20%">操作类型:</th>
  48. <td>
  49. <c:choose>
  50. <c:when test="${bpmRunLog.operatortype eq 0}"><span class="green">启动流程</span></c:when>
  51. <c:when test="${bpmRunLog.operatortype eq 1}"><span class="green">交办</span></c:when>
  52. <c:when test="${bpmRunLog.operatortype eq 2}"><span class="red">撤销</span></c:when>
  53. <c:when test="${bpmRunLog.operatortype eq 3}"><span class="red">删除流程实例</span></c:when>
  54. <c:when test="${bpmRunLog.operatortype eq 4}"><span class="green">同意(投票)</span></c:when>
  55. <c:when test="${bpmRunLog.operatortype eq 5}"><span class="red">反对(投票)</span></c:when>
  56. <c:when test="${bpmRunLog.operatortype eq 6}"><span class="green">弃权(投票)</span></c:when>
  57. <c:when test="${bpmRunLog.operatortype eq 7}"><span class="green">补签</span></c:when>
  58. <c:when test="${bpmRunLog.operatortype eq 8}"><span class="red">驳回</span></c:when>
  59. <c:when test="${bpmRunLog.operatortype eq 9}"><span class="red">驳回到发起人</span></c:when>
  60. <c:when test="${bpmRunLog.operatortype eq 10}"><span class="red">删除任务</span></c:when>
  61. <c:when test="${bpmRunLog.operatortype eq 11}"><span class="green">代理任务</span></c:when>
  62. <c:when test="${bpmRunLog.operatortype eq 13}"><span class="green">锁定任务</span></c:when>
  63. <c:when test="${bpmRunLog.operatortype eq 14}"><span class="green">任务解锁</span></c:when>
  64. <c:when test="${bpmRunLog.operatortype eq 15}"><span class="green">添加意见</span></c:when>
  65. <c:when test="${bpmRunLog.operatortype eq 16}"><span class="green">任务指派</span></c:when>
  66. <c:when test="${bpmRunLog.operatortype eq 17}"><span class="green">设定所有人</span></c:when>
  67. <c:when test="${bpmRunLog.operatortype eq 18}"><span class="green">结束任务</span></c:when>
  68. <c:otherwise><span class="red">其他</span></c:otherwise>
  69. </c:choose>
  70. </td>
  71. </tr>
  72. <tr>
  73. <th width="20%">备注:</th>
  74. <td>${bpmRunLog.memo}</td>
  75. </tr>
  76. </table>
  77. </div>
  78. </div>
  79. </body>
  80. </html>