2023-01-09 09:01:36 +00:00
<!DOCTYPE html>
2023-01-10 09:03:52 +00:00
< html lang = "ko" xmlns:th = "http://www.thymeleaf.org" >
< div class = "modal-header bg-dark" >
2023-01-12 09:01:11 +00:00
< h5 class = "modal-title text-white" id = "processResultEditModalLabel" > ASF 및 코로나19 관련 조치현황< / h5 >
2023-01-10 09:03:52 +00:00
< button type = "button" class = "btn-close f-invert" data-bs-dismiss = "modal" aria-label = "Close" > < / button >
< / div >
<!-- 탭 메뉴 -->
2023-01-12 09:01:11 +00:00
< div class = "modal-body" >
2023-01-10 09:03:52 +00:00
< ul class = "nav nav-tabs" role = "tablist" >
< li class = "nav-item" role = "presentation" >
< button class = "nav-link processResultTab active" id = "processResult-tab" data-bs-toggle = "tab"
data-bs-target="#processResult" type="button" role="tab" aria-controls="processResult" data-processResult-type="processResult"
aria-selected="true">상세< / button >
< / li >
< li class = "nav-item" role = "presentation" >
< button class = "nav-link processResultTab" id = "history-tab" data-bs-toggle = "tab"
data-bs-target="#history" type="button" role="tab" data-history-type="history"
aria-controls="history">수정이력< / button >
< / li >
< / ul >
<!-- 내용 -->
2023-01-12 09:50:48 +00:00
< div class = "tab-content bg-white border border-top-0 p-2" >
2023-01-10 09:03:52 +00:00
< div class = "tab-pane fade show active" id = "processResult" role = "tabpanel" aria-labelledby = "processResult-tab" >
< div class = "modal-body" id = "processResultEditBody" >
2023-01-12 09:50:48 +00:00
< input type = "hidden" class = "asfCovKey" th:value = "${asfCov.asfCovKey}" >
< div class = "row mb-1" >
< label for = "wrtUserNm" class = "col-sm-1 col-form-label col-form-label-sm text-center" > 작성자< / label >
< div class = "col-sm-2" >
< th:block th:if = "${asfCov.wrtUserGrd eq null}" >
< input type = "text" class = "form-control form-control-sm" id = "wrtUserNm" th:value = "${asfCov.wrtUserNm}" readonly >
< / th:block >
< th:block th:unless = "${asfCov.wrtUserGrd eq null}" >
< th:block th:each = "code:${session.commonCode.get('JT')}" >
< th:block th:if = "${code.itemCd eq asfCov.wrtUserGrd}" >
< input type = "text" class = "form-control form-control-sm" id = "wrtUserNm" th:value = "|${code.itemValue} ${asfCov.wrtUserNm}|" readonly >
2023-01-12 09:01:11 +00:00
< / th:block >
< / th:block >
2023-01-12 09:50:48 +00:00
< / th:block >
2023-01-12 09:01:11 +00:00
< / div >
2023-01-12 09:50:48 +00:00
< label for = "wrtDt" 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" id = "wrtDt" name = "wrtDt" th:value = "${#temporals.format(asfCov.wrtDt, 'yyyy-MM-dd HH:mm')}" readonly >
2023-01-12 09:01:11 +00:00
< / div >
2023-01-12 09:50:48 +00:00
< / div >
< 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" >
< input type = "text" class = "form-control form-control-sm cdsInfo" id = "boatNameKr" name = "boatNameKr" th:value = "${asfCov.boatNameKr}" disabled >
< / div >
< 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" >
< input type = "text" class = "form-control form-control-sm cdsInfo" id = "caseNum" name = "caseNum" th:value = "${asfCov.caseNum}" disabled >
< input type = "button" class = "btn btn-sm btn-outline-primary crackdownStatusInfo w-auto" id = "caseNumBtn" value = "불러오기" >
2023-01-12 09:01:11 +00:00
< / div >
2023-01-12 09:50:48 +00:00
< / div >
< label for = "caseNum" class = "col-sm-2 col-form-label col-form-label-sm text-center" > *사건번호로 불러와주세요< / label >
< / 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" >
< select class = "form-select form-select-sm cdsInfo" id = "caseAgency" name = "caseAgency" disabled >
< option value = "" > < / option >
< 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 >
< / th:block >
< / 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" >
< input type = "text" class = "form-control form-control-sm cdsInfo" id = "casePoliceOfficer" name = "casePoliceOfficer" th:value = "${asfCov.casePoliceOfficer}" disabled >
< / div >
< label for = "crackdownPolice" 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 cdsInfo" name = "crackdownPolice" id = "crackdownPolice" disabled >
< option value = "" > < / option >
< 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 >
< / th:block >
< / select >
< / div >
< label for = "crackdownBoat" 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 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 >
2023-01-10 09:03:52 +00:00
< / th:block >
2023-01-12 09:50:48 +00:00
< / th:block >
< / select >
2023-01-10 09:03:52 +00:00
< / div >
2023-01-12 09:50:48 +00:00
< / 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 >
2023-01-12 09:01:11 +00:00
< / div >
2023-01-12 09:50:48 +00:00
< 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-12 09:01:11 +00:00
< / div >
2023-01-12 09:50:48 +00:00
< / div >
< 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" id = "asfcovActionDetail" name = "asfcovActionDetail" th:value = "${asfCov.asfcovActionDetail}" > < / textarea >
2023-01-10 09:03:52 +00:00
< / div >
2023-01-12 09:50:48 +00:00
< / div >
2023-01-10 09:03:52 +00:00
< / div >
< / div >
2023-01-12 09:01:11 +00:00
< div class = "tab-pane fade p-2 mx-2" id = "history" role = "tabpanel" aria-labelledby = "history-tab" tabindex = "0" >
< div class = "row" >
< div class = "col-4" >
< table class = "table table-hover" >
< thead >
< tr >
< td > < / td >
< td > 수정자< / td >
< td > 수정일< / td >
< / tr >
< / thead >
< tbody >
< tr class = "versionInfoTr" th:each = "asfcov:${asfCovList}" >
< input type = "hidden" class = "asfCovKey" th:value = "${asfcov.asfCovKey}" >
< input type = "hidden" class = "versionNo" th:value = "${asfcov.versionNo}" >
< td > < input type = "checkbox" class = "versionInfoChkbox" > < / td >
< td >
< th:block th:each = "commonCode:${session.commonCode.get('OG')}" >
< th:block th:if = "${asfcov.wrtOrgan eq commonCode.itemCd}" th:text = "${commonCode.itemValue}" > < / th:block >
< / th:block >
< br >
< th:block th:each = "commonCode:${session.commonCode.get('JT')}" >
< th:block th:if = "${asfcov.wrtUserGrd eq commonCode.itemCd}" th:text = "${commonCode.itemValue}" > < / th:block >
< / th:block >
< th:block th:text = "${asfcov.wrtUserNm}" > < / th:block >
< / td >
< td th:text = "${#temporals.format(asfcov.wrtDt, 'yyyy-MM-dd HH:mm')}" > < / td >
< / tr >
< / tbody >
< / table >
< / div >
< div class = "col-8" id = "fishingBoardVersionInfoDiv" >
< / div >
< / div >
< / div >
< / div >
2023-01-10 09:03:52 +00:00
< / div >
< div class = "modal-footer bg-light" >
2023-01-12 09:01:11 +00:00
< th:block th:if = "${userSeq eq asfCov.wrtUserSeq}" > <!-- 작성자일 경우 수정 허용 -->
< button type = "button" class = "btn btn-warning" id = "editBtn" th:data-asfCovkey = "${asfCov.asfCovKey}" > 수정< / button >
2023-01-10 09:03:52 +00:00
< / th:block >
2023-01-12 09:01:11 +00:00
<!-- <th:block th:if="${userSeq eq asfCov.wrtUserSeq or accessAuth eq 'ACC003'}"><!–작성자일 경우 수정 허용–><!–관리자일 경우 수정 허용–> -->
<!-- <button type="button" class="btn btn - warning" id="processResultEditBtn">수정</button> -->
<!-- </th:block> -->
< button type = "button" class = "btn btn-danger" id = "deleteMajorBtn" > 삭제< / button >
2023-01-10 09:03:52 +00:00
< button type = "button" class = "btn btn-secondary" data-bs-dismiss = "modal" > 닫기< / button >
< / div >
2023-01-09 09:01:36 +00:00
< / html >