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" >
< h5 class = "modal-title text-white" id = "processResultEditModalLabel" th:text = "${asfCov.asfCovKey eq null ? '불법조업 외국어선 처리현황' : '불법조업 외국어선 처리현황'}" > >< / h5 >
< button type = "button" class = "btn-close f-invert" data-bs-dismiss = "modal" aria-label = "Close" > < / button >
< / div >
<!-- 탭 메뉴 -->
< 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 >
<!-- 내용 -->
< div class = "tab-content" style = "overflow-y: auto;" >
< div class = "tab-pane fade show active" id = "processResult" role = "tabpanel" aria-labelledby = "processResult-tab" >
< div class = "modal-body" id = "processResultEditBody" >
< form action = "#" method = "post" id = "processResultEditForm" >
< input type = "hidden" name = "_csrf_header" th:value = "${_csrf.headerName}" / >
< input type = "hidden" name = "_csrf_header" th:value = "${_csrf.headerName}" / >
< input type = "hidden" th:name = "${_csrf.parameterName}" th:value = "${_csrf.token}" / >
< input type = "hidden" name = "cdsKey" th:value = "${asfCov.cdsKey}" >
< input type = "hidden" name = "fbKey" th:value = "${asfCov.fbKey}" >
< input type = "hidden" name = "wrtOrgan" th:value = "${asfCov.wrtOrgan}" >
< input type = "hidden" name = "wrtUserNm" th:value = "${asfCov.wrtUserNm}" >
< input type = "hidden" name = "wrtDt" th:value = "${#temporals.format(asfCov.wrtDt, 'yyyy-MM-dd HH:mm')}" >
< input type = "hidden" id = "saveYn" name = "saveYn" >
< div class = "row mb-1" >
< 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 = "caseNum" id = "caseNum" th:value = "${asfCov.caseNum}" readonly >
< / div >
< label class = "col-sm-1 col-form-label col-form-label-sm text-center" > 사건담당< br > 경찰서< / label >
< div class = "col-sm-2" >
< select class = "form-select form-select-sm" 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="${pasfCov.crackdownPolice eq commonCode.itemCd}">< / option >
< / th:block >
< option value = "etc" th:selected = "${asfCov.crackdownPolice ne null && asfCov.crackdownPolice ne '' && !#strings.contains(asfCov.crackdownPolice, 'CPO')}" > 직접입력< / option >
< / select >
< / div >
< / div >
< div class = "row mb-1" >
< 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 = "boatNameKr" id = "boatNameKr" th:value = "${asfCov.boatNameKr}" readonly >
< / div >
2023-01-09 09:01:36 +00:00
2023-01-10 09:03:52 +00:00
< / div >
< / form >
< / div >
< / div >
< / div >
< div class = "modal-footer bg-light" >
< 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-secondary" data-bs-dismiss = "modal" > 닫기< / button >
< / div >
2023-01-09 09:01:36 +00:00
< / html >