|
@@ -7,6 +7,75 @@
|
|
<!-- SUMMERNOTE -->
|
|
<!-- SUMMERNOTE -->
|
|
<%@include file="/webpage/include/summernote.jsp" %>
|
|
<%@include file="/webpage/include/summernote.jsp" %>
|
|
<%@include file="divideForm.js"%>
|
|
<%@include file="divideForm.js"%>
|
|
|
|
+ <script type="text/javascript">
|
|
|
|
+ $(document).ready(function () {
|
|
|
|
+ $("#agree").click(function () {
|
|
|
|
+ var cValue ="";//定义一个数组
|
|
|
|
+ var flag1 = false;//代表是否选择了设计变更/行政政处/农村民事政处的状态,false为未选择,true为选择
|
|
|
|
+ var flag2 = false;//代表是否选择了项目关闭的状态,false为未选择,true为选择
|
|
|
|
+ var flag3 = false;//代表是否选择了政策处理 行政政处(城区道路)
|
|
|
|
+ var flag5 = false;//代表是否选择了农村政处
|
|
|
|
+ var flag6 = false;//代表是否选择了民事政处/行政政处(公路/水利)
|
|
|
|
+ var flag7 = false;//代表是否选择了人工判断
|
|
|
|
+ var flag8 = false;//代表无问题
|
|
|
|
+ var nValue = $('input[name="favorite"]:checked');
|
|
|
|
+ $('input[name="favorite"]:checked').each(function(){//遍历每一个名字为interest的复选框,其中选中的执行函数
|
|
|
|
+ //判断选取的值如果时pass2,flag2为true,代表选择了项目关闭,选取的值不为pass2,flag1为true代表其它类型被选择
|
|
|
|
+ if ("pass8" == $(this).val()){
|
|
|
|
+ flag8 = true;
|
|
|
|
+ }
|
|
|
|
+ if ("pass7"==$(this).val()){
|
|
|
|
+ flag7 = true;
|
|
|
|
+ }
|
|
|
|
+ if ("pass2" == $(this).val()) {
|
|
|
|
+ flag2 = true;
|
|
|
|
+ }else {
|
|
|
|
+ flag1 = true;
|
|
|
|
+ }
|
|
|
|
+ //判断值为pass3,代表选择了政策处理 行政政处(城区道路)
|
|
|
|
+ if ("pass3"==$(this).val()) {
|
|
|
|
+ flag3 = true;
|
|
|
|
+ }
|
|
|
|
+ //判断值为pass5,代表选择了农村政处
|
|
|
|
+ if ("pass5"==$(this).val()) {
|
|
|
|
+ flag5 = true;
|
|
|
|
+ }
|
|
|
|
+ //判断值为pass6,民事政处/行政政处(公路/水利)
|
|
|
|
+ if ("pass6"==$(this).val()) {
|
|
|
|
+ flag6 = true;
|
|
|
|
+ }
|
|
|
|
+ cValue=cValue+";"+($(this).val());//将选中的值添加到数组chk_value中
|
|
|
|
+ });
|
|
|
|
+ if (nValue == null || nValue.size() <= 0) {
|
|
|
|
+ jp.error("请选择问题类型");
|
|
|
|
+ } else if(flag1==true&&flag2==true){
|
|
|
|
+ jp.error("项目关闭与其它类型问题不可同时发起");
|
|
|
|
+ }else if ((flag3==true&&flag5==true)||(flag3==true&&flag6==true)||(flag5==true&&flag6==true)){
|
|
|
|
+ jp.error("政处类型只能选择一种");
|
|
|
|
+ }else {
|
|
|
|
+ jp.prompt(" 审批意见", function (message) {
|
|
|
|
+ jp.post("${ctx}/act/task/divideForm",
|
|
|
|
+ {
|
|
|
|
+ "taskId":"${construction.act.taskId}",
|
|
|
|
+ "taskName":"${construction.act.taskName}",
|
|
|
|
+ "taskDefKey":"${construction.act.taskDefKey}",
|
|
|
|
+ "procInsId":"${construction.act.procInsId}",
|
|
|
|
+ "procDefId":"${construction.act.procDefId}",
|
|
|
|
+ "flag":cValue,
|
|
|
|
+ "projectName":"${fns:unescapeHtml(construction.projectName)}",
|
|
|
|
+ "comment":window.encodeURI(message)
|
|
|
|
+ },
|
|
|
|
+ function (data) {
|
|
|
|
+ if(data.success){
|
|
|
|
+ jp.success(data.msg);
|
|
|
|
+ jp.go("${ctx}/act/task/todo")
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ })
|
|
|
|
+ </script>
|
|
</head>
|
|
</head>
|
|
<body>
|
|
<body>
|
|
<div class="wrapper wrapper-content">
|
|
<div class="wrapper wrapper-content">
|
|
@@ -22,145 +91,41 @@
|
|
<button id="importConclusion" class="btn btn-info">
|
|
<button id="importConclusion" class="btn btn-info">
|
|
<i class="fa fa-folder-open-o"></i> 导入交地结论
|
|
<i class="fa fa-folder-open-o"></i> 导入交地结论
|
|
</button>
|
|
</button>
|
|
|
|
+ <button id="edit" class="btn btn-danger">
|
|
|
|
+ <i class="fa fa-folder-open-o"></i> 修改交底结论
|
|
|
|
+ </button>
|
|
<form:form id="inputForm" modelAttribute="construction" action="${ctx}/managementcenter/divide/save" method="post" class="form-horizontal">
|
|
<form:form id="inputForm" modelAttribute="construction" action="${ctx}/managementcenter/divide/save" method="post" class="form-horizontal">
|
|
<form:hidden path="id"/>
|
|
<form:hidden path="id"/>
|
|
-
|
|
|
|
<input id="procInsId" type="hidden" value="${fns:unescapeHtml(construction.procInsId)}">
|
|
<input id="procInsId" type="hidden" value="${fns:unescapeHtml(construction.procInsId)}">
|
|
<input id="projectName" type="hidden" value="${fns:unescapeHtml(construction.projectName)}">
|
|
<input id="projectName" type="hidden" value="${fns:unescapeHtml(construction.projectName)}">
|
|
<input type="hidden" value="${fns:unescapeHtml(construction.id)}">
|
|
<input type="hidden" value="${fns:unescapeHtml(construction.id)}">
|
|
-
|
|
|
|
<table class="table table-bordered">
|
|
<table class="table table-bordered">
|
|
<tbody>
|
|
<tbody>
|
|
-<%-- <tr>
|
|
|
|
- <td class="width-15 active"><label class="pull-right"> 申请人:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.userName)}
|
|
|
|
- </td>
|
|
|
|
- <td class="width-15 active"><label class="pull-right"> 审核人:</label></td>
|
|
|
|
|
|
+ <tr>
|
|
|
|
+ <td class="width-15 active"><label class="pull-right">问题类型:</label></td>
|
|
<td class="width-35">
|
|
<td class="width-35">
|
|
- <sys:userselect roleName="项目经理;施工单位" id="tuser" name="tuser.id" value="${construction.tuser.id}" labelName="tuser.name" labelValue="${construction.tuser.name}"
|
|
|
|
- cssClass="form-control required"/>
|
|
|
|
|
|
+ <input type="checkbox" name="favorite" value="pass8" <c:if test="${pass_construction7=='0'}">checked="checked"</c:if> onclick="return false"> 无问题
|
|
|
|
+ <input type="checkbox" name="favorite" value="pass1" <c:if test="${pass_construction2=='0'}">checked="checked"</c:if> onclick="return false"> 设计变更
|
|
|
|
+ <input type="checkbox" name="favorite" value="pass2" <c:if test="${pass_construction1=='0'}">checked="checked"</c:if> onclick="return false"> 项目关闭
|
|
|
|
+ <input type="checkbox" name="favorite" value="pass3" <c:if test="${pass_construction5=='0'}">checked="checked"</c:if> onclick="return false"> 行政政处(城区道路)
|
|
|
|
+ <input type="checkbox" name="favorite" value="pass5" <c:if test="${pass_construction3=='0'}">checked="checked"</c:if> onclick="return false"> 农村政处
|
|
|
|
+ <input type="checkbox" name="favorite" value="pass6" <c:if test="${pass_construction4=='0'}">checked="checked"</c:if> onclick="return false"> 民事政处/行政政处(公路/水利)
|
|
|
|
+ <input type="checkbox" name="favorite" value="pass7" <c:if test="${pass_construction6=='0'}">checked="checked"</c:if> onclick="return false"> 人工判断
|
|
</td>
|
|
</td>
|
|
- </tr>--%>
|
|
|
|
- <tr>
|
|
|
|
<td class="width-15 active"><label class="pull-right">项目号:</label></td>
|
|
<td class="width-15 active"><label class="pull-right">项目号:</label></td>
|
|
<td class="width-35">
|
|
<td class="width-35">
|
|
${fns:unescapeHtml(construction.projectId)}
|
|
${fns:unescapeHtml(construction.projectId)}
|
|
</td>
|
|
</td>
|
|
|
|
+ </tr>
|
|
|
|
+ <tr>
|
|
<td class="width-15 active"><label class="pull-right">项目名称:</label></td>
|
|
<td class="width-15 active"><label class="pull-right">项目名称:</label></td>
|
|
<td class="width-35">
|
|
<td class="width-35">
|
|
${fns:unescapeHtml(construction.projectName)}
|
|
${fns:unescapeHtml(construction.projectName)}
|
|
</td>
|
|
</td>
|
|
- </tr>
|
|
|
|
- <tr>
|
|
|
|
<td class="width-15 active"><label class="pull-right">接收图纸时间:</label></td>
|
|
<td class="width-15 active"><label class="pull-right">接收图纸时间:</label></td>
|
|
<td class="width-35">
|
|
<td class="width-35">
|
|
<fmt:formatDate value="${construction.acceptDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
|
|
<fmt:formatDate value="${construction.acceptDate}" pattern="yyyy-MM-dd HH:mm:ss"/>
|
|
</td>
|
|
</td>
|
|
- <td class="width-15 active"><label class="pull-right">备注说明:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.examineDate)}
|
|
|
|
- </td>
|
|
|
|
- </tr>
|
|
|
|
- <tr>
|
|
|
|
- <td class="width-15 active"><label class="pull-right">停电线路:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.powerLine)}
|
|
|
|
- </td>
|
|
|
|
- <td class="width-15 active"><label class="pull-right">停电范围(中间统一用中文分号):</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.blackoutArea)}
|
|
|
|
- </td>
|
|
|
|
- </tr>
|
|
|
|
- <tr>
|
|
|
|
- <td class="width-15 active"><label class="pull-right">项目类型:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.projectType)}
|
|
|
|
- </td>
|
|
|
|
- <td class="width-15 active"><label class="pull-right"> 政处初步判断:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.preliminaryJudgment)}
|
|
|
|
- </td>
|
|
|
|
- </tr>
|
|
|
|
- <tr>
|
|
|
|
- <td class="width-15 active"><label class="pull-right">是否含土建(不含钢管杆):</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.civilEngineering)}
|
|
|
|
- </td>
|
|
|
|
- <td class="width-15 active"><label class="pull-right"> 钢管杆基础类型:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.baseType)}
|
|
|
|
- </td>
|
|
|
|
- </tr>
|
|
|
|
- <tr>
|
|
|
|
- <td class="width-15 active"><label class="pull-right">是否需要规划报批(150米及以上土建):</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.planApproval)}
|
|
|
|
- </td>
|
|
|
|
- <td class="width-15 active"><label class="pull-right"> 设备改造类型:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.transformationType)}
|
|
|
|
- </td>
|
|
|
|
- </tr>
|
|
|
|
- <tr>
|
|
|
|
- <td class="width-15 active"><label class="pull-right">改造设备尺寸及间隔数:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.transformationEquipment)}
|
|
|
|
- </td>
|
|
|
|
- <td class="width-15 active"><label class="pull-right"> 是否含新设备命名:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.newNamed)}
|
|
|
|
- </td>
|
|
|
|
- </tr>
|
|
|
|
- <tr>
|
|
|
|
- <td class="width-15 active"><label class="pull-right">是否含变电站新间隔投运:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.putInto)}
|
|
|
|
- </td>
|
|
|
|
- <td class="width-15 active"><label class="pull-right"> 是否含非涉电电气施工:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.electricalConstruction)}
|
|
|
|
- </td>
|
|
|
|
- </tr>
|
|
|
|
- <tr>
|
|
|
|
- <td class="width-15 active"><label class="pull-right">图纸标注的带电作业情况:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.theAssignment)}
|
|
|
|
- </td>
|
|
|
|
- <td class="width-15 active"><label class="pull-right"> 是否含自动化:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.automation)}
|
|
|
|
- </td>
|
|
|
|
- </tr>
|
|
|
|
- <tr>
|
|
|
|
- <td class="width-15 active"><label class="pull-right">二遥或三遥:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.remote)}
|
|
|
|
- </td>
|
|
|
|
- <td class="width-15 active"><label class="pull-right"> 通信方式:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.communicationMode)}
|
|
|
|
- </td>
|
|
|
|
- </tr>
|
|
|
|
- <tr>
|
|
|
|
- <td class="width-15 active"><label class="pull-right">柱开集中或就地:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.inSitu)}
|
|
|
|
- </td>
|
|
|
|
- <td class="width-15 active"><label class="pull-right"> 环网柜DTU户外或户内:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.networkCabinet)}
|
|
|
|
- </td>
|
|
|
|
- </tr>
|
|
|
|
- <tr>
|
|
|
|
- <td class="width-15 active"><label class="pull-right">站房DTU:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.station)}
|
|
|
|
- </td>
|
|
|
|
- <td class="width-15 active"><label class="pull-right"> 是否为停电打包项目:</label></td>
|
|
|
|
- <td class="width-35">
|
|
|
|
- ${fns:unescapeHtml(construction.powerFailure)}
|
|
|
|
- </td>
|
|
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
<td class="width-15 active"><label class="pull-right">施工通道:</label></td>
|
|
<td class="width-15 active"><label class="pull-right">施工通道:</label></td>
|
|
@@ -169,11 +134,14 @@
|
|
</td>
|
|
</td>
|
|
<td class="width-15 active"><label class="pull-right"> 设备基础是否可以扩容:</label></td>
|
|
<td class="width-15 active"><label class="pull-right"> 设备基础是否可以扩容:</label></td>
|
|
<td class="width-35">
|
|
<td class="width-35">
|
|
- <input type='text' readonly="readonly" id='capacity' name="capacity" class="form-control required" value="${construction.disclose.capacity}"/>
|
|
|
|
- <%--<select id="capacity" maxlength="100" class=" form-control">
|
|
|
|
- <option value="是">是</option>
|
|
|
|
- <option value="否">否</option>
|
|
|
|
- </select>--%>
|
|
|
|
|
|
+ <c:choose>
|
|
|
|
+ <c:when test="${construction.disclose.channel}">
|
|
|
|
+ <input type='text' readonly="readonly" id='capacity' name="capacity" class="form-control required" value="${construction.disclose.capacity}"/>
|
|
|
|
+ </c:when>
|
|
|
|
+ <c:otherwise>
|
|
|
|
+ <input type='text' readonly="readonly" id='capacity' name="capacity" class="form-control required" value="否"/>
|
|
|
|
+ </c:otherwise>
|
|
|
|
+ </c:choose>
|
|
</td>
|
|
</td>
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
@@ -189,27 +157,62 @@
|
|
<tr>
|
|
<tr>
|
|
<td class="width-15 active"><label class="pull-right">方案安全隐患:</label></td>
|
|
<td class="width-15 active"><label class="pull-right">方案安全隐患:</label></td>
|
|
<td class="width-35">
|
|
<td class="width-35">
|
|
- <input type='text' readonly="readonly" id='hiddenDanger' name="hiddenDanger" class="form-control required" value="${construction.disclose.hiddenDanger}"/>
|
|
|
|
|
|
+ <c:choose>
|
|
|
|
+ <c:when test="${construction.disclose.hiddenDanger}">
|
|
|
|
+ <input type='text' readonly="readonly" id='hiddenDanger' name="hiddenDanger" class="form-control required" value="${construction.disclose.hiddenDanger}"/>
|
|
|
|
+ </c:when>
|
|
|
|
+ <c:otherwise>
|
|
|
|
+ <input type='text' readonly="readonly" id='hiddenDanger' name="hiddenDanger" class="form-control required" value="无"/>
|
|
|
|
+ </c:otherwise>
|
|
|
|
+ </c:choose>
|
|
</td>
|
|
</td>
|
|
<td class="width-15 active"><label class="pull-right"> 是否存在低压或通信线等影响施工:</label></td>
|
|
<td class="width-15 active"><label class="pull-right"> 是否存在低压或通信线等影响施工:</label></td>
|
|
<td class="width-35">
|
|
<td class="width-35">
|
|
- <input type='text' readonly="readonly" id='influenceConstruction' name="influenceConstruction" class="form-control required" value="${construction.disclose.influenceConstruction}"/>
|
|
|
|
|
|
+ <c:choose>
|
|
|
|
+ <c:when test="${construction.disclose.influenceConstruction}">
|
|
|
|
+ <input type='text' readonly="readonly" id='influenceConstruction' name="influenceConstruction" class="form-control required" value="${construction.disclose.influenceConstruction}"/>
|
|
|
|
+ </c:when>
|
|
|
|
+ <c:otherwise>
|
|
|
|
+ <input type='text' readonly="readonly" id='influenceConstruction' name="influenceConstruction" class="form-control required" value="否"/>
|
|
|
|
+ </c:otherwise>
|
|
|
|
+ </c:choose>
|
|
</td>
|
|
</td>
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
<td class="width-15 active"><label class="pull-right">立项重复:</label></td>
|
|
<td class="width-15 active"><label class="pull-right">立项重复:</label></td>
|
|
<td class="width-35">
|
|
<td class="width-35">
|
|
- <input type='text' readonly="readonly" id='projectRepetition' name="projectRepetition" class="form-control required" value="${construction.disclose.projectRepetition}"/>
|
|
|
|
|
|
+ <c:choose>
|
|
|
|
+ <c:when test="${construction.disclose.projectRepetition}">
|
|
|
|
+ <input type='text' readonly="readonly" id='projectRepetition' name="projectRepetition" class="form-control required" value="${construction.disclose.projectRepetition}"/>
|
|
|
|
+ </c:when>
|
|
|
|
+ <c:otherwise>
|
|
|
|
+ <input type='text' readonly="readonly" id='projectRepetition' name="projectRepetition" class="form-control required" value="否"/>
|
|
|
|
+ </c:otherwise>
|
|
|
|
+ </c:choose>
|
|
</td>
|
|
</td>
|
|
<td class="width-15 active"><label class="pull-right"> 是否已实施:</label></td>
|
|
<td class="width-15 active"><label class="pull-right"> 是否已实施:</label></td>
|
|
<td class="width-35">
|
|
<td class="width-35">
|
|
- <input type='text' readonly="readonly" id='implemented' name="implemented" class="form-control required" value="${construction.disclose.implemented}"/>
|
|
|
|
|
|
+ <c:choose>
|
|
|
|
+ <c:when test="${construction.disclose.implemented}">
|
|
|
|
+ <input type='text' readonly="readonly" id='implemented' name="implemented" class="form-control required" value="${construction.disclose.implemented}"/>
|
|
|
|
+ </c:when>
|
|
|
|
+ <c:otherwise>
|
|
|
|
+ <input type='text' readonly="readonly" id='implemented' name="implemented" class="form-control required" value="否"/>
|
|
|
|
+ </c:otherwise>
|
|
|
|
+ </c:choose>
|
|
</td>
|
|
</td>
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
<td class="width-15 active"><label class="pull-right">变压器无负荷:</label></td>
|
|
<td class="width-15 active"><label class="pull-right">变压器无负荷:</label></td>
|
|
<td class="width-35">
|
|
<td class="width-35">
|
|
- <input type='text' readonly="readonly" id='transformer' name="transformer" class="form-control required" value="${construction.disclose.transformer}"/>
|
|
|
|
|
|
+ <c:choose>
|
|
|
|
+ <c:when test="${construction.disclose.transformer}">
|
|
|
|
+ <input type='text' readonly="readonly" id='transformer' name="transformer" class="form-control required" value="${construction.disclose.transformer}"/>
|
|
|
|
+ </c:when>
|
|
|
|
+ <c:otherwise>
|
|
|
|
+ <input type='text' readonly="readonly" id='transformer' name="transformer" class="form-control required" value="有"/>
|
|
|
|
+ </c:otherwise>
|
|
|
|
+ </c:choose>
|
|
</td>
|
|
</td>
|
|
<td class="width-15 active"><label class="pull-right">项目实施必要性说明</label></td>
|
|
<td class="width-15 active"><label class="pull-right">项目实施必要性说明</label></td>
|
|
<td class="width-35">
|
|
<td class="width-35">
|
|
@@ -219,18 +222,40 @@
|
|
<tr>
|
|
<tr>
|
|
<td class="width-15 active"><label class="pull-right"> 线路名称一致性:</label></td>
|
|
<td class="width-15 active"><label class="pull-right"> 线路名称一致性:</label></td>
|
|
<td class="width-35">
|
|
<td class="width-35">
|
|
- <input type='text' readonly="readonly" id='lineName' name="lineName" class="form-control required" value="${construction.disclose.lineName}"/>
|
|
|
|
|
|
+ <c:choose>
|
|
|
|
+ <c:when test="${construction.disclose.lineName}">
|
|
|
|
+ <input type='text' readonly="readonly" id='lineName' name="lineName" class="form-control required" value="${construction.disclose.lineName}"/>
|
|
|
|
+ </c:when>
|
|
|
|
+ <c:otherwise>
|
|
|
|
+ <input type='text' readonly="readonly" id='lineName' name="lineName" class="form-control required" value="一致"/>
|
|
|
|
+ </c:otherwise>
|
|
|
|
+ </c:choose>
|
|
|
|
+
|
|
</td>
|
|
</td>
|
|
<td class="width-15 active"><label class="pull-right">工程量是否一致:</label></td>
|
|
<td class="width-15 active"><label class="pull-right">工程量是否一致:</label></td>
|
|
<td class="width-35">
|
|
<td class="width-35">
|
|
- <input type='text' readonly="readonly" id='quantities' name="quantities" class="form-control required" value="${construction.disclose.quantities}"/>
|
|
|
|
|
|
+ <c:choose>
|
|
|
|
+ <c:when test="${construction.disclose.quantities}">
|
|
|
|
+ <input type='text' readonly="readonly" id='quantities' name="quantities" class="form-control required" value="${construction.disclose.quantities}"/>
|
|
|
|
+ </c:when>
|
|
|
|
+ <c:otherwise>
|
|
|
|
+ <input type='text' readonly="readonly" id='quantities' name="quantities" class="form-control required" value="是"/>
|
|
|
|
+ </c:otherwise>
|
|
|
|
+ </c:choose>
|
|
</td>
|
|
</td>
|
|
|
|
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
<td class="width-15 active"><label class="pull-right"> 设备、开关、杆号一致性:</label></td>
|
|
<td class="width-15 active"><label class="pull-right"> 设备、开关、杆号一致性:</label></td>
|
|
<td class="width-35">
|
|
<td class="width-35">
|
|
- <input type='text' readonly="readonly" id='rodNumber' name="rodNumber" class="form-control required" value="${construction.disclose.rodNumber}"/>
|
|
|
|
|
|
+ <c:choose>
|
|
|
|
+ <c:when test="${construction.disclose.rodNumber}">
|
|
|
|
+ <input type='text' readonly="readonly" id='rodNumber' name="rodNumber" class="form-control required" value="${construction.disclose.rodNumber}"/>
|
|
|
|
+ </c:when>
|
|
|
|
+ <c:otherwise>
|
|
|
|
+ <input type='text' readonly="readonly" id='rodNumber' name="rodNumber" class="form-control required" value="一致"/>
|
|
|
|
+ </c:otherwise>
|
|
|
|
+ </c:choose>
|
|
</td>
|
|
</td>
|
|
<td class="width-15 active"><label class="pull-right"> 图纸现场不一致说明:</label></td>
|
|
<td class="width-15 active"><label class="pull-right"> 图纸现场不一致说明:</label></td>
|
|
<td class="width-35">
|
|
<td class="width-35">
|
|
@@ -241,14 +266,19 @@
|
|
<tr>
|
|
<tr>
|
|
<td class="width-15 active"><label class="pull-right">政处类型:</label></td>
|
|
<td class="width-15 active"><label class="pull-right">政处类型:</label></td>
|
|
<td class="width-35">
|
|
<td class="width-35">
|
|
- <input type='text' readonly="readonly" id='administrationType' name="administrationType" class="form-control required" value="${construction.disclose.administrationType}"/>
|
|
|
|
|
|
+ <c:choose>
|
|
|
|
+ <c:when test="${construction.disclose.administrationType}">
|
|
|
|
+ <input type='text' readonly="readonly" id='administrationType' name="administrationType" class="form-control required" value="${construction.disclose.administrationType}"/>
|
|
|
|
+ </c:when>
|
|
|
|
+ <c:otherwise>
|
|
|
|
+ <input type='text' readonly="readonly" id='administrationType' name="administrationType" class="form-control required" value="4.无"/>
|
|
|
|
+ </c:otherwise>
|
|
|
|
+ </c:choose>
|
|
</td>
|
|
</td>
|
|
<td class="width-15 active"><label class="pull-right">前置条件:</label></td>
|
|
<td class="width-15 active"><label class="pull-right">前置条件:</label></td>
|
|
<td class="width-35">
|
|
<td class="width-35">
|
|
<input type='text' readonly="readonly" id='precondition' name="precondition" class="form-control required" value="${construction.disclose.precondition}"/>
|
|
<input type='text' readonly="readonly" id='precondition' name="precondition" class="form-control required" value="${construction.disclose.precondition}"/>
|
|
</td>
|
|
</td>
|
|
-
|
|
|
|
-
|
|
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
<td class="width-15 active"><label class="pull-right">政策处理说明:</label></td>
|
|
<td class="width-15 active"><label class="pull-right">政策处理说明:</label></td>
|
|
@@ -257,9 +287,15 @@
|
|
</td>
|
|
</td>
|
|
<td class="width-15 active"><label class="pull-right"> DTU安放方式核查:</label></td>
|
|
<td class="width-15 active"><label class="pull-right"> DTU安放方式核查:</label></td>
|
|
<td class="width-35">
|
|
<td class="width-35">
|
|
- <input type='text' readonly="readonly" id='placementMode' name="placementMode" class="form-control required" value="${construction.disclose.placementMode}"/>
|
|
|
|
|
|
+ <c:choose>
|
|
|
|
+ <c:when test="${construction.disclose.placementMode}">
|
|
|
|
+ <input type='text' readonly="readonly" id='placementMode' name="placementMode" class="form-control required" value="${construction.disclose.placementMode}"/>
|
|
|
|
+ </c:when>
|
|
|
|
+ <c:otherwise>
|
|
|
|
+ <input type='text' readonly="readonly" id='placementMode' name="placementMode" class="form-control required" value="无"/>
|
|
|
|
+ </c:otherwise>
|
|
|
|
+ </c:choose>
|
|
</td>
|
|
</td>
|
|
-
|
|
|
|
</tr>
|
|
</tr>
|
|
<tr>
|
|
<tr>
|
|
<td class="width-15 active"><label class="pull-right">核查环网柜生产日期:</label></td>
|
|
<td class="width-15 active"><label class="pull-right">核查环网柜生产日期:</label></td>
|