This commit is contained in:
parent
b1c62dddce
commit
3657d943cc
|
|
@ -209,6 +209,7 @@
|
||||||
<Content Include="Content\BSFileInput\fileinput.css" />
|
<Content Include="Content\BSFileInput\fileinput.css" />
|
||||||
<Content Include="Content\BSFileInput\fileinput.js" />
|
<Content Include="Content\BSFileInput\fileinput.js" />
|
||||||
<Content Include="Content\BSFileInput\fileinput.min.js" />
|
<Content Include="Content\BSFileInput\fileinput.min.js" />
|
||||||
|
<Content Include="Content\emailForm\template_email.html" />
|
||||||
<Content Include="Content\emailForm\template_email_3.html" />
|
<Content Include="Content\emailForm\template_email_3.html" />
|
||||||
<Content Include="Content\img\ico_6.gif" />
|
<Content Include="Content\img\ico_6.gif" />
|
||||||
<Content Include="Content\smarteditor\css\en_US\smart_editor2.css" />
|
<Content Include="Content\smarteditor\css\en_US\smart_editor2.css" />
|
||||||
|
|
@ -672,6 +673,7 @@
|
||||||
<Content Include="Views\croom\taxsmart.cshtml" />
|
<Content Include="Views\croom\taxsmart.cshtml" />
|
||||||
<Content Include="Views\cm\cmregeduschedule.cshtml" />
|
<Content Include="Views\cm\cmregeduschedule.cshtml" />
|
||||||
<Content Include="Views\croom\cmstandbylects.cshtml" />
|
<Content Include="Views\croom\cmstandbylects.cshtml" />
|
||||||
|
<Content Include="Views\croom\Documents.cshtml" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Folder Include="App_Data\" />
|
<Folder Include="App_Data\" />
|
||||||
|
|
|
||||||
|
|
@ -788,6 +788,11 @@ namespace NP.BO.Controllers
|
||||||
vm.addstringval2 = vm.addstringval2 ?? DateTime.Now.ToString("yyyy-MM-dd");
|
vm.addstringval2 = vm.addstringval2 ?? DateTime.Now.ToString("yyyy-MM-dd");
|
||||||
return View(vm);
|
return View(vm);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ActionResult Documents(VMCRoom vm)
|
||||||
|
{
|
||||||
|
return View(vm);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@
|
||||||
if ('@(ViewBag.ret)' == '0') {
|
if ('@(ViewBag.ret)' == '0') {
|
||||||
if ('@(RSLT_CD)' == 'B000') {
|
if ('@(RSLT_CD)' == 'B000') {
|
||||||
//이름일치 확인
|
//이름일치 확인
|
||||||
if ("@(RSLT_NAME)" == $(opener.document).find("#mform").find("#username").val()) {
|
if (@(RSLT_NAME) == $(opener.document).find("#mform").find("#username").val()) {
|
||||||
$(opener.document).find("#mform").find("#intval2").val(1);
|
$(opener.document).find("#mform").find("#intval2").val(1);
|
||||||
$(opener.document).find("#mform").find("#mobile").val("@(TEL_NO)".replaceAll("-", ""));
|
$(opener.document).find("#mform").find("#mobile").val("@(TEL_NO)".replaceAll("-", ""));
|
||||||
$(opener.document).find("#mform").find("#mobilestr").text("@(TEL_NO)".replaceAll("-", ""));
|
$(opener.document).find("#mform").find("#mobilestr").text("@(TEL_NO)".replaceAll("-", ""));
|
||||||
|
|
|
||||||
|
|
@ -823,7 +823,7 @@ namespace NP.Model
|
||||||
case 43:
|
case 43:
|
||||||
case 52:
|
case 52:
|
||||||
return "수강취소";
|
return "수강취소";
|
||||||
case 51: return "대기중";
|
case 55: return "대기중";
|
||||||
default: return "-";
|
default: return "-";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue