2022-12-22 01:55:19 +00:00
<!DOCTYPE html>
< html lang = "ko" xmlns:th = "http://www.thymeleaf.org" >
< div class = "modal-header bg-dark" >
< h5 class = "modal-title text-white" id = "planEditModalLabel" > 국제범죄검거 현황< / h5 >
< button type = "button" class = "btn-close f-invert" data-bs-dismiss = "modal" aria-label = "Close" > < / button >
< / div >
2022-12-28 06:30:07 +00:00
< div class = "modal-body" >
2022-12-22 01:55:19 +00:00
< input type = "hidden" name = "icaKey" th:value = "${internationalCrimeArrest.icaKey}" >
2023-01-27 02:27:07 +00:00
<!-- <div class="row mb - 1">
2022-12-28 06:30:07 +00:00
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 사건번호< / label >
< label class = "col-sm-2 col-form-label col-form-label-sm text-start" th:text = "${internationalCrimeArrest.caseNum}" > < / label >
2023-01-27 02:27:07 +00:00
< / div > -->
2022-12-28 06:30:07 +00:00
< div class = "row mb-1" >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 지방청< / label >
< label class = "col-sm-2 col-form-label col-form-label-sm text-start" >
< th:block th:each = "organConfig:${organConfigList}" >
< th:block th:if = "${organConfig.organCd eq internationalCrimeArrest.organ}" th:text = "${organConfig.organNm}" > < / th:block >
< / th:block >
< / label >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 관할서< / label >
< label class = "col-sm-2 col-form-label col-form-label-sm text-start" >
< th:block th:each = "organConfig:${organConfigList}" >
< th:block th:if = "${organConfig.organCd eq internationalCrimeArrest.department}" th:text = "${organConfig.organNm}" > < / th:block >
< / th:block >
< / label >
< / div >
< hr class = "my-1" >
< div class = "row mb-1" >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 범죄테마< / label >
< label class = "col-sm-2 col-form-label col-form-label-sm text-start" >
< th:block th:each = "code:${session.commonCode.get('CTH')}" >
< th:block th:if = "${code.itemCd eq internationalCrimeArrest.crimeType}" th:text = "${code.itemValue}" > < / th:block >
< / th:block >
< / label >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 위반유형< / label >
< label class = "col-sm-2 col-form-label col-form-label-sm text-start" >
< th:block th:each = "code:${session.commonCode.get(internationalCrimeArrest.crimeType)}" >
< th:block th:if = "${code.itemCd eq internationalCrimeArrest.violationType}" th:text = "${code.itemValue}" > < / th:block >
< / th:block >
< / label >
< th:block th:if = "${internationalCrimeArrest.crimeType ne 'CTH002'}" >
< div class = "col-sm-4" id = "crimeNameDiv" >
< div class = "row" >
< label class = "col-sm-6 col-form-label col-form-label-sm text-center" > 죄명< / label >
< label class = "col-sm-2 col-form-label col-form-label-sm text-start" th:text = "${internationalCrimeArrest.crimeName}" > < / label >
< / div >
2022-12-22 01:55:19 +00:00
< / div >
2022-12-28 06:30:07 +00:00
< / th:block >
< / div >
< div class = "row mb-1" id = "smugglingAmountDiv" >
< th:block th:if = "${internationalCrimeArrest.crimeType eq 'CTH002'}" >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 밀수입출 품목< / label >
< label class = "col-sm-2 col-form-label col-form-label-sm text-start" >
< th:block th:each = "commonCode:${session.commonCode.get('SG')}" >
< option th:value = "${commonCode.itemCd}" th:text = "${commonCode.itemValue}" > < / option >
< / th:block >
< / label >
2022-12-22 01:55:19 +00:00
< div class = "col-sm-2" >
2022-12-28 06:30:07 +00:00
< select class = "form-select form-select-sm bg-white" name = "smuggledGoods" id = "smugglingAmount" disabled >
< option > 선택< / option >
< th:block th:each = "commonCode:${session.commonCode.get('SG')}" >
< option th:value = "${commonCode.itemCd}" th:text = "${commonCode.itemValue}" > < / option >
2022-12-22 01:55:19 +00:00
< / th:block >
2022-12-28 06:30:07 +00:00
< option value = "etc" th:selected = "${internationalCrimeArrest.smuggledGoods ne null && internationalCrimeArrest.smuggledGoods ne '' && !#strings.contains(internationalCrimeArrest.smuggledGoods, 'SG')}" > 기타< / option >
2022-12-22 01:55:19 +00:00
< / select >
2022-12-28 06:30:07 +00:00
< th:block th:if = "${internationalCrimeArrest.smuggledGoods ne null && internationalCrimeArrest.smuggledGoods ne '' && !#strings.contains(internationalCrimeArrest.smuggledGoods, 'SG')}" >
< div class = "col-auto" >
< input type = "text" class = "form-control form-control-sm" name = "smuggledGoodsEtc" th:value = "${internationalCrimeArrest.smuggledGoods}" readonly >
< / div >
< / th:block >
2022-12-22 01:55:19 +00:00
< / div >
2023-01-13 09:01:55 +00:00
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 밀수가액(만원)< / label >
2022-12-22 01:55:19 +00:00
< div class = "col-sm-2" >
2022-12-28 06:30:07 +00:00
< input type = "number" min = "0" name = "smugglingAmount" th:value = "${internationalCrimeArrest.smugglingAmount}" readonly >
2022-12-22 01:55:19 +00:00
< / div >
2022-12-28 06:30:07 +00:00
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 단속 인원(경찰관)< / label >
2022-12-22 01:55:19 +00:00
< div class = "col-sm-2" >
2022-12-28 06:30:07 +00:00
< input type = "number" min = "0" name = "caseNum" th:value = "${internationalCrimeArrest.caseNum}" readonly >
2022-12-22 01:55:19 +00:00
< / div >
2022-12-28 06:30:07 +00:00
< / th:block >
< / div >
< div class = "row mb-1" >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 발생원표< / label >
< div class = "col-sm-2" >
< input type = "text" class = "form-control form-control-sm" name = "occurTable" th:value = "${internationalCrimeArrest.occurTable}" readonly >
2022-12-22 01:55:19 +00:00
< / div >
2022-12-28 06:30:07 +00:00
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 검거원표< / label >
< div class = "col-sm-2" >
< input type = "text" class = "form-control form-control-sm" name = "arrestTable" th:value = "${internationalCrimeArrest.arrestTable}" readonly >
2022-12-22 01:55:19 +00:00
< / div >
2022-12-28 06:30:07 +00:00
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 피의자원표< / label >
< div class = "col-sm-2" >
< input type = "text" class = "form-control form-control-sm" name = "suspectTable" th:value = "${internationalCrimeArrest.suspectTable}" readonly >
2022-12-22 01:55:19 +00:00
< / div >
2022-12-28 06:30:07 +00:00
< / div >
< div class = "row mb-1" >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 범행형태< / label >
< div class = "col-auto" id = "crimeFormDiv" >
< select class = "form-select form-select-sm bg-white" name = "crimeForm" id = "crimeForm" disabled >
< th:block th:each = "commonCode:${session.commonCode.get('CMF')}" >
< option th:value = "${commonCode.itemCd}" th:text = "${commonCode.itemValue}"
th:selected="${commonCode.itemCd eq internationalCrimeArrest.crimeForm}">< / option >
< / th:block >
< / select >
2022-12-22 01:55:19 +00:00
< / div >
2022-12-28 06:30:07 +00:00
< / div >
< div class = "row mb-1" id = "spiParentDiv" >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 피의자 인적사항< / label >
< div class = "col-sm-10" >
< div class = "border" id = "spiDiv" >
< th:block th:if = "${#lists.isEmpty(internationalCrimeArrest.suspectPersonInfoList)}" >
< div class = "row spi-list my-1" >
< label class = "col-sm-1 col-form-label col-form-label-sm text-center" > 성별< / label >
< div class = "col-sm-2" id = "sexFormDiv" >
< select class = "form-select form-select-sm bg-white" name = "sex" disabled >
< th:block th:each = "commonCode:${session.commonCode.get('SEX')}" >
< option th:value = "${commonCode.itemCd}" th:text = "${commonCode.itemValue}" > < / option >
< / th:block >
< / select >
< / div >
< label class = "col-sm-1 col-form-label col-form-label-sm text-center" > 나이< / label >
< div class = "col-sm-2" id = "ageFormDiv" >
< select class = "form-select form-select-sm bg-white" name = "age" disabled >
< th:block th:each = "commonCode:${session.commonCode.get('AGE')}" >
< option th:value = "${commonCode.itemCd}" th:text = "${commonCode.itemValue}" > < / option >
< / th:block >
< / select >
< / div >
< label class = "col-sm-1 col-form-label col-form-label-sm text-center" > 국적< / label >
< div class = "col-sm-2" id = "countryFormDiv" >
< select class = "form-select form-select-sm bg-white country" name = "country" disabled >
< th:block th:each = "commonCode:${session.commonCode.get('NNY')}" >
< option th:value = "${commonCode.itemCd}" th:text = "${commonCode.itemValue}" > < / option >
< / th:block >
< option value = "etc" > 기타< / option >
< / select >
< / div >
< / div >
< / th:block >
< th:block th:if = "${!#lists.isEmpty(internationalCrimeArrest.suspectPersonInfoList)}" >
< th:block th:each = "suspectPersonInfo:${internationalCrimeArrest.suspectPersonInfoList}" >
2023-01-31 02:15:57 +00:00
< div class = "row spi-list m-0" >
2022-12-22 01:55:19 +00:00
< label class = "col-sm-1 col-form-label col-form-label-sm text-center" > 성별< / label >
< div class = "col-sm-2" id = "sexFormDiv" >
< select class = "form-select form-select-sm bg-white" name = "sex" disabled >
< th:block th:each = "commonCode:${session.commonCode.get('SEX')}" >
2022-12-28 06:30:07 +00:00
< option th:value = "${commonCode.itemCd}" th:text = "${commonCode.itemValue}"
th:selected="${suspectPersonInfo.sex ne null & & commonCode.itemCd eq suspectPersonInfo.sex}">< / option >
2022-12-22 01:55:19 +00:00
< / th:block >
< / select >
< / div >
< label class = "col-sm-1 col-form-label col-form-label-sm text-center" > 나이< / label >
< div class = "col-sm-2" id = "ageFormDiv" >
< select class = "form-select form-select-sm bg-white" name = "age" disabled >
< th:block th:each = "commonCode:${session.commonCode.get('AGE')}" >
2022-12-28 06:30:07 +00:00
< option th:value = "${commonCode.itemCd}" th:text = "${commonCode.itemValue}"
th:selected="${suspectPersonInfo.age ne null & & commonCode.itemCd eq suspectPersonInfo.age}">< / option >
2022-12-22 01:55:19 +00:00
< / th:block >
< / select >
< / div >
< label class = "col-sm-1 col-form-label col-form-label-sm text-center" > 국적< / label >
< div class = "col-sm-2" id = "countryFormDiv" >
2022-12-28 06:30:07 +00:00
< select class = "form-select form-select-sm bg-white country" name = "country" id = "country" disabled >
2022-12-22 01:55:19 +00:00
< th:block th:each = "commonCode:${session.commonCode.get('NNY')}" >
2022-12-28 06:30:07 +00:00
< option th:value = "${commonCode.itemCd}" th:text = "${commonCode.itemValue}"
th:selected="${suspectPersonInfo.country ne null & & commonCode.itemCd eq suspectPersonInfo.country}">< / option >
2022-12-22 01:55:19 +00:00
< / th:block >
2022-12-28 06:30:07 +00:00
< option value = "etc" th:selected = "${suspectPersonInfo.country ne null && suspectPersonInfo.country ne '' && !#strings.contains(suspectPersonInfo.country, 'NNY')}" > 기타< / option >
2022-12-22 01:55:19 +00:00
< / select >
< / div >
2022-12-28 06:30:07 +00:00
< th:block th:if = "${suspectPersonInfo.country ne null && suspectPersonInfo.country ne '' && !#strings.contains(suspectPersonInfo.country, 'NNY')}" >
< div class = "col-sm-2" >
< input type = "text" class = "form-control form-control-sm" name = "countryEtc" th:value = "${suspectPersonInfo.country}" readonly >
2022-12-22 01:55:19 +00:00
< / div >
< / th:block >
< / div >
2022-12-28 06:30:07 +00:00
< / th:block >
2022-12-22 01:55:19 +00:00
< / th:block >
2022-12-28 06:30:07 +00:00
< / div >
2022-12-22 01:55:19 +00:00
< / div >
2022-12-28 06:30:07 +00:00
< / div >
< div class = "row mb-1" id = "spiInfoDiv" >
< th:block th:if = "${!#lists.isEmpty(internationalCrimeArrest.suspectPersonInfoList)}" >
< th:block th:if = "${internationalCrimeArrest.crimeType eq 'CTH002' || internationalCrimeArrest.violationType eq 'VLT005'}" >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" th:text = "${internationalCrimeArrest.violationType eq 'VLT005' ? '불법체류 및 취업' : '피의자 정보'}" > 피의자 정보< / label >
< div class = "col-sm-10" >
< div class = "row" id = "spiWrapper" >
< th:block th:if = "${internationalCrimeArrest.violationType eq 'VLT005'}" >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center entryVisa" > 입국비자< / label >
< div class = "col-sm-2 entryVisa" >
< input type = "text" class = "form-control form-control-sm" name = "entryVisa" th:value = "${internationalCrimeArrest.suspectPersonInfoList[0].entryVisa}" readonly >
< / div >
2022-12-22 01:55:19 +00:00
< / th:block >
2022-12-28 06:30:07 +00:00
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 체류 자격< / label >
< div class = "col-sm-2" >
< input type = "text" class = "form-control form-control-sm" name = "stayQualification" th:value = "${internationalCrimeArrest.suspectPersonInfoList[0].stayQualification}" readonly >
2022-12-22 01:55:19 +00:00
< / div >
2022-12-28 06:30:07 +00:00
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 체류기간 만료일< / label >
< div class = "col-sm-2" id = "stayQualificationDiv" >
< input type = "text" class = "form-control form-control-sm" name = "stayPeriodExpiredDt" id = "stayPeriodExpiredDt" th:value = "${#temporals.format(internationalCrimeArrest.suspectPersonInfoList[0].stayPeriodExpiredDt, 'yyyy-MM-dd HH:mm')}" readonly >
2022-12-22 01:55:19 +00:00
< / div >
2022-12-28 06:30:07 +00:00
< / div >
2022-12-22 01:55:19 +00:00
< / div >
2022-12-28 06:30:07 +00:00
< / th:block >
2022-12-22 01:55:19 +00:00
< / th:block >
2022-12-28 06:30:07 +00:00
< / div >
< th:block th:if = "${internationalCrimeArrest.violationType eq 'VLT001' || internationalCrimeArrest.violationType eq 'VLT002' || internationalCrimeArrest.violationType eq 'VLT003'|| internationalCrimeArrest.violationType eq 'VLT004'}" >
< div class = "row mb-1" id = "meansDiv" >
< th:block th:if = "${internationalCrimeArrest.violationType eq 'VLT001' || internationalCrimeArrest.violationType eq 'VLT003'|| internationalCrimeArrest.violationType eq 'VLT004'}" >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" th:text = "${internationalCrimeArrest.violationType eq 'VLT001' ? '밀입국 출발지(국가)' : (internationalCrimeArrest.violationType eq 'VLT003' ? '밀출국 행선지(도착예정지)' : '밀항 행선지(도착예정지)')}" > < / label >
2022-12-22 01:55:19 +00:00
< div class = "col-sm-2" >
2022-12-28 06:30:07 +00:00
< input type = "text" class = "form-control form-control-sm" name = "destination" readonly >
2022-12-22 01:55:19 +00:00
< / div >
2022-12-28 06:30:07 +00:00
< / th:block >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" th:text = "${internationalCrimeArrest.violationType eq 'VLT001' ? '밀입국 수단(방법)' : (internationalCrimeArrest.violationType eq 'VLT002' ? '도외이탈 수단(방법)' : (internationalCrimeArrest.violationType eq 'VLT003' ? '밀출국 수단(방법)' : '밀항 수단(방법)'))}" > < / label >
< div class = "col-sm-2" >
< select class = "form-select form-select-sm bg-white" name = "means" id = "means" disabled >
< option > 선택< / option >
< th:block th:if = "${internationalCrimeArrest.violationType eq 'VLT001'}" th:each = "commonCode:${session.commonCode.get('MS1')}" >
< option th:value = "${commonCode.itemCd}" th:text = "${commonCode.itemValue}"
th:selected="${commonCode.itemCd eq internationalCrimeArrest.means}">< / option >
< / th:block >
< th:block th:if = "${internationalCrimeArrest.violationType ne 'VLT001'}" th:each = "commonCode:${session.commonCode.get('MS2')}" >
< option th:value = "${commonCode.itemCd}" th:text = "${commonCode.itemValue}"
th:selected="${commonCode.itemCd eq internationalCrimeArrest.means}">< / option >
< / th:block >
< option value = "etc" th:selected = "${internationalCrimeArrest.means ne null && internationalCrimeArrest.means ne '' && !#strings.contains(internationalCrimeArrest.means, 'MS1') && !#strings.contains(internationalCrimeArrest.means, 'MS2')}" > 기타< / option >
< / select >
< th:block th:if = "${internationalCrimeArrest.means ne null && internationalCrimeArrest.means ne '' && !#strings.contains(internationalCrimeArrest.means, 'MS1') && !#strings.contains(internationalCrimeArrest.means, 'MS2')}" >
< div class = "col-auto" >
< input type = "text" class = "form-control form-control-sm" name = "meansEtc" th:value = "${internationalCrimeArrest.means}" readonly >
< / div >
< / th:block >
2022-12-22 01:55:19 +00:00
< / div >
2022-12-28 06:30:07 +00:00
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" th:text = "${internationalCrimeArrest.violationType eq 'VLT001' ? '밀입국 목적(사유)' : (internationalCrimeArrest.violationType eq 'VLT002' ? '도외이탈 목적(시유)' : (internationalCrimeArrest.violationType eq 'VLT003' ? '밀출국 목적(사유)' : '밀항 목적(사유)'))}" > < / label >
2022-12-22 01:55:19 +00:00
< div class = "col-sm-2" >
2022-12-28 06:30:07 +00:00
< select class = "form-select form-select-sm bg-white" name = "purpose" id = "purpose" disabled >
2022-12-22 01:55:19 +00:00
< option > 선택< / option >
2022-12-28 06:30:07 +00:00
< th:block th:each = "commonCode:${session.commonCode.get('PPS')}" >
2022-12-22 01:55:19 +00:00
< option th:value = "${commonCode.itemCd}" th:text = "${commonCode.itemValue}"
2022-12-28 06:30:07 +00:00
th:selected="${commonCode.itemCd eq internationalCrimeArrest.purpose}">< / option >
2022-12-22 01:55:19 +00:00
< / th:block >
2022-12-28 06:30:07 +00:00
< option value = "etc" th:selected = "${internationalCrimeArrest.purpose ne null && internationalCrimeArrest.purpose ne '' && !#strings.contains(internationalCrimeArrest.purpose, 'PPS')}" > 기타< / option >
2022-12-22 01:55:19 +00:00
< / select >
2022-12-28 06:30:07 +00:00
< th:block th:if = "${internationalCrimeArrest.purpose ne null && internationalCrimeArrest.purpose ne '' && !#strings.contains(internationalCrimeArrest.purpose, 'PPS')}" >
2022-12-22 01:55:19 +00:00
< div class = "col-auto" >
2022-12-28 06:30:07 +00:00
< input type = "text" class = "form-control form-control-sm" name = "purposeEtc" th:value = "${internationalCrimeArrest.purpose}" readonly >
2022-12-22 01:55:19 +00:00
< / div >
< / th:block >
< / div >
< / div >
2022-12-28 06:30:07 +00:00
< div class = "row mb-1" id = "arrestAreaDiv" >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 검거 지역 < / label >
< div class = "col-sm-2" >
< input type = "text" class = "form-control form-control-sm" name = "arrestArea" th:value = "${internationalCrimeArrest.arrestArea}" readonly >
< / div >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" th:text = "${internationalCrimeArrest.violationType eq 'VLT001' ? '밀입국 시도 해역(해안)' : (internationalCrimeArrest.violationType eq 'VLT002' ? '도외이탈 시도 해역(해안)' : (internationalCrimeArrest.violationType eq 'VLT003' ? '밀출국 시도 해역(해안)' : '밀항 시도 해역(해안)'))}" > < / label >
< div class = "col-sm-3" >
< select class = "form-select form-select-sm bg-white" name = "seaArea" disabled >
< option > 선택< / option >
< th:block th:each = "commonCode:${session.commonCode.get('SAA')}" >
< option th:value = "${commonCode.itemCd}" th:text = "${commonCode.itemValue}"
th:selected="${commonCode.itemCd eq internationalCrimeArrest.seaArea}">< / option >
< / th:block >
< / select >
< / div >
< / div >
< / th:block >
< th:block th:if = "${internationalCrimeArrest.violationAmount ne null}" >
< div class = "row mb-1" id = "violationAmountDiv" >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 표시위반 금액(만원)< / label >
< div class = "col-sm-2" >
< input type = "number" min = "0" class = "form-control form-control-sm" name = "violationAmount" th:value = "${internationalCrimeArrest.violationAmount}" readonly >
2022-12-22 01:55:19 +00:00
< / div >
< / div >
2022-12-28 06:30:07 +00:00
< / th:block >
< hr class = "my-1" >
< div class = "row mb-1" >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 범죄인지< / label >
< div class = "col-sm-2" id = "crimeAwarenessDtDiv" >
< input type = "text" class = "form-control form-control-sm" name = "crimeAwarenessDt" id = "crimeAwarenessDt" th:value = "${#temporals.format(internationalCrimeArrest.crimeAwarenessDt, 'yyyy-MM-dd HH:mm')}" readonly >
< / div >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 사건송치< / label >
< div class = "col-sm-2" id = "caseSentDtDiv" >
< input type = "text" class = "form-control form-control-sm" name = "caseSentDt" id = "caseSentDt" th:value = "${#temporals.format(internationalCrimeArrest.caseSentDt, 'yyyy-MM-dd HH:mm')}" readonly >
< / div >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 신병처리< / label >
< div class = "col-sm-2" >
< select class = "form-select form-select-sm bg-white" name = "processResult" id = "processResult" disabled >
< option > 선택< / option >
< th:block th:each = "commonCode:${session.commonCode.get('PCR')}" >
< option th:value = "${commonCode.itemCd}" th:text = "${commonCode.itemValue}"
th:selected="${commonCode.itemCd eq internationalCrimeArrest.processResult}">< / option >
< / th:block >
< option value = "etc" th:selected = "${internationalCrimeArrest.processResult ne null && internationalCrimeArrest.processResult ne '' && !#strings.contains(internationalCrimeArrest.processResult, 'PCR')}" > 기타< / option >
< / select >
< / div >
< / div >
2023-01-13 09:01:55 +00:00
< th:block th:if = "${internationalCrimeArrest.processResult ne null && internationalCrimeArrest.processResult ne '' && !#strings.contains(internationalCrimeArrest.processResult, 'PCR')}" >
< div class = "row justify-content-end mb-1" >
< label class = "col-sm-2 col-form-label col-form-label-sm text-center" > 불법체류자인계(명)< / label >
< div class = "col-sm-2" >
< input type = "number" class = "form-control form-control-sm" name = "processResultEtc" th:value = "${internationalCrimeArrest.processResult}" readonly >
< / div >
< / div >
< / th:block >
2022-12-28 06:30:07 +00:00
< div class = "row mb-1 justify-content-center" >
< label for = "caseOverviewDiv" class = "col-sm-2 col-form-label col-form-label-sm text-center" > 범죄사실(사건개요)< / label >
< div class = "col-sm-10" id = "caseOverviewDiv" >
< div class = "border p-1" name = 'caseOverview' th:utext = "${internationalCrimeArrest.caseOverview}" > < / div >
< / div >
< / div >
2022-12-22 01:55:19 +00:00
< / div >
< div class = "modal-footer bg-light" >
< th:block th:if = "${userSeq eq internationalCrimeArrest.wrtUserSeq or accessAuth eq 'ACC003'}" > <!-- 작성자일 경우 수정 허용 --> <!-- 관리자일 경우 수정 허용 -->
< button type = "button" class = "btn btn-warning" id = "icaEditBtn" > 수정< / button >
< / th:block >
2023-01-28 07:25:01 +00:00
<!-- <button type="button" class="btn btn - secondary" data - bs - dismiss="modal">닫기</button> -->
2022-12-22 01:55:19 +00:00
< / div >
< / html >