2023-01-09 09:01:36 +00:00
<!DOCTYPE html>
< html lang = "ko" xmlns:th = "http://www.thymeleaf.org" >
< div class = "modal-header bg-dark" >
2023-01-12 04:29:13 +00:00
< h5 class = "modal-title text-white" id = "asfCovEditModalLabel" th:text = "${asfCov.asfCovKey eq null?'ASF 및 코로나19 관련 조치현황 작성':'ASF 및 코로나19 관련 조치현황 수정'}" > < / h5 >
2023-01-09 09:01:36 +00:00
< button type = "button" class = "btn-close f-invert" data-bs-dismiss = "modal" aria-label = "Close" > < / button >
< / div >
2023-01-10 09:03:52 +00:00
< div class = "modal-body" id = "asfCovEditModalContent" >
2023-01-09 09:01:36 +00:00
< form action = "#" method = "post" id = "asfCovEditForm" >
< input type = "hidden" name = "_csrf_header" th:value = "${_csrf.headerName}" / >
< input type = "hidden" th:name = "${_csrf.parameterName}" th:value = "${_csrf.token}" / >
2023-01-12 04:29:13 +00:00
< input type = "hidden" name = "asfCovKey" th:value = "${asfCov.asfCovKey}" >
2023-01-09 09:01:36 +00:00
< input type = "hidden" name = "wrtOrgan" th:value = "${asfCov.wrtOrgan}" >
< input type = "hidden" name = "wrtPart" th:value = "${asfCov.wrtPart}" >
< input type = "hidden" name = "wrtUserSeq" th:value = "${asfCov.wrtUserSeq}" >
< input type = "hidden" name = "wrtUserGrd" th:value = "${asfCov.wrtUserGrd}" >
2023-01-10 09:03:52 +00:00
< input type = "hidden" name = "wrtUserNm" th:value = "${asfCov.wrtUserNm}" >
2023-01-12 04:29:13 +00:00
< input type = "hidden" name = "cdsKey" id = "cdsKey" th:value = "${asfCov.cdsKey}" >
2023-01-10 09:03:52 +00:00
< div class = "row mb-1" >
< label for = "boatNameKr" class = "col-sm-1 col-form-label col-form-label-sm text-center" > 선명< / label >
< div class = "col-sm-2" >
2023-01-12 04:29:13 +00:00
< input type = "text" class = "form-control form-control-sm cdsInfo" id = "boatNameKr" name = "boatNameKr" th:value = "${asfCov.boatNameKr}" disabled >
2023-01-09 09:01:36 +00:00
< / div >
2023-01-10 09:03:52 +00:00
< label for = "caseNum" class = "col-sm-1 col-form-label col-form-label-sm text-center" > 사건번호< / label >
< div class = "col-sm-2" >
< div class = "input-group" >
2023-01-12 04:29:13 +00:00
< input type = "text" class = "form-control form-control-sm cdsInfo" id = "caseNum" name = "caseNum" th:value = "${asfCov.caseNum}" disabled >
2023-01-10 09:03:52 +00:00
< input type = "button" class = "btn btn-sm btn-outline-primary crackdownStatusInfo w-auto" id = "caseNumBtn" value = "불러오기" >
2023-01-09 09:01:36 +00:00
< / div >
< / div >
2023-01-12 04:29:13 +00:00
< label for = "caseNum" class = "col-sm-2 col-form-label col-form-label-sm text-center" > *사건번호로 불러와주세요< / label >
2023-01-10 09:03:52 +00:00
< / div >
< div class = "row mb-1" >
< label for = "caseAgency" class = "col-sm-1 col-form-label col-form-label-sm text-center" > 사건담당기관< / label >
< div class = "col-sm-2" >
2023-01-12 04:29:13 +00:00
< select class = "form-select form-select-sm cdsInfo" id = "caseAgency" name = "caseAgency" disabled >
< option value = "" > < / option >
2023-01-10 09:03:52 +00:00
< th:block th:each = "commonCode:${session.commonCode.get('ATA')}" >
< option th:value = "${commonCode.itemCd}" th:text = "${commonCode.itemValue}" th:selected = "${commonCode.itemCd eq asfCov.caseAgency}" > < / option >
2023-01-09 09:01:36 +00:00
< / th:block >
2023-01-10 09:03:52 +00:00
< / select >
< / div >
< label for = "casePoliceOfficer" class = "col-sm-1 col-form-label col-form-label-sm text-center fs-13" > 사건담당경찰관< / label >
< div class = "col-sm-2" >
2023-01-12 04:29:13 +00:00
< input type = "text" class = "form-control form-control-sm cdsInfo" id = "casePoliceOfficer" name = "casePoliceOfficer" th:value = "${asfCov.casePoliceOfficer}" disabled >
2023-01-10 09:03:52 +00:00
< / div >
< label for = "crackdownPolice" class = "col-sm-1 col-form-label col-form-label-sm text-center" > 단속경찰서< / label >
< div class = "col-sm-2" >
2023-01-12 04:29:13 +00:00
< select class = "form-select form-select-sm cdsInfo" name = "crackdownPolice" id = "crackdownPolice" disabled >
< option value = "" > < / option >
2023-01-10 09:03:52 +00:00
< th:block th:each = "commonCode:${session.commonCode.get('CPO')}" >
< option th:value = "${commonCode.itemCd}" th:text = "${commonCode.itemValue}" th:selected = "${commonCode.itemCd eq asfCov.crackdownPolice}" > < / option >
2023-01-09 09:01:36 +00:00
< / th:block >
2023-01-10 09:03:52 +00:00
< / select >
< / div >
< label for = "crackdownBoat" class = "col-sm-1 col-form-label col-form-label-sm text-center" > 단속함정< / label >
< div class = "col-sm-2" >
2023-01-12 04:29:13 +00:00
< select class = "form-select form-select-sm cdsInfo" name = "crackdownBoat" id = "crackdownBoat" disabled >
< option value = "" > < / option >
< th:block th:each = "cpoCode:${session.commonCode.get('CPO')}" >
< th:block th:each = "boatCode:${session.commonCode.get(cpoCode.itemCd)}" >
< option th:value = "${boatCode.itemCd}" th:text = "${boatCode.itemValue}" > < / option >
< / th:block >
< / th:block >
2023-01-10 09:03:52 +00:00
< / select >
< / div >
< / div >
< div class = "row mb-1" >
< label for = "pressurizedYn" 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 = "pressurizedYn" id = "pressurizedYn" >
< option value = "" > 선택< / option >
< option value = "Y" th:selected = "${asfCov.pressurizedYn eq 'Y'}" > 압송< / option >
< option value = "N" th:selected = "${asfCov.pressurizedYn eq 'N'}" > 미압송< / option >
< / select >
< / 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" >
< option value = "" > 선택< / option >
< option value = "Y" th:selected = "${asfCov.pressurizedN eq 'A'}" > 현장조사< / option >
< option value = "N" th:selected = "${asfCov.pressurizedN eq 'O'}" > 기타< / option >
< / select >
2023-01-09 09:01:36 +00:00
< / div >
< / div >
2023-01-10 09:03:52 +00:00
< div class = "row mb-1" >
< label for = "personCnt" class = "col-sm-1 col-form-label col-form-label-sm text-center" > 검사인원< / label >
< div class = "col-sm-2" >
< input type = "text" class = "form-control form-control-sm crackdownStatusInfo" id = "personCnt" name = "personCnt" th:value = "${asfCov.personCnt}" >
< / div >
< label for = "pressurizedN" class = "col-sm-1 col-form-label col-form-label-sm text-center" > 코로나19 검사결과< / label >
< label for = "personPositiveCnt" class = "col-sm-1 col-form-label col-form-label-sm text-center" > 양성< / label >
< div class = "col-sm-1" >
< input type = "text" class = "form-control form-control-sm crackdownStatusInfo" id = "personPositiveCnt" name = "personPositiveCnt" th:value = "${asfCov.personPositiveCnt}" >
< / div >
< label for = "personNegativeCnt" class = "col-sm-1 col-form-label col-form-label-sm text-center" > 음성< / label >
< div class = "col-sm-1" >
< input type = "text" class = "form-control form-control-sm crackdownStatusInfo" id = "personNegativeCnt" name = "personNegativeCnt" th:value = "${asfCov.personNegativeCnt}" >
< / div >
< / div >
< div class = "row mb-1" >
< label for = "asfcovActionDetail" class = "col-sm-1 col-form-label col-form-label-sm text-center" > 검/방역조치내용< / label >
< div class = "col-sm-11" >
< textarea class = "form-control form-control-sm" rows = "5" cols = "30" name = "asfcovActionDetail" th:value = "${asfCov.asfcovActionDetail}" > < / textarea >
< / div >
< / div >
2023-01-09 09:01:36 +00:00
< / form >
< / div >
< div class = "modal-footer bg-light" >
2023-01-10 09:03:52 +00:00
<!-- <button type="button" class="btn btn - warning" id="saveTempBtn" data - contentStatus="DST001">임시저장</button> -->
2023-01-09 09:01:36 +00:00
< button type = "button" class = "btn btn-secondary" data-bs-dismiss = "modal" > 닫기< / button >
2023-01-10 09:03:52 +00:00
< button type = "button" class = "btn btn-primary" id = "saveBtn" > 저장< / button >
2023-01-09 09:01:36 +00:00
< / div >