통역인 현황 추가 수정.
parent
f2fc6d9d01
commit
5f7f72cf45
|
|
@ -52,6 +52,7 @@
|
||||||
h.item_value as tr_visa,
|
h.item_value as tr_visa,
|
||||||
dml_yn,
|
dml_yn,
|
||||||
info_share_chk,
|
info_share_chk,
|
||||||
|
edu_chk,
|
||||||
apt_dt,
|
apt_dt,
|
||||||
tr_phone
|
tr_phone
|
||||||
from translator_info a
|
from translator_info a
|
||||||
|
|
|
||||||
|
|
@ -120,6 +120,7 @@
|
||||||
<th>학력</th>
|
<th>학력</th>
|
||||||
<th>비자</th>
|
<th>비자</th>
|
||||||
<th>개인정보<br>동의여부</th>
|
<th>개인정보<br>동의여부</th>
|
||||||
|
<th>교육이수<br>여부</th>
|
||||||
<th>해촉</th>
|
<th>해촉</th>
|
||||||
<th>위촉일</th>
|
<th>위촉일</th>
|
||||||
<th>연락처</th>
|
<th>연락처</th>
|
||||||
|
|
@ -139,7 +140,8 @@
|
||||||
<td th:text="${trInfo.trNny}"></td>
|
<td th:text="${trInfo.trNny}"></td>
|
||||||
<td th:text="${trInfo.trEdu}"></td>
|
<td th:text="${trInfo.trEdu}"></td>
|
||||||
<td th:text="${trInfo.trVisa}"></td>
|
<td th:text="${trInfo.trVisa}"></td>
|
||||||
<td th:text="${trInfo.infoShareChk eq 'T'?'●':''}"></td>
|
<td th:text="${trInfo.infoShareChk eq 'T'?'O':'X'}"></td>
|
||||||
|
<td th:text="${trInfo.eduChk eq 'T'?'O':'X'}"></td>
|
||||||
<td th:text="${trInfo.dmlYn eq 'O'?'●':''}"></td>
|
<td th:text="${trInfo.dmlYn eq 'O'?'●':''}"></td>
|
||||||
<td th:text="${trInfo.aptDt}"></td>
|
<td th:text="${trInfo.aptDt}"></td>
|
||||||
<td th:text="${trInfo.trPhone}"></td>
|
<td th:text="${trInfo.trPhone}"></td>
|
||||||
|
|
|
||||||
|
|
@ -93,15 +93,6 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="row mb-1">
|
<div class="row mb-1">
|
||||||
<label for="eTrNny" class="col-sm-1 col-form-label-sm text-center">국적</label>
|
|
||||||
<div class="col-sm-3">
|
|
||||||
<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="eTrEdu" class="col-sm-1 col-form-label-sm text-center">학력</label>
|
<label for="eTrEdu" class="col-sm-1 col-form-label-sm text-center">학력</label>
|
||||||
<div class="col-sm-3">
|
<div class="col-sm-3">
|
||||||
<select class="form-select" id="eTrEdu" name="trEdu">
|
<select class="form-select" id="eTrEdu" name="trEdu">
|
||||||
|
|
@ -111,6 +102,15 @@
|
||||||
</th:block>
|
</th:block>
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
<label for="eTrNny" class="col-sm-1 col-form-label-sm text-center">국적</label>
|
||||||
|
<div class="col-sm-3">
|
||||||
|
<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>
|
<label for="enaturalization" class="col-sm-1 col-form-label-sm text-center">귀화</label>
|
||||||
<div class="col-sm-3">
|
<div class="col-sm-3">
|
||||||
<select class="form-select" id="enaturalization" name="naturalization" th:disabled="${trInfo.trNny ne 'NNY001'}">
|
<select class="form-select" id="enaturalization" name="naturalization" th:disabled="${trInfo.trNny ne 'NNY001'}">
|
||||||
|
|
@ -163,11 +163,11 @@
|
||||||
</th:block>
|
</th:block>
|
||||||
</div>
|
</div>
|
||||||
<div class="mb-2 row">
|
<div class="mb-2 row">
|
||||||
<label for="eEduChk" class="col-sm-2 col-form-label-sm text-center">교육 이수 여부</label>
|
<label for="eEduChk" class="col-sm-2 col-form-label-sm text-center">교육이수 여부</label>
|
||||||
<div class="col-sm-2">
|
<div class="col-sm-2">
|
||||||
<input type="checkbox" class="mt-2" id="eEduChk" name="eduChk" th:checked="${trInfo.eduChk eq 'T'}" value="T">
|
<input type="checkbox" class="mt-2" id="eEduChk" name="eduChk" th:checked="${trInfo.eduChk eq 'T'}" value="T">
|
||||||
</div>
|
</div>
|
||||||
<label for="eEduChk" class="col-sm-2 col-form-label-sm text-center">교육 이수 여부</label>
|
<label for="eEduChk" class="col-sm-2 col-form-label-sm text-center">교육이수일</label>
|
||||||
<div class="col-sm-2">
|
<div class="col-sm-2">
|
||||||
<input type="text" class="form-control dateSelector" name="eduDate" th:value="${trInfo.eduDate}">
|
<input type="text" class="form-control dateSelector" name="eduDate" th:value="${trInfo.eduDate}">
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,11 @@
|
||||||
</th:block>
|
</th:block>
|
||||||
</label>
|
</label>
|
||||||
<label class="col-sm-1 col-form-label-sm text-center">언어</label>
|
<label class="col-sm-1 col-form-label-sm text-center">언어</label>
|
||||||
<label class="col-sm-3 col-form-label-sm text-start" th:text="${trInfo.trLang}"></label>
|
<label class="col-sm-3 col-form-label-sm text-start">
|
||||||
|
<th:block th:each="code:${session.commonCode.get('LGG')}">
|
||||||
|
<th:block th:if="${code.itemCd eq trInfo.trLang}" th:text="${code.itemValue}"></th:block>
|
||||||
|
</th:block>
|
||||||
|
</label>
|
||||||
<label class="col-sm-1 col-form-label-sm text-center">경력</label>
|
<label class="col-sm-1 col-form-label-sm text-center">경력</label>
|
||||||
<label class="col-sm-3 col-form-label-sm text-start" th:text="${trInfo.trCareer}"></label>
|
<label class="col-sm-3 col-form-label-sm text-start" th:text="${trInfo.trCareer}"></label>
|
||||||
</div>
|
</div>
|
||||||
|
|
@ -34,8 +38,16 @@
|
||||||
</label>
|
</label>
|
||||||
<label class="col-sm-1 col-form-label-sm text-center">연락처</label>
|
<label class="col-sm-1 col-form-label-sm text-center">연락처</label>
|
||||||
<label class="col-sm-3 col-form-label-sm text-start" th:text="${trInfo.trPhone}"></label>
|
<label class="col-sm-3 col-form-label-sm text-start" th:text="${trInfo.trPhone}"></label>
|
||||||
|
<label class="col-sm-1 col-form-label-sm text-center">나이</label>
|
||||||
|
<label class="col-sm-3 col-form-label-sm text-start" th:text="${trInfo.trAge}"></label>
|
||||||
</div>
|
</div>
|
||||||
<div class="row mb-1">
|
<div class="row mb-1">
|
||||||
|
<label class="col-sm-1 col-form-label-sm text-center">학력</label>
|
||||||
|
<label class="col-sm-3 col-form-label-sm text-start">
|
||||||
|
<th:block th:each="code:${session.commonCode.get('EDU')}">
|
||||||
|
<th:block th:if="${code.itemCd eq trInfo.trEdu}" th:text="${code.itemValue}"></th:block>
|
||||||
|
</th:block>
|
||||||
|
</label>
|
||||||
<label class="col-sm-1 col-form-label-sm text-center">국적</label>
|
<label class="col-sm-1 col-form-label-sm text-center">국적</label>
|
||||||
<label class="col-sm-3 col-form-label-sm text-start">
|
<label class="col-sm-3 col-form-label-sm text-start">
|
||||||
<th:block th:each="code:${session.commonCode.get('NNY')}">
|
<th:block th:each="code:${session.commonCode.get('NNY')}">
|
||||||
|
|
@ -45,18 +57,6 @@
|
||||||
<label class="col-sm-1 col-form-label-sm text-center">귀화</label>
|
<label class="col-sm-1 col-form-label-sm text-center">귀화</label>
|
||||||
<label class="col-sm-3 col-form-label-sm text-start" th:text="${trInfo.naturalization}"></label>
|
<label class="col-sm-3 col-form-label-sm text-start" th:text="${trInfo.naturalization}"></label>
|
||||||
</div>
|
</div>
|
||||||
<div class="row mb-1">
|
|
||||||
<label class="col-sm-1 col-form-label-sm text-center">나이</label>
|
|
||||||
<label class="col-sm-3 col-form-label-sm text-start" th:text="${trInfo.trAge}"></label>
|
|
||||||
<label class="col-sm-1 col-form-label-sm text-center">학력</label>
|
|
||||||
<label class="col-sm-3 col-form-label-sm text-start">
|
|
||||||
<th:block th:each="code:${session.commonCode.get('EDU')}">
|
|
||||||
<th:block th:if="${code.itemCd eq trInfo.trEdu}" th:text="${code.itemValue}"></th:block>
|
|
||||||
</th:block>
|
|
||||||
</label>
|
|
||||||
<label class="col-sm-1 col-form-label-sm text-center">자격증</label>
|
|
||||||
<label class="col-sm-3 col-form-label-sm text-start" th:text="${trInfo.trCft}"></label>
|
|
||||||
</div>
|
|
||||||
<div class="row mb-1">
|
<div class="row mb-1">
|
||||||
<label class="col-sm-1 col-form-label-sm text-center">비자</label>
|
<label class="col-sm-1 col-form-label-sm text-center">비자</label>
|
||||||
<label class="col-sm-3 col-form-label-sm text-start">
|
<label class="col-sm-3 col-form-label-sm text-start">
|
||||||
|
|
@ -71,8 +71,8 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="row mb-1">
|
<div class="row mb-1">
|
||||||
<label class="col-sm-2 col-form-label-sm text-center">개인정보 동의 여부</label>
|
<label class="col-sm-2 col-form-label-sm text-center">개인정보 동의 여부</label>
|
||||||
<label class="col-sm-2 col-form-label-sm text-start" th:text="${trInfo.infoShareChk eq 'T'?'O':'X'}"></label>
|
<label class="col-sm-1 col-form-label-sm text-start" th:text="${trInfo.infoShareChk eq 'T'?'O':'X'}"></label>
|
||||||
<label class="col-sm-1 col-form-label-sm text-center">동의서</label>
|
<label class="col-sm-2 col-form-label-sm text-center">동의서</label>
|
||||||
<label class="col-sm-7 col-form-label-sm text-start">
|
<label class="col-sm-7 col-form-label-sm text-start">
|
||||||
<th:block th:each="file:${trInfo.translatorFileList}">
|
<th:block th:each="file:${trInfo.translatorFileList}">
|
||||||
<th:block th:if="${file.fileSeq eq 2}">
|
<th:block th:if="${file.fileSeq eq 2}">
|
||||||
|
|
@ -82,6 +82,12 @@
|
||||||
</th:block>
|
</th:block>
|
||||||
</label>
|
</label>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="row mb-1">
|
||||||
|
<label class="col-sm-2 col-form-label-sm text-center">교육이수 여부</label>
|
||||||
|
<label class="col-sm-1 col-form-label-sm text-start" th:text="${trInfo.infoShareChk eq 'T'?'O':'X'}"></label>
|
||||||
|
<label class="col-sm-2 col-form-label-sm text-center">교육이수일</label>
|
||||||
|
<label class="col-sm-7 col-form-label-sm text-start" th:text="${#temporals.format(trInfo.eduDate, 'yyyy-MM-dd HH:mm')}"></label>
|
||||||
|
</div>
|
||||||
<div class="row mb-1">
|
<div class="row mb-1">
|
||||||
<label class="col-sm-1 col-form-label-sm text-center">비고</label>
|
<label class="col-sm-1 col-form-label-sm text-center">비고</label>
|
||||||
<label class="col-sm-11 col-form-label-sm text-start" th:text="${trInfo.remark}"></label>
|
<label class="col-sm-11 col-form-label-sm text-start" th:text="${trInfo.remark}"></label>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue