liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page import="com.landy.framework.core.util.ContextUtils"%>
<%@ page import="com.landy.framework.core.support.Condition"%>
<%@ page import="com.landy.gum.check.service.ScCheckOrgManager"%>
<%@ page import="com.landy.gum.check.service.ScCheckFlowRecordManager"%>
<%@ page import="com.landy.gum.check.query.Dai_DaiSubmitEditByScchIdQueryItem"%>
<%@ page import="com.landy.gum.check.query.SP_getScCheckFlowRecordBySccoIdQueryItem"%>
<%@ page import="net.sf.json.JSONObject"%>
<%@ page import="java.util.*"%>
<%
    String scchId = request.getParameter("scchId");
    String sccoId = request.getParameter("sccoId");
    ScCheckOrgManager checkOrgManager = ContextUtils.getBeanOfType(ScCheckOrgManager.class);
    ScCheckFlowRecordManager recordManager = ContextUtils.getBeanOfType(ScCheckFlowRecordManager.class);
     List<SP_getScCheckFlowRecordBySccoIdQueryItem> recordList = recordManager.getScCheckFlowRecordBySccoId(sccoId,null);
     request.setAttribute("recordList", recordList);
     
     //得到流程顺序
     
     
     
 %>
 
<!DOCTYPE HTML>
<html>
  <head>
    <title>编辑详情</title>
    <link href="dist/timeline/css/style.css" rel="stylesheet" />
  </head>
  <body>
      <div class="" id="">
              <form id="exportForm" method="post" target="ExportIframe"  action="">
            <input type="hidden" id="data-json" name="data-json">
            <input type="hidden" id="template-name" name="template-name" value="bo_hui_submit.ftl">
        </form>
          <jsp:include page="../common/detail_top.jsp"></jsp:include>
          <div class=" allContent " id="dai-submit">
            <input type="hidden" id="scchId" value="<%=request.getParameter("scchId")%>"/>
            <%--检查项详情 --%>
            <div class="" id="">
                <table class="titleTable" cellspacing='1' cellpadding='3px'>
                    <tr>
                        <td class="titles" align='center' colspan="4"><h3 id="title" exportWord='text'>标题</h3></td>
                    </tr>
                    <tr>
                        <td class="">开始日期:<span id="beginDate" exportWord='text'></span></td>
                        <td class="">结束日期:<span id="endDate"  exportWord='text'></span></td>
                        <td class="" colspan="2">执行周期:<span id="workDay"  exportWord='text'></span></td>
                    </tr>
                </table>
                <div class="divTable">
                    <table class="" id="editDetailGrid"  exportWord='table' cellpadding='0' cellspacing='1' borde=''>
                        <tr>
                            <th width='100'>检查项目</th>
                            <th width='200'>检查内容</th>
                            <th width='100'>检查方法</th>
                            <th width='100'>是否达标</th>
                            <th width='100'>未达标说明</th>
                        </tr>
                    </table>
                </div>
                
                <table class="remorkTable" id=""  cellpadding='0' cellspacing='0' borde='0'>
                    <tr>
                        <td class="" width="15.1%">备注</td>
                        <td colspan="4"><input exportWord='val' class="hinput inputRight" type="text" id="remork"/></td>
                    </tr>
                </table>
                
                <table  exportWord='qianzi' exportfrist='ok'  id='qianziList' class="titleTable2" cellspacing='1' cellpadding='3px'>
                        <tr></tr>
                        <tr id="qianzi_tr">
                        </tr>
                </table>
                <hr/>
                
                <jsp:include page="../shenPi/check_flow_nav.jsp"></jsp:include>
                <div class="timeTitleClass">
                     <span >时间</span>
                     <span class='caoZuoRen'>操作人员</span>
                     <span class='caoZuo'>操作</span>
                     <span class='yiJian'>意见</span>
                </div>
                
                <div class='times mytimes'>
                    <ul exportWord='ul' id='bohuitimes'>
                        <c:forEach items="${recordList}" var="record">
                            <li>
                             <b></b>
                             <span name='scfrTaskDate'>${record.scfrTaskDate }</span>
                             <span name='scfrTasker' class='times_ul_li'>${record.scfrTasker }</span>
                             <span name='scfrResult' class='times_ul_li'>${record.scfrResult }</span>
                             <span name='scfrRemark' class='times_ul_li' style=" text-align:center;">${record.scfrRemark }</span>
                            </li>
                        </c:forEach>
                    </ul>
                </div>
            </div>
            </div>
        </div>
        <nav  id="dialog_bottom" class="navbar navbar-default navbar-fixed-bottom navbar-right">
            <a id='saveAndSubmit' class="btn btn-success form-bottom-but" > 保存提交 </a>
            <a id='save' clickFlag="true" class="btn  btn-success"> 保 存 </a>
            <a id='close' class="btn btn-white form-bottom-but" > 关  闭</a>
        </nav>
        
    </div>
  </body>
</html>