2022-12-22 01:55:19 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html lang="ko" xmlns:th="http://www.thymeleaf.org">
|
2023-03-31 09:10:10 +00:00
|
|
|
<div class="modal-header bg-dark">
|
|
|
|
|
<h5 class="modal-title text-white" id="menuEditModalLabel">통역인 정보</h5>
|
|
|
|
|
<button type="button" class="btn-close f-invert" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="KeyValue">
|
|
|
|
|
</div>
|
|
|
|
|
<div class="modal-body">
|
|
|
|
|
<ul class="nav nav-tabs" id="userTab" role="tablist">
|
|
|
|
|
<li class="nav-item" role="presentation">
|
|
|
|
|
<button class="nav-link active" id="accessTab" data-bs-toggle="tab" data-bs-target="#accessTabPanel" type="button" role="tab" aria-controls="accessTabPanel" aria-selected="true">인적사항</button>
|
|
|
|
|
</li>
|
|
|
|
|
<li class="nav-item" role="presentation">
|
|
|
|
|
<button class="nav-link" id="approvalTab" data-bs-toggle="tab" data-bs-target="#approvalTabPanel" type="button" role="tab" aria-controls="approvalTabPanel" aria-selected="false">수정이력</button>
|
|
|
|
|
</li>
|
|
|
|
|
</ul>
|
|
|
|
|
<div class="tab-content bg-white border border-top-0" id="configInfo">
|
|
|
|
|
<form id="trInfoUpdate" method="post">
|
|
|
|
|
<input type="hidden" name="_csrf_header" th:value="${_csrf.headerName}"/>
|
|
|
|
|
<input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}"/>
|
|
|
|
|
<input type="hidden" class="translatorKey" name="translatorKey" th:value="${trInfo.translatorKey}"/>
|
|
|
|
|
<input type="hidden" class="versionNo" name="versionNo" th:value="${trInfo.versionNo}"/>
|
|
|
|
|
<br>
|
|
|
|
|
<div class="pl-15">
|
|
|
|
|
<div class="row mb-1">
|
|
|
|
|
<label for="eOgdp1" class="col-sm-1 col-form-label-sm text-center">관서</label>
|
|
|
|
|
<div class="col-sm-2">
|
|
|
|
|
<select class="form-select" id="eOgdp1" name="ogdp1" th:disabled="${accessAuth ne 'ACC003'}">
|
|
|
|
|
<option value="">선택</option>
|
|
|
|
|
<th:block th:each="commonCode:${session.commonCode.get('OG')}">
|
|
|
|
|
<th:block th:if="${#lists.contains(mgtOrganList, commonCode.itemCd)}">
|
|
|
|
|
<option th:value="${commonCode.itemCd}" th:text="${commonCode.itemValue}" th:selected="${commonCode.itemCd} == ${trInfo.ogdp1}"></option>
|
|
|
|
|
</th:block>
|
|
|
|
|
</th:block>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<label for="eTrLang" class="col-sm-1 col-form-label-sm text-center">언어</label>
|
|
|
|
|
<div class="col-sm-2">
|
|
|
|
|
<select class="form-select" id="eTrLang" name="trLang">
|
|
|
|
|
<option value="">선택</option>
|
|
|
|
|
<th:block th:each="commonCode:${session.commonCode.get('LGG')}">
|
|
|
|
|
<option th:value="${commonCode.itemCd}" th:text="${commonCode.itemValue}" th:selected="${commonCode.itemCd} == ${trInfo.trLang}"></option>
|
|
|
|
|
</th:block>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<label for="eTrCareer" class="col-sm-1 col-form-label-sm text-center">경력</label>
|
|
|
|
|
<div class="col-sm-2">
|
|
|
|
|
<input type="text" class="form-control" id="eTrCareer" name="trCareer" th:value="${trInfo.trCareer}">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row mb-1">
|
|
|
|
|
<label for="eTrEname" class="col-sm-1 col-form-label-sm text-center">성명</label>
|
|
|
|
|
<div class="col-sm-2">
|
|
|
|
|
<input type="text" class="form-control" id="eTrEname" name="trName" th:value="${trInfo.trName}">
|
|
|
|
|
</div>
|
|
|
|
|
<label for="eTrSex" class="col-sm-1 col-form-label-sm text-center">성별</label>
|
|
|
|
|
<div class="col-sm-2">
|
|
|
|
|
<select class="form-select" id="eTrSex" name="trSex">
|
|
|
|
|
<option value="">선택</option>
|
|
|
|
|
<th:block th:each="commonCode:${session.commonCode.get('SEX')}">
|
|
|
|
|
<option th:value="${commonCode.itemCd}" th:text="${commonCode.itemValue}" th:selected="${commonCode.itemCd} == ${trInfo.trSex}"></option>
|
|
|
|
|
</th:block>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<label for="eTrPhone" class="col-sm-1 col-form-label-sm text-center">연락처</label>
|
|
|
|
|
<div class="col-sm-2">
|
|
|
|
|
<input type="text" class="form-control" id="eTrPhone" name="trPhone" th:value="${trInfo.trPhone}">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row mb-1">
|
|
|
|
|
<label for="eTrNny" class="col-sm-1 col-form-label-sm text-center">국적</label>
|
|
|
|
|
<div class="col-sm-2">
|
|
|
|
|
<select class="form-select" id="eTrNny" name="trNny">
|
|
|
|
|
<option value="">선택</option>
|
|
|
|
|
<th:block th:each="code:${session.commonCode.get('NNY')}">
|
|
|
|
|
<option th:value="${code.itemCd}" th:text="${code.itemValue}" th:selected="${code.itemCd eq trInfo.trNny}"></option>
|
|
|
|
|
</th:block>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<label for="enaturalization" class="col-sm-1 col-form-label-sm text-center">귀화</label>
|
|
|
|
|
<div class="col-sm-2">
|
|
|
|
|
<select class="form-select" id="enaturalization" name="naturalization" th:disabled="${trInfo.trNny ne 'NNY001'}">
|
|
|
|
|
<option value="">선택</option>
|
|
|
|
|
<option value="O" th:selected="${trInfo.naturalization eq 'O'}">O</option>
|
|
|
|
|
<option value="X" th:selected="${trInfo.naturalization eq 'X'}">X</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row mb-1">
|
|
|
|
|
<label for="eTrAge" class="col-sm-1 col-form-label-sm text-center">나이</label>
|
|
|
|
|
<div class="col-sm-2">
|
|
|
|
|
<input type="text" class="form-control" id="eTrAge" name="trAge" th:value="${trInfo.trAge}">
|
|
|
|
|
</div>
|
|
|
|
|
<label for="eTrEdu" class="col-sm-1 col-form-label-sm text-center">학력</label>
|
|
|
|
|
<div class="col-sm-2">
|
|
|
|
|
<select class="form-select" id="eTrEdu" name="trEdu">
|
|
|
|
|
<option value="">선택</option>
|
|
|
|
|
<th:block th:each="commonCode:${session.commonCode.get('EDU')}">
|
|
|
|
|
<option th:value="${commonCode.itemCd}" th:text="${commonCode.itemValue}" th:selected="${commonCode.itemCd} == ${trInfo.trEdu}"></option>
|
|
|
|
|
</th:block>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<label for="eTrCft" class="col-sm-1 col-form-label-sm text-center">자격증</label>
|
|
|
|
|
<div class="col-sm-2">
|
|
|
|
|
<input type="text" class="form-control" id="eTrCft" name="trCft" th:value="${trInfo.trCft}">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="row mb-1">
|
|
|
|
|
<label for="eTrVisa" class="col-sm-1 col-form-label-sm text-center">비자</label>
|
|
|
|
|
<div class="col-sm-2">
|
|
|
|
|
<select class="form-select" id="eTrVisa" name="trVisa">
|
|
|
|
|
<option value="">선택</option>
|
|
|
|
|
<th:block th:each="code:${session.commonCode.get('VISA')}">
|
|
|
|
|
<option th:if="${code.useChk eq 'T' or code.itemCd eq trInfo.trVisa}" th:value="${code.itemCd}" th:text="${code.itemValue}" th:selected="${code.itemCd eq trInfo.trVisa}"></option>
|
|
|
|
|
</th:block>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<label for="viewAptDt" class="col-sm-1 col-form-label-sm text-center">위촉일</label>
|
|
|
|
|
<div class="col-sm-2">
|
|
|
|
|
<input type="text" class="form-control" id="viewAptDt" name="aptDt" th:value="${trInfo.aptDt}" readonly>
|
|
|
|
|
</div>
|
|
|
|
|
<label for="eDmlYn" class="col-sm-1 col-form-label-sm text-center">해촉</label>
|
|
|
|
|
<div class="col-sm-2">
|
|
|
|
|
<select class="form-select" id="eDmlYn" name="dmlYn">
|
|
|
|
|
<option value="">선택</option>
|
|
|
|
|
<option value="O" th:selected="'O' == ${trInfo.dmlYn}">O</option>
|
|
|
|
|
<option value="X" th:selected="'X' == ${trInfo.dmlYn}">X</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="mb-2 row">
|
|
|
|
|
<label for="eRemark" class="col-sm-1 col-form-label-sm text-center">비고</label>
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<input type="text" class="form-control" id="eRemark" name="remark" th:value="${trInfo.remark}">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2023-02-21 02:59:08 +00:00
|
|
|
</div>
|
2023-03-31 09:10:10 +00:00
|
|
|
</form>
|
|
|
|
|
|
2023-02-21 02:59:08 +00:00
|
|
|
</div>
|
2023-03-31 09:10:10 +00:00
|
|
|
</div>
|
|
|
|
|
<div class="modal-footer bg-light">
|
|
|
|
|
<button type="button" class="btn btn-secondary" id="trDeleteBtn" th:if="${accessAuth eq 'ACC003'} or ${wrtUserSeq eq userSeq}">해임</button>
|
|
|
|
|
<button type="button" class="btn btn-warning" id="updateBtn" th:if="${accessAuth eq 'ACC003'} or ${wrtUserSeq eq userSeq}">수정</button>
|
|
|
|
|
</div>
|
2022-12-22 01:55:19 +00:00
|
|
|
|
|
|
|
|
</html>
|