reportChangeView.jsp 36 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/webpage/include/taglib.jsp"%>
  3. <html>
  4. <head>
  5. <title>报告详情管理</title>
  6. <meta name="decorator" content="default"/>
  7. <script type="text/javascript">
  8. $(function () {
  9. $("img").not(".upload_ico").each(function () {
  10. var num = 1 ;
  11. $(this).click(function () {
  12. var flag = num%2;
  13. if(flag == 1){
  14. $(this).css("width","300px");
  15. $(this).css("height","300px");
  16. num++;
  17. }else if(flag ==0){
  18. $(this).css("width","50px");
  19. $(this).css("height","50px");
  20. num++;
  21. }
  22. })
  23. });
  24. })
  25. </script>
  26. </head>
  27. <body>
  28. <div class="single-form">
  29. <div class="container view-form">
  30. <div class="tabs-container">
  31. <div class="layui-tab" id="tabDiv">
  32. <ul class="layui-tab-title" >
  33. <li class="active"><a data-toggle="tab" href="#tab-1" aria-expanded="true">变更信息</a></li>
  34. <li ><a data-toggle="tab" href="#tab-2" aria-expanded="false">变更前信息</a></li>
  35. </ul>
  36. </ul>
  37. </div>
  38. <div class="tab-content">
  39. <div id="tab-1" class="tab-pane active">
  40. <div class="form-group layui-row first lw12">
  41. <div class="form-group-label"><h2>基本信息</h2></div>
  42. <div class="layui-item layui-col-sm6">
  43. <label class="layui-form-label"><span class="require-item">*</span>报告名称:</label>
  44. <div class="layui-input-block with-icon">
  45. <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectcontentinfo.projectReportData.name}"/>
  46. </div>
  47. </div>
  48. <div class="layui-item layui-col-sm6">
  49. <label class="layui-form-label"><span class="require-item">*</span>报告编号:</label>
  50. <div class="layui-input-block">
  51. <div class="input-group">
  52. <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectcontentinfo.projectReportData.number}"/>
  53. <span class="input-group-btn">
  54. <label class="form-status">
  55. <c:choose>
  56. <c:when test="${not empty projectcontentinfo.projectReportData.status}">${fns:getDictLabel(projectcontentinfo.projectReportData.status, 'audit_state', '')}
  57. </c:when>
  58. <c:otherwise>新添</c:otherwise>
  59. </c:choose></label>
  60. </span>
  61. </div>
  62. </div>
  63. </div>
  64. <div class="layui-item layui-col-sm6">
  65. <label class="layui-form-label"><span class="require-item">*</span>工作内容类型:</label>
  66. <div class="layui-input-block">
  67. <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${fns:getContentTypeName(projectcontentinfo.projectReportData.type,"")}"/>
  68. </div>
  69. </div>
  70. <div class="layui-item layui-col-sm6">
  71. <label class="layui-form-label">成果类型:</label>
  72. <div class="layui-input-block">
  73. <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${fns:getMainDictLabel(projectcontentinfo.projectReportData.achievementType, 'achievement_type', '')}"/>
  74. </div>
  75. </div>
  76. <div class="layui-item layui-col-sm6">
  77. <label class="layui-form-label">复核标准:</label>
  78. <div class="layui-input-block">
  79. <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${fns:getDictLabel(projectcontentinfo.projectReportData.reviewStandard, 'reviewStandard', '')}"/>
  80. </div>
  81. </div>
  82. <div class="layui-item layui-col-sm6">
  83. <label class="layui-form-label">报告日期:</label>
  84. <div class="layui-input-block">
  85. <input id="provideDate" name="projectReportData.provideDate" type="text" htmlEscape="false" readonly="true" class="laydate-icondate form-control layer-date required layui-input laydate-icon"
  86. value="<fmt:formatDate value="${projectcontentinfo.projectReportData.reportDate}" pattern="yyyy-MM-dd"/>"/>
  87. </div>
  88. </div>
  89. <%--<div class="layui-item layui-col-sm6">
  90. <label class="layui-form-label">签字造价师一:</label>
  91. <div class="layui-input-block">
  92. <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectcontentinfo.projectReportData.signCostOne.name}"/>
  93. </div>
  94. </div>
  95. <div class="layui-item layui-col-sm6">
  96. <label class="layui-form-label">签字造价师二:</label>
  97. <div class="layui-input-block">
  98. <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectcontentinfo.projectReportData.signCostTwo.name}"/>
  99. </div>
  100. </div>--%>
  101. <div class="layui-item layui-col-sm6">
  102. <label class="layui-form-label">签章类型:</label>
  103. <div class="layui-input-block">
  104. <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectcontentinfo.projectReportData.reportType}"/>
  105. </div>
  106. </div>
  107. <div class="layui-item layui-col-sm6">
  108. <label class="layui-form-label">变更原因:</label>
  109. <div class="layui-input-block">
  110. <textarea path="remarks" htmlEscape="false" readonly="true" rows="3" maxlength="20" class="form-control" >${projectcontentinfo.projectReportData.remarks}</textarea>
  111. </div>
  112. </div>
  113. </div>
  114. <div class="form-group layui-row first lw12">
  115. <div class="form-group-label"><h2>项目信息</h2></div>
  116. <div class="layui-item layui-col-sm6">
  117. <label class="layui-form-label">送审价(元):</label>
  118. <div class="layui-input-block with-icon">
  119. <input id="projectReportData.reviewFee" readonly="true" class="form-control layui-input number" value="${projectcontentinfo.projectReportData.reviewFee}"/>
  120. </div>
  121. </div>
  122. <div class="layui-item layui-col-sm6">
  123. <label class="layui-form-label">审定价(元):</label>
  124. <div class="layui-input-block with-icon">
  125. <input id="projectReportData.approvalFee" readonly="true" class="form-control layui-input number" value="${projectcontentinfo.projectReportData.approvalFee}"/>
  126. </div>
  127. </div>
  128. <div class="layui-item layui-col-sm6">
  129. <label class="layui-form-label">合同价(元):</label>
  130. <div class="layui-input-block with-icon">
  131. <input id="projectReportData.contractFee" readonly="true" class="form-control layui-input number" value="${projectcontentinfo.projectReportData.contractFee}"/>
  132. </div>
  133. </div>
  134. <div class="layui-item layui-col-sm6">
  135. <label class="layui-form-label">核增核减额(元):</label>
  136. <div class="layui-input-block with-icon">
  137. <input id="projectReportData.verifyFee" readonly="true" class="form-control layui-input number" value="${projectcontentinfo.projectReportData.verifyFee}"/>
  138. </div>
  139. </div>
  140. <div class="layui-item layui-col-sm6">
  141. <label class="layui-form-label">核增核减率(%):</label>
  142. <div class="layui-input-block with-icon">
  143. <input id="projectReportData.verifyRate" readonly="true" class="form-control layui-input number" value="${projectcontentinfo.projectReportData.verifyRate}"/>
  144. </div>
  145. </div>
  146. <div class="layui-item layui-col-sm6">
  147. <label class="layui-form-label">咨询标的额(元):</label>
  148. <div class="layui-input-block with-icon">
  149. <input id="projectReportData.consultFee" readonly="true" class="form-control layui-input number" value="${projectcontentinfo.projectReportData.consultFee}"/>
  150. </div>
  151. </div>
  152. <div class="layui-item layui-col-sm6">
  153. <label class="layui-form-label">土建造价(元):</label>
  154. <div class="layui-input-block with-icon">
  155. <input id="projectReportData.buildingFee" readonly="true" class="form-control layui-input number" value="${projectcontentinfo.projectReportData.buildingFee}"/>
  156. </div>
  157. </div>
  158. <div class="layui-item layui-col-sm6">
  159. <label class="layui-form-label">安装造价(元):</label>
  160. <div class="layui-input-block with-icon">
  161. <input id="projectReportData.installFee" readonly="true" class="form-control layui-input number" value="${projectcontentinfo.projectReportData.installFee}"/>
  162. </div>
  163. </div>
  164. </div>
  165. <div class="form-group layui-row first lw12">
  166. <div class="form-group-label"><h2>依据性资料明细</h2></div>
  167. <div class="layui-item layui-col-xs12 form-table-container">
  168. <table id="contentTableBase" class="table table-bordered table-condensed details">
  169. <thead>
  170. <tr>
  171. <th class="hide"></th>
  172. <th >资料编号</th>
  173. <th >资料名称</th>
  174. <th >资料类别</th>
  175. <th >上传人</th>
  176. <th >上传日期</th>
  177. </tr>
  178. </thead>
  179. <tbody id="workBaseDataList">
  180. <c:forEach items="${projectcontentinfo.projectReportData.projectBasedDataList}" var="projectBasedData" varStatus="idx">
  181. <tr>
  182. <td class="hide">
  183. <input type="hidden" id="workBaseDataList${idx.index}_id" value="${projectBasedData.id}">
  184. </td>
  185. <td style="text-align:center;">
  186. ${projectBasedData.number}
  187. </td>
  188. <td style="text-align:center;">
  189. ${projectBasedData.name}
  190. </td>
  191. <td style="text-align:center;">
  192. ${fns:getDictLabel(projectBasedData.type, 'project_document_type', '')}
  193. </td>
  194. <td style="text-align:center;">
  195. ${projectBasedData.uploadUser.name}
  196. </td>
  197. <td style="text-align:center;">
  198. <fmt:formatDate value="${projectBasedData.uploadDate}" pattern="yyyy-MM-dd"/>
  199. </td>
  200. </tr>
  201. </c:forEach>
  202. </tbody>
  203. </table>
  204. </div>
  205. </div>
  206. <div class="form-group layui-row first lw12">
  207. <div class="form-group-label"><h2>依据工作内容</h2></div>
  208. <!-- 表格 -->
  209. <div class="layui-item layui-col-xs12 form-table-container">
  210. <table id="contentTable" class="table table-bordered table-condensed details">
  211. <thead>
  212. <tr>
  213. <th style="text-align: center;width:20%">工作内容编号</th>
  214. <th style="text-align: center;width:20%">工作内容名称</th>
  215. <th style="text-align: center;width:20%">工作内容类型</th>
  216. <th style="text-align: center;width:20%">负责人</th>
  217. <th style="text-align: center;width:20%">创建时间</th>
  218. </tr>
  219. </thead>
  220. <tbody id="projectContentDataList">
  221. <c:forEach items="${projectcontentinfo.projectReportData.projectContentDataList}" var="projectContentData" varStatus="index">
  222. <tr>
  223. <td>
  224. ${projectContentData.number}
  225. </td>
  226. <td>
  227. ${projectContentData.name}
  228. </td>
  229. <td>
  230. ${fns:getContentTypeName(projectContentData.type,"")}
  231. </td>
  232. <td>
  233. ${projectContentData.master.name}
  234. </td>
  235. <td>
  236. <fmt:formatDate value="${projectContentData.createDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
  237. </td>
  238. </tr>
  239. </c:forEach>
  240. </tbody>
  241. </table>
  242. </div>
  243. </div>
  244. <div class="form-group layui-row">
  245. <div class="form-group-label"><h2>附件信息</h2></div>
  246. <div class="layui-item layui-col-xs12" style="padding:0 16px;">
  247. <table id="upTable" class="table table-bordered table-condensed details">
  248. <thead>
  249. <tr>
  250. <%-- <th>序号</th>--%>
  251. <th>文件预览</th>
  252. <th>上传人</th>
  253. <th>上传时间</th>
  254. <th width="200px">操作</th>
  255. </tr>
  256. </thead>
  257. <tbody id="file_attachment">
  258. <c:forEach items="${projectcontentinfo.projectReportData.workAttachments}" var = "workClientAttachment" varStatus="status">
  259. <tr>
  260. <%-- <td>${status.index + 1}</td>--%>
  261. <c:choose>
  262. <c:when test="${fn:containsIgnoreCase(workClientAttachment.attachmentName,'jpg')
  263. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'png')
  264. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'gif')
  265. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'bmp')
  266. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'jpeg')}">
  267. <td><img src="${workClientAttachment.url}" width="50" height="50" onclick="openDialogView('预览','${ctx}/sys/picturepreview/picturePreview?url=${workClientAttachment.url}','90%','90%')" alt="${workClientAttachment.attachmentName}"></td>
  268. </c:when>
  269. <c:otherwise>
  270. <c:choose>
  271. <c:when test="${fn:containsIgnoreCase(workClientAttachment.attachmentName,'pdf')}">
  272. <td><a class="attention-info" href="javascript:void(0)" onclick="preview('预览','${workClientAttachment.url}','90%','90%','1')">${workClientAttachment.attachmentName}</a></td>
  273. </c:when>
  274. <c:otherwise>
  275. <td><a class="attention-info" href="javascript:void(0)" onclick="preview('预览','${workClientAttachment.url}','90%','90%')">${workClientAttachment.attachmentName}</a></td>
  276. </c:otherwise>
  277. </c:choose>
  278. </c:otherwise>
  279. </c:choose>
  280. <td>${workClientAttachment.createBy.name}</td>
  281. <td><fmt:formatDate value="${workClientAttachment.createDate}" type="both"/></td>
  282. <td class="op-td">
  283. <div class="op-btn-box" >
  284. <c:set var="signflag" value="${fns:getSysParam('sign_flag',fns:getUser())}"/>
  285. <c:choose>
  286. <c:when test="${fn:containsIgnoreCase(workClientAttachment.attachmentName,'pdf')
  287. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'doc')
  288. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'docx')
  289. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'xls')
  290. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'xlsx')
  291. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'ppt')
  292. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'pptx')}">
  293. <c:if test="${not empty gzr && gzr eq 'gzr'}">
  294. <a href="${ctx}/isignature/iSignatureDocument/sign?recordId=${workClientAttachment.id}&type=report" class="op-btn op-btn-sign" target="_blank">签章</a>
  295. </c:if>
  296. <a href="javascript:void(0);" onclick="openDialogView('查看电子签章信息', '${ctx}/isignature/iSignatureDocument/form?recordId=${workClientAttachment.id}','95%', '95%')" class="op-btn op-btn-view" ><i class="fa fa-search-plus"></i> 查看</a>
  297. <c:choose>
  298. <c:when test="${signflag == '是'}">
  299. <a href="javascript:location.href='${ctx}/isignature/iSignatureDocument/download?recordId=${workClientAttachment.id}'" class="op-btn op-btn-download"><i class="fa fa-download"></i>&nbsp;下载</a>
  300. </c:when>
  301. <c:otherwise>
  302. <a href="javascript:location.href='${ctx}/workcontractinfo/workContractInfo/downLoadAttach?file='+encodeURIComponent(encodeURIComponent('${workClientAttachment.url}'));" class="op-btn op-btn-download"><i class="fa fa-download"></i>&nbsp;下载</a>
  303. </c:otherwise>
  304. </c:choose>
  305. </c:when>
  306. <c:otherwise>
  307. <a href="javascript:location.href='${ctx}/workcontractinfo/workContractInfo/downLoadAttach?file='+encodeURIComponent(encodeURIComponent('${workClientAttachment.url}'));" class="op-btn op-btn-download"><i class="fa fa-download"></i>&nbsp;下载</a>
  308. </c:otherwise>
  309. </c:choose>
  310. </div>
  311. </td>
  312. </tr>
  313. </c:forEach>
  314. </tbody>
  315. </table>
  316. </div>
  317. </div>
  318. <div class="form-group layui-row">
  319. <div class="form-group-label"><h2>自检</h2></div>
  320. <div class="layui-item layui-col-xs12 form-table-container">
  321. <table id="contentTable3" class="table details table-bordered table-condensed">
  322. <thead>
  323. <tr>
  324. <th style="text-align: center;width:15%">序号</th>
  325. <th style="text-align: center;width:70%">复核内容及评分标准</th>
  326. <th style="text-align: center;width:15%">操作</th>
  327. </tr>
  328. </thead>
  329. <tbody id="projectContentDataList3">
  330. <c:forEach items="${projectcontentinfo.projectReportData.projectReviewList}" var="projectReview" varStatus="index">
  331. <tr>
  332. <td>
  333. <input id="projectReviewList${index.index}_id" name="projectReportData.projectReviewList[${index.index}].id" type="hidden" value="${projectReview.id}"/>
  334. <input id="projectReviewList${index.index}_delFalg" name="projectReportData.projectReviewList[${index.index}].delFalg" type="hidden" value="1"/>
  335. <input id="projectReviewList${index.index}_remarks" name="projectReportData.projectReviewList[${index.index}].remarks" type="hidden" value="${projectReview.remarks}"/>
  336. ${index.index + 1}
  337. </td>
  338. <td>
  339. ${projectReview.standardDetail}
  340. </td>
  341. <td>
  342. <c:choose>
  343. <c:when test="${not empty projectReview.remarks}">
  344. <div class="check-ok">
  345. <i class="fa fa-check"></i>
  346. </div>
  347. </c:when>
  348. <c:otherwise>
  349. <div id = "check1${projectReview.id}">
  350. </div>
  351. <div id = "check2${projectReview.id}" class="check-ok" style="display: none">
  352. <i class="fa fa-check"></i>
  353. </div>
  354. </c:otherwise>
  355. </c:choose>
  356. </td>
  357. </tr>
  358. </c:forEach>
  359. </tbody>
  360. </table>
  361. </div>
  362. </div>
  363. <div class="form-group layui-row page-end"></div>
  364. </div>
  365. <div id="tab-2" class="tab-pane">
  366. <div class="form-group layui-row first lw12">
  367. <div class="form-group-label"><h2>基本信息</h2></div>
  368. <div class="layui-item layui-col-sm6">
  369. <label class="layui-form-label"><span class="require-item">*</span>报告名称:</label>
  370. <div class="layui-input-block with-icon">
  371. <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectcontentinfo.projectReportData.beforeEntity.name}"/>
  372. </div>
  373. </div>
  374. <div class="layui-item layui-col-sm6">
  375. <label class="layui-form-label"><span class="require-item">*</span>报告编号:</label>
  376. <div class="layui-input-block">
  377. <div class="input-group">
  378. <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectcontentinfo.projectReportData.beforeEntity.number}"/>
  379. <span class="input-group-btn">
  380. <label class="form-status">
  381. <c:choose>
  382. <c:when test="${not empty projectcontentinfo.projectReportData.status}">${fns:getDictLabel(projectcontentinfo.projectReportData.beforeEntity.status, 'audit_state', '')}
  383. </c:when>
  384. <c:otherwise>新添</c:otherwise>
  385. </c:choose></label>
  386. </span>
  387. </div>
  388. </div>
  389. </div>
  390. <div class="layui-item layui-col-sm6">
  391. <label class="layui-form-label"><span class="require-item">*</span>工作内容类型:</label>
  392. <div class="layui-input-block">
  393. <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${fns:getContentTypeName(projectcontentinfo.projectReportData.beforeEntity.type,"")}"/>
  394. </div>
  395. </div>
  396. <div class="layui-item layui-col-sm6">
  397. <label class="layui-form-label">成果类型:</label>
  398. <div class="layui-input-block">
  399. <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${fns:getMainDictLabel(projectcontentinfo.projectReportData.beforeEntity.achievementType, 'achievement_type', '')}"/>
  400. </div>
  401. </div>
  402. <div class="layui-item layui-col-sm6">
  403. <label class="layui-form-label">复核标准:</label>
  404. <div class="layui-input-block">
  405. <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${fns:getDictLabel(projectcontentinfo.projectReportData.beforeEntity.reviewStandard, 'reviewStandard', '')}"/>
  406. </div>
  407. </div>
  408. <div class="layui-item layui-col-sm6">
  409. <label class="layui-form-label">报告日期:</label>
  410. <div class="layui-input-block">
  411. <input id="beforeprovideDate" name="projectReportData.provideDate" type="text" htmlEscape="false" readonly="true" class="laydate-icondate form-control layer-date required layui-input laydate-icon"
  412. value="<fmt:formatDate value="${projectcontentinfo.projectReportData.beforeEntity.reportDate}" pattern="yyyy-MM-dd"/>"/>
  413. </div>
  414. </div>
  415. <%--<div class="layui-item layui-col-sm6">
  416. <label class="layui-form-label">签字造价师一:</label>
  417. <div class="layui-input-block">
  418. <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectcontentinfo.projectReportData.beforeEntity.signCostOne.name}"/>
  419. </div>
  420. </div>
  421. <div class="layui-item layui-col-sm6">
  422. <label class="layui-form-label">签字造价师二:</label>
  423. <div class="layui-input-block">
  424. <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectcontentinfo.projectReportData.beforeEntity.signCostTwo.name}"/>
  425. </div>
  426. </div>--%>
  427. <div class="layui-item layui-col-sm6">
  428. <label class="layui-form-label">变更人:</label>
  429. <div class="layui-input-block">
  430. <input htmlEscape="false" readonly="true" class="form-control layui-input" value="${projectcontentinfo.projectReportData.master.name}"/>
  431. </div>
  432. </div>
  433. <div class="layui-item layui-col-sm6">
  434. <label class="layui-form-label">变更原因:</label>
  435. <div class="layui-input-block">
  436. <textarea path="remarks" htmlEscape="false" readonly="true" rows="3" maxlength="20" class="form-control" >${projectcontentinfo.projectReportData.remarks}</textarea>
  437. </div>
  438. </div>
  439. </div>
  440. <div class="form-group layui-row first lw12">
  441. <div class="form-group-label"><h2>项目信息</h2></div>
  442. <div class="layui-item layui-col-sm6">
  443. <label class="layui-form-label">送审价(元):</label>
  444. <div class="layui-input-block with-icon">
  445. <input id="projectReportData.reviewFee" readonly="true" class="form-control layui-input number" value="${projectcontentinfo.projectReportData.reviewFee}"/>
  446. </div>
  447. </div>
  448. <div class="layui-item layui-col-sm6">
  449. <label class="layui-form-label">审定价(元):</label>
  450. <div class="layui-input-block with-icon">
  451. <input id="projectReportData.approvalFee" readonly="true" class="form-control layui-input number" value="${projectcontentinfo.projectReportData.approvalFee}"/>
  452. </div>
  453. </div>
  454. <div class="layui-item layui-col-sm6">
  455. <label class="layui-form-label">合同价(元):</label>
  456. <div class="layui-input-block with-icon">
  457. <input id="projectReportData.contractFee" readonly="true" class="form-control layui-input number" value="${projectcontentinfo.projectReportData.contractFee}"/>
  458. </div>
  459. </div>
  460. <div class="layui-item layui-col-sm6">
  461. <label class="layui-form-label">核增核减额(元):</label>
  462. <div class="layui-input-block with-icon">
  463. <input id="projectReportData.verifyFee" readonly="true" class="form-control layui-input number" value="${projectcontentinfo.projectReportData.verifyFee}"/>
  464. </div>
  465. </div>
  466. <div class="layui-item layui-col-sm6">
  467. <label class="layui-form-label">核增核减率(%):</label>
  468. <div class="layui-input-block with-icon">
  469. <input id="projectReportData.verifyRate" readonly="true" class="form-control layui-input number" value="${projectcontentinfo.projectReportData.verifyRate}"/>
  470. </div>
  471. </div>
  472. <div class="layui-item layui-col-sm6">
  473. <label class="layui-form-label">咨询标的额(元):</label>
  474. <div class="layui-input-block with-icon">
  475. <input id="projectReportData.consultFee" readonly="true" class="form-control layui-input number" value="${projectcontentinfo.projectReportData.consultFee}"/>
  476. </div>
  477. </div>
  478. <div class="layui-item layui-col-sm6">
  479. <label class="layui-form-label">土建造价(元):</label>
  480. <div class="layui-input-block with-icon">
  481. <input id="projectReportData.buildingFee" readonly="true" class="form-control layui-input number" value="${projectcontentinfo.projectReportData.buildingFee}"/>
  482. </div>
  483. </div>
  484. <div class="layui-item layui-col-sm6">
  485. <label class="layui-form-label">安装造价(元):</label>
  486. <div class="layui-input-block with-icon">
  487. <input id="projectReportData.installFee" readonly="true" class="form-control layui-input number" value="${projectcontentinfo.projectReportData.installFee}"/>
  488. </div>
  489. </div>
  490. </div>
  491. <div class="form-group layui-row first lw12">
  492. <div class="form-group-label"><h2>依据性资料明细</h2></div>
  493. <div class="layui-item layui-col-xs12 form-table-container">
  494. <table id="contentTableBase2" class="table table-bordered table-condensed details">
  495. <thead>
  496. <tr>
  497. <th class="hide"></th>
  498. <th >资料编号</th>
  499. <th >资料名称</th>
  500. <th >资料类别</th>
  501. <th >上传人</th>
  502. <th >上传日期</th>
  503. </tr>
  504. </thead>
  505. <tbody id="workBaseDataList2">
  506. <c:forEach items="${projectcontentinfo.projectReportData.beforeEntity.projectBasedDataList}" var="projectBasedData" varStatus="idx">
  507. <tr>
  508. <td class="hide">
  509. <input type="hidden" id="workBaseDataList${idx.index}_id" value="${projectBasedData.id}">
  510. </td>
  511. <td style="text-align:center;">
  512. ${projectBasedData.number}
  513. </td>
  514. <td style="text-align:center;">
  515. ${projectBasedData.name}
  516. </td>
  517. <td style="text-align:center;">
  518. ${fns:getDictLabel(projectBasedData.type, 'project_document_type', '')}
  519. </td>
  520. <td style="text-align:center;">
  521. ${projectBasedData.uploadUser.name}
  522. </td>
  523. <td style="text-align:center;">
  524. <fmt:formatDate value="${projectBasedData.uploadDate}" pattern="yyyy-MM-dd"/>
  525. </td>
  526. </tr>
  527. </c:forEach>
  528. </tbody>
  529. </table>
  530. </div>
  531. </div>
  532. <div class="form-group layui-row first lw12">
  533. <div class="form-group-label"><h2>依据工作内容</h2></div>
  534. <!-- 表格 -->
  535. <div class="layui-item layui-col-xs12 form-table-container">
  536. <table id="contentTable2" class="table table-bordered table-condensed details">
  537. <thead>
  538. <tr>
  539. <th style="text-align: center;width:20%">工作内容编号</th>
  540. <th style="text-align: center;width:20%">工作内容名称</th>
  541. <th style="text-align: center;width:20%">工作内容类型</th>
  542. <th style="text-align: center;width:20%">负责人</th>
  543. <th style="text-align: center;width:20%">创建时间</th>
  544. </tr>
  545. </thead>
  546. <tbody id="projectContentDataList2">
  547. <c:forEach items="${projectcontentinfo.projectReportData.beforeEntity.projectContentDataList}" var="projectContentData" varStatus="index">
  548. <tr>
  549. <td>
  550. ${projectContentData.number}
  551. </td>
  552. <td>
  553. ${projectContentData.name}
  554. </td>
  555. <td>
  556. ${fns:getContentTypeName(projectContentData.type,"")}
  557. </td>
  558. <td>
  559. ${projectContentData.master.name}
  560. </td>
  561. <td>
  562. <fmt:formatDate value="${projectContentData.createDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
  563. </td>
  564. </tr>
  565. </c:forEach>
  566. </tbody>
  567. </table>
  568. </div>
  569. </div>
  570. <div class="form-group layui-row">
  571. <div class="form-group-label"><h2>附件信息</h2></div>
  572. <div class="layui-item layui-col-xs12" style="padding:0 16px;">
  573. <table id="upTable2" class="table table-bordered table-condensed details">
  574. <thead>
  575. <tr>
  576. <%-- <th>序号</th>--%>
  577. <th>文件预览</th>
  578. <th>上传人</th>
  579. <th>上传时间</th>
  580. <th width="200px">操作</th>
  581. </tr>
  582. </thead>
  583. <tbody id="file_attachment2">
  584. <c:forEach items="${projectcontentinfo.projectReportData.beforeEntity.workAttachments}" var = "workClientAttachment" varStatus="status">
  585. <tr>
  586. <%-- <td>${status.index + 1}</td>--%>
  587. <c:choose>
  588. <c:when test="${fn:containsIgnoreCase(workClientAttachment.attachmentName,'jpg')
  589. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'png')
  590. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'gif')
  591. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'bmp')
  592. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'jpeg')}">
  593. <td><img src="${workClientAttachment.url}" width="50" height="50" onclick="openDialogView('预览','${ctx}/sys/picturepreview/picturePreview?url=${workClientAttachment.url}','90%','90%')" alt="${workClientAttachment.attachmentName}"></td>
  594. </c:when>
  595. <c:otherwise>
  596. <c:choose>
  597. <c:when test="${fn:containsIgnoreCase(workClientAttachment.attachmentName,'pdf')}">
  598. <td><a class="attention-info" href="javascript:void(0)" onclick="preview('预览','${workClientAttachment.url}','90%','90%','1')">${workClientAttachment.attachmentName}</a></td>
  599. </c:when>
  600. <c:otherwise>
  601. <td><a class="attention-info" href="javascript:void(0)" onclick="preview('预览','${workClientAttachment.url}','90%','90%')">${workClientAttachment.attachmentName}</a></td>
  602. </c:otherwise>
  603. </c:choose>
  604. </c:otherwise>
  605. </c:choose>
  606. <td>${workClientAttachment.createBy.name}</td>
  607. <td><fmt:formatDate value="${workClientAttachment.createDate}" type="both"/></td>
  608. <td class="op-td">
  609. <div class="op-btn-box" >
  610. <c:set var="signflag" value="${fns:getSysParam('sign_flag',fns:getUser())}"/>
  611. <c:choose>
  612. <c:when test="${fn:containsIgnoreCase(workClientAttachment.attachmentName,'pdf')
  613. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'doc')
  614. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'docx')
  615. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'xls')
  616. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'xlsx')
  617. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'ppt')
  618. or fn:containsIgnoreCase(workClientAttachment.attachmentName,'pptx')}">
  619. <c:if test="${not empty gzr && gzr eq 'gzr'}">
  620. <a href="${ctx}/isignature/iSignatureDocument/sign?recordId=${workClientAttachment.id}" class="op-btn op-btn-sign" target="_blank">签章</a>
  621. </c:if>
  622. <a href="javascript:void(0);" onclick="openDialogView('查看电子签章信息', '${ctx}/isignature/iSignatureDocument/form?recordId=${workClientAttachment.id}','95%', '95%')" class="op-btn op-btn-view" ><i class="fa fa-search-plus"></i> 查看</a>
  623. <c:choose>
  624. <c:when test="${signflag == '是'}">
  625. <a href="javascript:location.href='${ctx}/isignature/iSignatureDocument/download?recordId=${workClientAttachment.id}'" class="op-btn op-btn-download"><i class="fa fa-download"></i>&nbsp;下载</a>
  626. </c:when>
  627. <c:otherwise>
  628. <a href="javascript:location.href='${ctx}/workcontractinfo/workContractInfo/downLoadAttach?file='+encodeURIComponent(encodeURIComponent('${workClientAttachment.url}'));" class="op-btn op-btn-download"><i class="fa fa-download"></i>&nbsp;下载</a>
  629. </c:otherwise>
  630. </c:choose>
  631. </c:when>
  632. <c:otherwise>
  633. <a href="javascript:location.href='${ctx}/workcontractinfo/workContractInfo/downLoadAttach?file='+encodeURIComponent(encodeURIComponent('${workClientAttachment.url}'));" class="op-btn op-btn-download"><i class="fa fa-download"></i>&nbsp;下载</a>
  634. </c:otherwise>
  635. </c:choose>
  636. </div>
  637. </td>
  638. </tr>
  639. </c:forEach>
  640. </tbody>
  641. </table>
  642. </div>
  643. </div>
  644. <div class="form-group layui-row">
  645. <div class="form-group-label"><h2>自检</h2></div>
  646. <div class="layui-item layui-col-xs12 form-table-container">
  647. <table id="contentTable5" class="table details table-bordered table-condensed">
  648. <thead>
  649. <tr>
  650. <th style="text-align: center;width:15%">序号</th>
  651. <th style="text-align: center;width:70%">复核内容及评分标准</th>
  652. <th style="text-align: center;width:15%">操作</th>
  653. </tr>
  654. </thead>
  655. <tbody id="projectContentDataList5">
  656. <c:forEach items="${projectcontentinfo.projectReportData.beforeEntity.projectReviewList}" var="projectReview" varStatus="index">
  657. <tr>
  658. <td>
  659. <input id="projectReviewList${index.index}_id" name="projectReportData.projectReviewList[${index.index}].id" type="hidden" value="${projectReview.id}"/>
  660. <input id="projectReviewList${index.index}_delFalg" name="projectReportData.projectReviewList[${index.index}].delFalg" type="hidden" value="1"/>
  661. <input id="projectReviewList${index.index}_remarks" name="projectReportData.projectReviewList[${index.index}].remarks" type="hidden" value="${projectReview.remarks}"/>
  662. ${index.index + 1}
  663. </td>
  664. <td>
  665. ${projectReview.standardDetail}
  666. </td>
  667. <td>
  668. <c:choose>
  669. <c:when test="${not empty projectReview.remarks}">
  670. <div class="check-ok">
  671. <i class="fa fa-check"></i>
  672. </div>
  673. </c:when>
  674. <c:otherwise>
  675. <div id = "check1${projectReview.id}">
  676. </div>
  677. <div id = "check2${projectReview.id}" class="check-ok" style="display: none">
  678. <i class="fa fa-check"></i>
  679. </div>
  680. </c:otherwise>
  681. </c:choose>
  682. </td>
  683. </tr>
  684. </c:forEach>
  685. </tbody>
  686. </table>
  687. </div>
  688. </div>
  689. <div class="form-group layui-row page-end"></div>
  690. </div>
  691. </div>
  692. </div>
  693. </div>
  694. </div>
  695. </body>
  696. </html>