parent
d214a6dfce
commit
84c446ec0d
|
|
@ -119,12 +119,6 @@ function getEditModal(asfCovKey){
|
|||
$("#asfCovEditModalContent").empty().append(html);
|
||||
$("#asfCovEditModal").modal('show');
|
||||
$("#editContent").empty().append(html);
|
||||
if($("#pressurizedYn").val() == 'Y'){
|
||||
$("#pressurizedN").attr("disabled",true);
|
||||
}else{
|
||||
$("#pressurizedN").removeAttr("disabled");
|
||||
}
|
||||
setUploadDiv();
|
||||
},
|
||||
error:function(e){
|
||||
ajaxErrorAction(e);
|
||||
|
|
|
|||
|
|
@ -100,7 +100,7 @@
|
|||
</div>
|
||||
<label for="pressurizedN" class="col-sm-1 col-form-label col-form-label-sm text-center">미압송시</label>
|
||||
<div class="col-sm-2">
|
||||
<select class="form-select form-select-sm crackdownStatusInfo" name="pressurizedN" id="pressurizedN">
|
||||
<select class="form-select form-select-sm crackdownStatusInfo" name="pressurizedN" id="pressurizedN" th:disabled="${asfCov.pressurizedYn eq 'Y' or asfCov.pressurizedYn eq null}">
|
||||
<option value="">선택</option>
|
||||
<option value="A" th:selected="${asfCov.pressurizedN eq 'A'}">현장조사</option>
|
||||
<option value="M" th:selected="${asfCov.pressurizedN eq 'M'}">기타</option>
|
||||
|
|
|
|||
|
|
@ -630,14 +630,16 @@
|
|||
</th:block>
|
||||
</select>
|
||||
</div>
|
||||
<!--<label for="isIvsgtStop" class="col-sm-1 col-form-label col-form-label-sm text-center">수사중지여부</label>
|
||||
<th:block th:if="${crackdownStatus.cdsKey ne null}">
|
||||
<label for="isIvsgtStop" class="col-sm-1 col-form-label col-form-label-sm text-center">수사중지여부</label>
|
||||
<div class="col-sm-2">
|
||||
<select class="form-select form-select-sm " id="isIvsgtStop" name="processResult.isIvsgtStop">
|
||||
<option value="">선택</option>
|
||||
<option value="Y" th:selected="${crackdownStatus.processResult.isIvsgtStop eq 'Y'}">O</option>
|
||||
<option value="N" th:selected="${crackdownStatus.processResult.isIvsgtStop eq 'N'}">X</option>
|
||||
</select>
|
||||
</div>-->
|
||||
</div>
|
||||
</th:block>
|
||||
<label class="col-sm-1 col-form-label col-form-label-sm text-center">선고법원</label>
|
||||
<div class="col-sm-2">
|
||||
<input class="form-control form-control-sm" name="processResult.sentencingCourt" id="sentencingCourt" th:value="${crackdownStatus.processResult.sentencingCourt}">
|
||||
|
|
|
|||
Loading…
Reference in New Issue