|
@@ -31,109 +31,17 @@
|
|
|
format: "YYYY-MM-DD HH:mm:ss"
|
|
|
});
|
|
|
$('select').change(function () {
|
|
|
- var hasImplemented = $('#hasImplemented').val();
|
|
|
- var isImplement = $('#isImplement').val();
|
|
|
- var whetherComplete = $('#whetherComplete').val();
|
|
|
- var whetherStandard = $('#whetherStandard').val();
|
|
|
- var whetherDrawing = $('#whetherDrawing').val();
|
|
|
- var whetherChannel = $('#whetherChannel').val();
|
|
|
- var civilAdjusted = $('#civilAdjusted').val();
|
|
|
- var electricalAdjusted = $('#electricalAdjusted').val();
|
|
|
- var doesChange = $('#doesChange').val();
|
|
|
- var otherAdjusted = $('#otherAdjusted').val();
|
|
|
- var difficultResolve = $('#difficultResolve').val();
|
|
|
- var preconditions = $('#preconditions').val();
|
|
|
- var customizedMaterials = $('#customizedMaterials').val();
|
|
|
- var demolitionMaterials = $('#demolitionMaterials').val();
|
|
|
- var drawingAnnotation = $('#drawingAnnotation').val();
|
|
|
- var powerOutage = $('#powerOutage').val();
|
|
|
- if (hasImplemented == '是') {
|
|
|
- $('#sceneDescription').attr('placeholder', '现场情况描述不能为空');
|
|
|
+ var includeAutomation = $('#includeAutomation').val();
|
|
|
+ var policyIssues = $('#policyIssues').val();
|
|
|
+ if (includeAutomation == '是') {
|
|
|
+ $('#wayOf').attr('placeholder', '通信方式不能为空');
|
|
|
} else {
|
|
|
- $('#sceneDescription').removeAttr('placeholder');
|
|
|
+ $('#wayOf').removeAttr('placeholder');
|
|
|
}
|
|
|
- if (isImplement == '否') {
|
|
|
- $('#noImplementation').attr('placeholder', '实施无必要描述不能为空');
|
|
|
+ if (policyIssues == '是') {
|
|
|
+ $("#processingDescription").attr('placeholder', '政策处理描述不能为空');
|
|
|
} else {
|
|
|
- $('#noImplementation').removeAttr('placeholder');
|
|
|
- }
|
|
|
- if (whetherComplete == '否') {
|
|
|
- $('#drawingDescription').attr('placeholder', '图纸完整性描述不能为空');
|
|
|
- } else {
|
|
|
- $('#drawingDescription').removeAttr('placeholder');
|
|
|
- }
|
|
|
- if (whetherStandard == '否') {
|
|
|
- $('#normativeDrawings').attr('placeholder', '图纸规范性描述不能为空');
|
|
|
- } else {
|
|
|
- $('#normativeDrawings').removeAttr('placeholder');
|
|
|
- }
|
|
|
- if (whetherDrawing == '是') {
|
|
|
- $('#problemDescription').attr('placeholder', '典设图问题描述不能为空');
|
|
|
- } else {
|
|
|
- $('#problemDescription').removeAttr('placeholder');
|
|
|
- }
|
|
|
- if (whetherChannel == '是') {
|
|
|
- $('#constructionDescription').attr('placeholder', '施工通道情况描述不能为空');
|
|
|
- } else {
|
|
|
- $('#constructionDescription').removeAttr('placeholder');
|
|
|
- }
|
|
|
- if (civilAdjusted == '是') {
|
|
|
- $('#descriptionPlans').attr('placeholder', '土建方案变更内容描述不能为空');
|
|
|
- $('#descriptionAdjustment').attr('placeholder', '土建工作量调整内容描述不能为空');
|
|
|
- } else {
|
|
|
- $('#descriptionPlans').removeAttr('placeholder');
|
|
|
- $('#descriptionAdjustment').removeAttr('placeholder');
|
|
|
- }
|
|
|
- if (electricalAdjusted == '是') {
|
|
|
- $('#adjustmentDescription').attr('placeholder', '调整原因描述不能为空');
|
|
|
- } else {
|
|
|
- $('#adjustmentDescription').removeAttr('placeholder');
|
|
|
- }
|
|
|
- if (doesChange == '是') {
|
|
|
- $('#automatedContent').attr('placeholder', '自动化方案调整内容不能为空');
|
|
|
- $('#automatedAdjustment').attr('placeholder', '自动化工作内容调整不能为空');
|
|
|
- } else {
|
|
|
- $('#automatedContent').removeAttr('placeholder');
|
|
|
- $('#automatedAdjustment').removeAttr('placeholder');
|
|
|
- }
|
|
|
- if (otherAdjusted == '是') {
|
|
|
- $('#descriptionReasons').attr('placeholder', '其他方案调整原因描述不能为空');
|
|
|
- } else {
|
|
|
- $('#descriptionReasons').removeAttr('placeholder');
|
|
|
- }
|
|
|
- if (difficultResolve == '是') {
|
|
|
- $('#affairsDescription').attr('placeholder', '政处问题描述不能为空');
|
|
|
- } else {
|
|
|
- $('#affairsDescription').removeAttr('placeholder');
|
|
|
- }
|
|
|
- if (preconditions == '是') {
|
|
|
- $('#preconditionDescription').attr('placeholder', '前置条件描述不能为空');
|
|
|
- } else {
|
|
|
- $('#preconditionDescription').removeAttr('placeholder');
|
|
|
- }
|
|
|
- if (customizedMaterials == '是') {
|
|
|
- $('#reasonDescription').attr('placeholder', '定制原因描述不能为空');
|
|
|
- $('#materialDescription').attr('placeholder', '定制物资描述不能为空');
|
|
|
- } else {
|
|
|
- $('#reasonDescription').removeAttr('placeholder');
|
|
|
- $('#materialDescription').removeAttr('placeholder');
|
|
|
- }
|
|
|
- if (demolitionMaterials == '是') {
|
|
|
- $('#modelDescription').attr('placeholder', '型号不一致描述不能为空');
|
|
|
- $('#quantityDescription').attr('placeholder', '数量不一致描述不能为空');
|
|
|
- } else {
|
|
|
- $('#modelDescription').removeAttr('placeholder');
|
|
|
- $('#quantityDescription').removeAttr('placeholder');
|
|
|
- }
|
|
|
- if (drawingAnnotation == '是') {
|
|
|
- $('#drawingProblem').attr('placeholder', '图纸标注问题描述不能为空');
|
|
|
- } else {
|
|
|
- $('#drawingProblem').removeAttr('placeholder');
|
|
|
- }
|
|
|
- if (powerOutage == '是') {
|
|
|
- $('#powerProblem').attr('placeholder', '停电问题问题描述不能为空');
|
|
|
- } else {
|
|
|
- $('#powerProblem').removeAttr('placeholder');
|
|
|
+ $("#processingDescription").removeAttr('placeholder');
|
|
|
}
|
|
|
});
|
|
|
});
|
|
@@ -145,7 +53,7 @@
|
|
|
return false;
|
|
|
}
|
|
|
jp.loading();
|
|
|
- jp.post("${ctx}/managementcenter/activiti/editConSave", $("#inputForm").serialize(), function (data) {
|
|
|
+ jp.post("${ctx}/managementcenter/activiti/engSave", $("#inputForm").serialize(), function (data) {
|
|
|
if (data.success) {
|
|
|
jp.getParent().refresh();
|
|
|
var dialogIndex = parent.layer.getFrameIndex(window.name); //获取窗口索引
|
|
@@ -154,135 +62,27 @@
|
|
|
} else {
|
|
|
jp.error(data.msg);
|
|
|
}
|
|
|
- })
|
|
|
- }
|
|
|
-
|
|
|
- function getVal(groups) {
|
|
|
- var chk_value = [];//定义一个数组
|
|
|
- $('input[name="administrationTypeList"]:checked').each(function () {//遍历每一个名字为nodes的复选框,其中选中的执行函数
|
|
|
- chk_value.push($(this).val());//将选中的值添加到数组chk_value中
|
|
|
});
|
|
|
- groups = chk_value.join(";");
|
|
|
- return groups
|
|
|
}
|
|
|
|
|
|
function check() {
|
|
|
var flag = true;
|
|
|
- var hasImplemented = $('#hasImplemented').val();
|
|
|
- var sceneDescription = $('#sceneDescription').val();
|
|
|
- var isImplement = $('#isImplement').val();
|
|
|
- var noImplementation = $('#noImplementation').val();
|
|
|
- var whetherComplete = $('#whetherComplete').val();
|
|
|
- var drawingDescription = $('#drawingDescription').val();
|
|
|
- var whetherStandard = $('#whetherStandard').val();
|
|
|
- var normativeDrawings = $('#normativeDrawings').val();
|
|
|
- var whetherDrawing = $('#whetherDrawing').val();
|
|
|
- var problemDescription = $('#problemDescription').val();
|
|
|
- var whetherChannel = $('#whetherChannel').val();
|
|
|
- var constructionDescription = $('#constructionDescription').val();
|
|
|
- var civilAdjusted = $('#civilAdjusted').val();
|
|
|
- var descriptionPlans = $('#descriptionPlans').val();
|
|
|
- var descriptionAdjustment = $('#descriptionAdjustment').val();
|
|
|
- var electricalAdjusted = $('#electricalAdjusted').val();
|
|
|
- var adjustmentDescription = $('#adjustmentDescription').val();
|
|
|
- var doesChange = $('#doesChange').val();
|
|
|
- var automatedContent = $('#automatedContent').val();
|
|
|
- var automatedAdjustment = $('#automatedAdjustment').val();
|
|
|
- var otherAdjusted = $('#otherAdjusted').val();
|
|
|
- var descriptionReasons = $('#descriptionReasons').val();
|
|
|
- var difficultResolve = $('#difficultResolve').val();
|
|
|
- var affairsDescription = $('#affairsDescription').val();
|
|
|
- var preconditions = $('#preconditions').val();
|
|
|
- var preconditionDescription = $('#preconditionDescription').val();
|
|
|
- var customizedMaterials = $('#customizedMaterials').val();
|
|
|
- var customizedCan = $('#customizedCan').val();
|
|
|
- var reasonDescription = $('#reasonDescription').val();
|
|
|
- var materialDescription = $('#materialDescription').val();
|
|
|
- var demolitionMaterials = $('#demolitionMaterials').val();
|
|
|
- var modelDescription = $('#modelDescription').val();
|
|
|
- var quantityDescription = $('#quantityDescription').val();
|
|
|
- var drawingAnnotation = $('#drawingAnnotation').val();
|
|
|
- var drawingProblem = $('#drawingProblem').val();
|
|
|
- var powerOutage = $('#powerOutage').val();
|
|
|
- var powerProblem = $('#powerProblem').val();
|
|
|
-
|
|
|
- if (hasImplemented == '是') {
|
|
|
- if (sceneDescription == '') {
|
|
|
- flag = false;
|
|
|
- }
|
|
|
- }
|
|
|
- if (isImplement == '否') {
|
|
|
- if (noImplementation == '') {
|
|
|
- flag = false;
|
|
|
- }
|
|
|
- }
|
|
|
- if (whetherComplete == '否') {
|
|
|
- if (drawingDescription == '') {
|
|
|
- flag = false;
|
|
|
- }
|
|
|
- }
|
|
|
- if (whetherStandard == '否') {
|
|
|
- if (normativeDrawings == '') {
|
|
|
- flag = false;
|
|
|
- }
|
|
|
- }
|
|
|
- if (whetherDrawing == '是') {
|
|
|
- if (problemDescription == '') {
|
|
|
- flag = false;
|
|
|
- }
|
|
|
- }
|
|
|
- if (whetherChannel == '是') {
|
|
|
- if (constructionDescription == '') {
|
|
|
- flag = false;
|
|
|
- }
|
|
|
- }
|
|
|
- if (civilAdjusted == '是') {
|
|
|
- if (descriptionPlans == '' || descriptionAdjustment == '') {
|
|
|
- flag = false;
|
|
|
- }
|
|
|
- }
|
|
|
- if (electricalAdjusted == '是') {
|
|
|
- if (adjustmentDescription == '') {
|
|
|
- flag = false;
|
|
|
- }
|
|
|
- }
|
|
|
- if (doesChange == '是') {
|
|
|
- if (automatedContent == '' || automatedAdjustment == '') {
|
|
|
- flag = false;
|
|
|
- }
|
|
|
- }
|
|
|
- if (otherAdjusted == '是') {
|
|
|
- if (descriptionReasons == '') {
|
|
|
- flag = false;
|
|
|
- }
|
|
|
- }
|
|
|
- if (difficultResolve == '是') {
|
|
|
- if (affairsDescription == '') {
|
|
|
- flag = false;
|
|
|
- }
|
|
|
- }
|
|
|
- if (preconditions == '是') {
|
|
|
- if (preconditionDescription == '') {
|
|
|
- flag = false;
|
|
|
- }
|
|
|
- }
|
|
|
- if (customizedMaterials == '是' || customizedCan == '是') {
|
|
|
- if (reasonDescription == '' || materialDescription == '') {
|
|
|
- flag = false;
|
|
|
- }
|
|
|
- }
|
|
|
- if (demolitionMaterials == '是') {
|
|
|
- if (modelDescription == '' || quantityDescription == '') {
|
|
|
- flag = false;
|
|
|
- }
|
|
|
- }
|
|
|
- if (drawingAnnotation == '是') {
|
|
|
- if (drawingProblem == '') {
|
|
|
+ var includeAutomation = $('#includeAutomation').val();
|
|
|
+ var wayOf = $('#wayOf').val();
|
|
|
+ var policyIssues = $('#policyIssues').val();
|
|
|
+ var str = "";
|
|
|
+ $("#check :checked").each(function () {
|
|
|
+ var val = $(this).val();
|
|
|
+ str += val;
|
|
|
+ });
|
|
|
+ var processingDescription = $('#processingDescription').val();
|
|
|
+ if (includeAutomation == '是') {
|
|
|
+ if (wayOf == "") {
|
|
|
flag = false;
|
|
|
}
|
|
|
}
|
|
|
- if (powerOutage == '是') {
|
|
|
- if (powerProblem == '') {
|
|
|
+ if (policyIssues == "是") {
|
|
|
+ if (str == "" || processingDescription == "") {
|
|
|
flag = false;
|
|
|
}
|
|
|
}
|
|
@@ -303,182 +103,33 @@
|
|
|
<table class="table table-bordered">
|
|
|
<tbody>
|
|
|
<tr>
|
|
|
- <td class="width-15 active"><label class="pull-right">储备项目暂定名称:</label></td>
|
|
|
- <td class="width-35"
|
|
|
- <form:input path="quantity.reserveProjectName" readonly="true" cssClass="form-control"/>
|
|
|
- </td>
|
|
|
<td class="width-15 active"><label class="pull-right"> 是否含自动化:</label></td>
|
|
|
<td class="width-35">
|
|
|
- <form:input id="includeAutomation" path="quantity.includeAutomation"
|
|
|
- cssClass="form-control required"/>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="width-15 active"><label class="pull-right">是否有实施必要性:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:select id="wayOf" path="quantity.wayOf" cssClass="form-control">
|
|
|
- <form:option value="是"/>
|
|
|
- <form:option value="否"/>
|
|
|
- </form:select>
|
|
|
- <%-- <form:input id="isImplement" path="disclose.isImplement" cssClass="form-control"/>--%>
|
|
|
- </td>
|
|
|
- <td class="width-15 active"><label class="pull-right"> 实施无必要描述:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:input id="noImplementation" path="disclose.noImplementation"
|
|
|
- cssClass="form-control"/>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="width-15 active"><label class="pull-right">图纸是否完整:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:select id="whetherComplete" path="disclose.whetherComplete"
|
|
|
- cssClass="form-control">
|
|
|
- <form:option value="是"/>
|
|
|
- <form:option value="否"/>
|
|
|
- </form:select>
|
|
|
- </td>
|
|
|
- <td class="width-15 active"><label class="pull-right"> 图纸完整性描述:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:input id="drawingDescription" path="disclose.drawingDescription"
|
|
|
- cssClass="form-control"/>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="width-15 active"><label class="pull-right">图纸是否规范:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:select id="whetherStandard" path="disclose.whetherStandard"
|
|
|
- cssClass="form-control">
|
|
|
- <form:option value="是"/>
|
|
|
- <form:option value="否"/>
|
|
|
- </form:select>
|
|
|
- </td>
|
|
|
- <td class="width-15 active"><label class="pull-right"> 图纸规范性描述:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:input id="normativeDrawings" path="disclose.normativeDrawings"
|
|
|
- cssClass="form-control"/>
|
|
|
-
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="width-15 active"><label class="pull-right">是否存在典设图问题:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:select id="whetherDrawing" path="disclose.whetherDrawing"
|
|
|
- cssClass="form-control">
|
|
|
- <form:option value="否"/>
|
|
|
- <form:option value="是"/>
|
|
|
- </form:select>
|
|
|
- </td>
|
|
|
- <td class="width-15 active"><label class="pull-right">典设图问题描述</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:input id="problemDescription" path="disclose.problemDescription"
|
|
|
- cssClass="form-control"/>
|
|
|
-
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="width-15 active"><label class="pull-right"> 是否存在施工通道</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:select id="whetherChannel" path="disclose.whetherChannel"
|
|
|
- cssClass="form-control">
|
|
|
- <form:option value="否"/>
|
|
|
- <form:option value="是"/>
|
|
|
- </form:select>
|
|
|
- </td>
|
|
|
- <td class="width-15 active"><label class="pull-right">施工通道情况描述:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:input id="constructionDescription" path="disclose.constructionDescription"
|
|
|
- cssClass="form-control"/>
|
|
|
-
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="width-15 active"><label class="pull-right"> 土建是否需要调整:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:select id="civilAdjusted" path="disclose.civilAdjusted"
|
|
|
- cssClass="form-control">
|
|
|
- <form:option value="否"/>
|
|
|
- <form:option value="是"/>
|
|
|
- </form:select>
|
|
|
- </td>
|
|
|
- <td class="width-15 active"><label class="pull-right">土建方案变更内容描述:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:input id="descriptionPlans" path="disclose.descriptionPlans"
|
|
|
- cssClass="form-control"/>
|
|
|
-
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="width-15 active"><label class="pull-right">土建工作量调整内容描述:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:input id="descriptionAdjustment" path="disclose.descriptionAdjustment"
|
|
|
- cssClass="form-control"/>
|
|
|
-
|
|
|
- </td>
|
|
|
- <td class="width-15 active"><label class="pull-right">电气方案是否需要调整:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:select id="electricalAdjusted" path="disclose.electricalAdjusted"
|
|
|
+ <form:select id="includeAutomation" path="quantity.includeAutomation"
|
|
|
cssClass="form-control">
|
|
|
- <form:option value="否"/>
|
|
|
<form:option value="是"/>
|
|
|
- </form:select>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="width-15 active"><label class="pull-right"> 调整原因描述:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:input id="adjustmentDescription" path="disclose.adjustmentDescription"
|
|
|
- cssClass="form-control"/>
|
|
|
-
|
|
|
- </td>
|
|
|
- <td class="width-15 active"><label class="pull-right">自动化是否需要变更:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:select id="doesChange" path="disclose.doesChange" cssClass="form-control">
|
|
|
<form:option value="否"/>
|
|
|
- <form:option value="是"/>
|
|
|
</form:select>
|
|
|
</td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
- <td class="width-15 active"><label class="pull-right"> 自动化方案调整内容:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:input id="automatedContent" path="disclose.automatedContent"
|
|
|
- cssClass="form-control"/>
|
|
|
- </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">
|
|
|
- <form:input id="automatedAdjustment" path="disclose.automatedAdjustment"
|
|
|
- cssClass="form-control"/>
|
|
|
+ <form:input id="wayOf" path="quantity.wayOf"
|
|
|
+ cssClass="form-control" placeholder="通信方式不能为空"/>
|
|
|
</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">
|
|
|
- <form:select id="otherAdjusted" path="disclose.otherAdjusted"
|
|
|
+ <form:select id="assignmentStyle" path="quantity.assignmentStyle"
|
|
|
cssClass="form-control">
|
|
|
- <form:option value="否"/>
|
|
|
- <form:option value="是"/>
|
|
|
+ <form:option value="停电"/>
|
|
|
+ <form:option value="带点"/>
|
|
|
+ <form:option value="不涉电"/>
|
|
|
</form:select>
|
|
|
</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">
|
|
|
- <form:input id="descriptionReasons" path="disclose.descriptionReasons"
|
|
|
- cssClass="form-control"/>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
-
|
|
|
- <td class="width-15 active"><label class="pull-right"> 是否存在难以解决的政处:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:select id="difficultResolve" path="disclose.difficultResolve"
|
|
|
- cssClass="form-control">
|
|
|
- <form:option value="否"/>
|
|
|
- <form:option value="是"/>
|
|
|
- </form:select>
|
|
|
- </td>
|
|
|
- <td class="width-15 active"><label class="pull-right">是否需要进行设计变更:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:select id="designChanges" path="disclose.designChanges"
|
|
|
+ <form:select id="operationSubstation" path="quantity.operationSubstation"
|
|
|
cssClass="form-control">
|
|
|
<form:option value="否"/>
|
|
|
<form:option value="是"/>
|
|
@@ -486,69 +137,47 @@
|
|
|
</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">
|
|
|
- <form:select id="needsClosed" path="disclose.needsClosed"
|
|
|
+ <form:select id="namingNumber" path="quantity.namingNumber"
|
|
|
cssClass="form-control">
|
|
|
<form:option value="否"/>
|
|
|
<form:option value="是"/>
|
|
|
</form:select>
|
|
|
</td>
|
|
|
- <td class="width-15 active"><label class="pull-right">政处问题描述:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:input id="affairsDescription" path="disclose.affairsDescription"
|
|
|
- cssClass="form-control"/>
|
|
|
- </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">
|
|
|
- <form:select id="planningRequired" path="disclose.planningRequired"
|
|
|
+ <form:select id="engineeringAcceptance" path="quantity.engineeringAcceptance"
|
|
|
cssClass="form-control">
|
|
|
- <form:option value="否"/>
|
|
|
<form:option value="是"/>
|
|
|
- </form:select>
|
|
|
- </td>
|
|
|
- <td class="width-15 active"><label class="pull-right">是否涉及高铁、高速:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:select id="highSpeed" path="disclose.highSpeed"
|
|
|
- cssClass="form-control">
|
|
|
<form:option value="否"/>
|
|
|
- <form:option value="是"/>
|
|
|
</form:select>
|
|
|
</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">
|
|
|
- <form:select id="affairsOffice" path="disclose.affairsOffice"
|
|
|
+ <form:select id="electricalAcceptance" path="quantity.electricalAcceptance"
|
|
|
cssClass="form-control">
|
|
|
<form:option value="否"/>
|
|
|
<form:option value="是"/>
|
|
|
</form:select>
|
|
|
</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">
|
|
|
- <form:select id="preconditions" path="disclose.preconditions"
|
|
|
- cssClass="form-control">
|
|
|
- <form:option value="否"/>
|
|
|
- <form:option value="是"/>
|
|
|
- </form:select>
|
|
|
+ <form:input id="blackoutLine" path="quantity.blackoutLine"
|
|
|
+ cssClass="form-control" placeholder="不同线路用,分割"/>
|
|
|
</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">
|
|
|
- <form:input id="preconditionDescription" path="disclose.preconditionDescription"
|
|
|
+ <form:input id="outageRange" path="quantity.outageRange"
|
|
|
cssClass="form-control"/>
|
|
|
</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">
|
|
|
- <form:select id="customizedMaterials" path="disclose.customizedMaterials"
|
|
|
+ <form:select id="policyIssues" path="quantity.policyIssues"
|
|
|
cssClass="form-control">
|
|
|
<form:option value="否"/>
|
|
|
<form:option value="是"/>
|
|
@@ -556,119 +185,21 @@
|
|
|
</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">
|
|
|
- <form:select id="customizedCan" path="disclose.customizedCan"
|
|
|
- cssClass="form-control">
|
|
|
- <form:option value="否"/>
|
|
|
- <form:option value="是"/>
|
|
|
- </form:select>
|
|
|
+ <%-- <form:input id="processingType" path="quantity.processingType"
|
|
|
+ cssClass="form-control"/>--%>
|
|
|
+ <div id="check">
|
|
|
+ <form:checkboxes id="processingTypeList" path="quantity.processingTypeList"
|
|
|
+ items="${courseList}"/>
|
|
|
+ </div>
|
|
|
</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">
|
|
|
- <form:input id="reasonDescription" path="disclose.reasonDescription"
|
|
|
+ <form:input id="processingDescription" path="quantity.processingDescription"
|
|
|
cssClass="form-control"/>
|
|
|
</td>
|
|
|
</tr>
|
|
|
- <tr>
|
|
|
-
|
|
|
- <td class="width-15 active"><label class="pull-right"> 定制物资描述:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:input id="materialDescription" path="disclose.materialDescription"
|
|
|
- cssClass="form-control"/>
|
|
|
- </td>
|
|
|
- <td class="width-15 active"><label class="pull-right">拆旧物资是否与设计一致:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:select id="demolitionMaterials" path="disclose.demolitionMaterials"
|
|
|
- cssClass="form-control">
|
|
|
- <form:option value="否"/>
|
|
|
- <form:option value="是"/>
|
|
|
- </form:select>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
-
|
|
|
- <td class="width-15 active"><label class="pull-right"> 型号不一致描述:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:input id="modelDescription" path="disclose.modelDescription"
|
|
|
- cssClass="form-control"/>
|
|
|
- </td>
|
|
|
- <td class="width-15 active"><label class="pull-right">数量不一致描述:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:input id="quantityDescription" path="disclose.quantityDescription"
|
|
|
- cssClass="form-control"/>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
-
|
|
|
- <td class="width-15 active"><label class="pull-right"> 图纸标注是否存在问题:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:select id="drawingAnnotation" path="disclose.drawingAnnotation"
|
|
|
- cssClass="form-control">
|
|
|
- <form:option value="否"/>
|
|
|
- <form:option value="是"/>
|
|
|
- </form:select>
|
|
|
- </td>
|
|
|
- <td class="width-15 active"><label class="pull-right">图纸标注问题描述:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:input id="drawingProblem" path="disclose.drawingProblem"
|
|
|
- cssClass="form-control"/>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
-
|
|
|
- <td class="width-15 active"><label class="pull-right"> 是否存在停电问题:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:select id="powerOutage" path="disclose.powerOutage"
|
|
|
- cssClass="form-control">
|
|
|
- <form:option value="否"/>
|
|
|
- <form:option value="是"/>
|
|
|
- </form:select>
|
|
|
- </td>
|
|
|
- <td class="width-15 active"><label class="pull-right">停电问题问题描述:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:input id="powerProblem" path="disclose.powerProblem"
|
|
|
- cssClass="form-control"/>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
-
|
|
|
- <td class="width-15 active"><label class="pull-right"> 是否邻近带电线路:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:select id="nearLiveLine" path="disclose.nearLiveLine"
|
|
|
- cssClass="form-control">
|
|
|
- <form:option value="否"/>
|
|
|
- <form:option value="是"/>
|
|
|
- </form:select>
|
|
|
- </td>
|
|
|
- <td class="width-15 active"><label class="pull-right">是否下穿高压线路:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:select id="highVoltageLine" path="disclose.highVoltageLine"
|
|
|
- cssClass="form-control">
|
|
|
- <form:option value="否"/>
|
|
|
- <form:option value="是"/>
|
|
|
- </form:select>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
- <tr>
|
|
|
-
|
|
|
- <td class="width-15 active"><label class="pull-right"> 是否存在复杂管线:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:select id="complexPipeline" path="disclose.complexPipeline"
|
|
|
- cssClass="form-control">
|
|
|
- <form:option value="否"/>
|
|
|
- <form:option value="是"/>
|
|
|
- </form:select>
|
|
|
- </td>
|
|
|
- <td class="width-15 active"><label class="pull-right">是否涉及复杂停电:</label></td>
|
|
|
- <td class="width-35">
|
|
|
- <form:select id="complicatedPower" path="disclose.complicatedPower"
|
|
|
- cssClass="form-control">
|
|
|
- <form:option value="否"/>
|
|
|
- <form:option value="是"/>
|
|
|
- </form:select>
|
|
|
- </td>
|
|
|
- </tr>
|
|
|
</tbody>
|
|
|
</table>
|
|
|
</form:form>
|
|
@@ -679,4 +210,3 @@
|
|
|
</div>
|
|
|
</body>
|
|
|
</html>
|
|
|
-</jsp:root>
|