320 lines
13 KiB
Plaintext
320 lines
13 KiB
Plaintext
@model NP.Model.VMCourse
|
|
<form id="applyEduForm" method="post">
|
|
<input type="hidden" name="cmno" id="cmno" value="@Model.cmno" /> @*강좌번호*@
|
|
<input type="hidden" name="stringval" id="stringval" value="@Model.stringval" /> @*법정교육/기타교육*@
|
|
<input type="hidden" name="stringval2" id="stringval2" value="@Model.stringval2" />@*교육유형*@
|
|
<input type="hidden" name="stringval3" id="stringval3" value="@Model.stringval3" />@*기술인분류*@
|
|
<input type="hidden" name="stringval4" id="stringval4" value="@Model.stringval4" />@*교육목적*@
|
|
<input type="hidden" name="stringval5" id="stringval5" value="@Model.stringval5" />@*등급*@
|
|
<input type="hidden" name="stringval6" id="stringval6" value="@Model.stringval6" />@*직무분야*@
|
|
<input type="hidden" name="scdMonth" id="scdMonth" value="@Model.scdMonth" />@*교육일정 month*@
|
|
<h4 class="clsTitle">신청강좌</h4>
|
|
<ul class="smtList mt0">
|
|
<li>
|
|
<ul class="smtlChk">
|
|
<li>
|
|
@if (Model.CM.cshape == 0)
|
|
{
|
|
<p><label>@(Model.CM.tseq)기 <span class='gry'>@(Model.CM.rsrename) (@(Model.CM.rsretimeToDay)일) </span> @Model.CM.cname<span class='red'> | @(Model.CM.infee)원</span></label></p>
|
|
}
|
|
else if (Model.CM.cshape == 1)
|
|
{
|
|
<p><label>@(Model.CM.tseq)기 <span class='blu'>[@(Model.CM.studyplacename) 교육장] </span><span class='gry'>@Model.CM.rsrename (@(Model.CM.rsretimeToDay)일) </span> @Model.CM.cname<span class='red'> | @(Model.CM.infee)원</span></label></p>
|
|
}
|
|
else if (Model.CM.cshape == 2)
|
|
{
|
|
<p><label>@(Model.CM.tseq)기 <span class='gry'>@(Model.CM.rsrename) (@(Model.CM.rsretimeToDay)일) </span> @Model.CM.cname<span class='red'> | @(Model.CM.infee)원 ※ 집체교육 선택 필수</span></label></p>
|
|
}
|
|
|
|
@if (Model.CM.applicableCM == "정상접수")
|
|
{
|
|
<span class="smtlChkBtn smtlChk01">정상접수</span>
|
|
}
|
|
else
|
|
{
|
|
<span class="smtlChkBtn smtlChk02">대기접수</span>
|
|
}
|
|
</li>
|
|
</ul>
|
|
<div class="apyCost">
|
|
결제금액 : <span class="red">@Model.CM.infee</span> 원
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
|
|
@if (Model.CM.cshape == 2)
|
|
{
|
|
<h4 class="clsTitle">교육일정선택</h4>
|
|
<select id="selMonth">
|
|
@for (int i = 1; i <= 12; i++)
|
|
{
|
|
<option @(DateTime.Now.Month == i ? "selected" : "") value="@(i)">@(i)월</option>
|
|
}
|
|
</select>
|
|
<span> ※지정하신 일자가 수료일자가 됩니다.</span>
|
|
<br /><br />
|
|
<ul>
|
|
@foreach (var item in Model.CMInningscds)
|
|
{
|
|
if (item.remainPeople <= 0)
|
|
{
|
|
<li><input type="radio" name="rdoScds" id="rdo_@item.cmisno"> @item.scdInfoSummary<label style="color:red"> (종료)</label></li>
|
|
}
|
|
else
|
|
{
|
|
<li><input type="radio" name="rdoScds" id="rdo_@item.cmisno"> @item.scdInfoSummary<label style="color:red"> (@(item.remainPeople)명 남음)</label></li>
|
|
|
|
}
|
|
}
|
|
</ul>
|
|
}
|
|
|
|
@if (Model.CM.cshape == 1)
|
|
{
|
|
<h4 class="clsTitle">교육비 지원</h4>
|
|
<table class="clsTable">
|
|
<tbody>
|
|
<tr>
|
|
<th>교육비 지원</th>
|
|
<td>
|
|
<ul class="bakRadio">
|
|
<li><input type="radio" name="rdoRefund" id="rdoRefund01" checked><label for="rdoRefund01">환급</label></li>
|
|
<li><input type="radio" name="rdoRefund" id="rdoRefund02"><label for="rdoRefund02">비환급</label></li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<p class="subDsc mt10">※ 고용보험에 가입되어 있는 재직자의 경우에만 교육비 중 기준된 일정금액 환급이 가능 하며 대표이사, 대표이사의 직계가족 또는 고용보험 미 가입자는 환급이 불가 합니다.</p>
|
|
|
|
<div id="divRefundAccount" style="display:none">
|
|
<h4 class="clsTitle">환급 지급계좌 등록</h4>
|
|
<table class="clsTable">
|
|
<tbody>
|
|
<tr>
|
|
<th>은행명</th>
|
|
<td><input type="text" name="" id="" class="apyIpt" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>계좌번호</th>
|
|
<td><input type="text" name="" id="" class="apyIpt" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>예금주</th>
|
|
<td><input type="text" name="" id="" class="apyIpt" /></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<p class="subDsc mt10">※ 환급금액 지급받는 계좌이므로 반드시 소속된 사업장의 법인계좌정보만 입력하여 주시기 바랍니다. (개인계좌 또는 사업주 개인의 계좌로는 환급이 불가합니다)</p>
|
|
</div>
|
|
|
|
}
|
|
<div id="postlayer" class="daumpost"><a href="#" class="btn btn-xxs btn-select closedaumpost" onclick="closeDaumPostcode();">close</a></div>
|
|
<h4 class="clsTitle">회사정보 확인</h4>
|
|
<table class="clsTable">
|
|
<tbody>
|
|
<tr>
|
|
<th>회사명</th>
|
|
<td><input type="text" name="" id="" class="apyIpt" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>사업자등록번호</th>
|
|
<td><input type="text" name="" id="" class="apyIpt" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>대표자성명</th>
|
|
<td><input type="text" name="" id="" class="apyIpt" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>주소</th>
|
|
<td>
|
|
<ul class="apyAddr">
|
|
<li><input type="text" name="" id=""></li>
|
|
<li><input type="text" name="" id=""></li>
|
|
<li><input type="text" name="" id=""></li>
|
|
<li>
|
|
<a href="#" onclick="getpost2(this);">우편번호검색</a>
|
|
</li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>업태</th>
|
|
<td><input type="text" name="" id="" class="apyIpt" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>종목</th>
|
|
<td><input type="text" name="" id="" class="apyIpt" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>고용보험관리번호</th>
|
|
<td><input type="text" name="" id="" class="apyIpt" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>담당자성명</th>
|
|
<td><input type="text" name="" id="" class="apyIpt" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>담당자연락처</th>
|
|
<td>
|
|
<ul class="usrPhn">
|
|
<li>
|
|
<select name="" id="">
|
|
<option value="010" selected="">010</option>
|
|
<option value=""></option>
|
|
</select>
|
|
</li>
|
|
<li>-</li>
|
|
<li><input type="tel" name="" id=""></li>
|
|
<li>-</li>
|
|
<li><input type="tel" name="" id=""></li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>계산서받을 이메일</th>
|
|
<td>
|
|
<ul class="clsMail">
|
|
<li><input type="text" name="" id=""></li>
|
|
<li></li>
|
|
<li><input type="text" name="" id=""></li>
|
|
<li>
|
|
<select name="" id="">
|
|
<option value="" selected="">선택</option>
|
|
<option value=""></option>
|
|
</select>
|
|
</li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<h4 class="clsTitle">개인정보 확인</h4>
|
|
<table class="clsTable">
|
|
<tbody>
|
|
<tr>
|
|
<th>이름</th>
|
|
<td><p>홍길동</p></td>
|
|
</tr>
|
|
<tr>
|
|
<th>주민등록번호</th>
|
|
<td>
|
|
<ul class="usrNum">
|
|
<li><input type="tel" name="" id="" /></li>
|
|
<li>-</li>
|
|
<li><input type="tel" name="" id="" /></li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>휴대전화</th>
|
|
<td>
|
|
<ul class="usrPhn">
|
|
<li>
|
|
<select name="" id="">
|
|
<option value="010" selected="">010</option>
|
|
<option value=""></option>
|
|
</select>
|
|
</li>
|
|
<li>-</li>
|
|
<li><input type="tel" name="" id=""></li>
|
|
<li>-</li>
|
|
<li><input type="tel" name="" id=""></li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>이메일</th>
|
|
<td>
|
|
<ul class="clsMail">
|
|
<li><input type="text" name="" id=""></li>
|
|
<li></li>
|
|
<li><input type="text" name="" id=""></li>
|
|
<li>
|
|
<select name="" id="">
|
|
<option value="" selected="">선택</option>
|
|
<option value=""></option>
|
|
</select>
|
|
</li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>주소</th>
|
|
<td>
|
|
<ul class="apyAddr">
|
|
<li><input type="text" name="" id=""></li>
|
|
<li><input type="text" name="" id=""></li>
|
|
<li><input type="text" name="" id=""></li>
|
|
<li>
|
|
<a href="#" onclick="getpost2(this);">우편번호검색</a>
|
|
</li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>채용형태</th>
|
|
<td>
|
|
<ul class="bakRadio">
|
|
<li><input type="radio" name="recruit" id="recruit01"><label for="recruit01">정규직</li>
|
|
<li><input type="radio" name="recruit" id="recruit02"><label for="recruit02">비정규직</li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>직위</th>
|
|
<td><input type="text" name="" id="" class="apyIpt" /></td>
|
|
</tr>
|
|
<tr>
|
|
<th>학력</th>
|
|
<td>
|
|
<ul class="bakRadio">
|
|
<li><input type="radio" name="edu" id="edu01"><label for="edu01">고졸</li>
|
|
<li><input type="radio" name="edu" id="edu02"><label for="edu02">학사</li>
|
|
<li><input type="radio" name="edu" id="edu03"><label for="edu03">석사</li>
|
|
<li><input type="radio" name="edu" id="edu04"><label for="edu04">박사</li>
|
|
<li><input type="radio" name="edu" id="edu05"><label for="edu05">기타</li>
|
|
</ul>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<ul class="clsBtn solo">
|
|
<li><a href="#">수강신청</a></li>
|
|
</ul>
|
|
|
|
</form>
|
|
@section scriptsHeader{
|
|
@Html.Partial("./Partial/ScriptPost")
|
|
}
|
|
<script type="text/javascript">
|
|
$(document).ready(function () {
|
|
initControl();
|
|
$("#selMonth").change(function () {
|
|
$("#scdMonth").val($("#selMonth").val());
|
|
$("#applyEduForm").submit();
|
|
});
|
|
|
|
$("input[name='rdoRefund']").change(function () {
|
|
refundAccountShowHide();
|
|
});
|
|
|
|
|
|
});
|
|
function initControl() {
|
|
$("#selMonth").val(@Model.scdMonth);
|
|
refundAccountShowHide();
|
|
}
|
|
function refundAccountShowHide() {
|
|
if ($("#rdoRefund01").prop("checked")) {
|
|
$("#divRefundAccount").show();
|
|
}
|
|
else {
|
|
$("#divRefundAccount").hide();
|
|
}
|
|
}
|
|
</script>
|