From a9be605aa5efc5c398aa5d34e971d01a53e250e9 Mon Sep 17 00:00:00 2001 From: swpark Date: Tue, 21 Dec 2021 04:36:10 +0000 Subject: [PATCH] =?UTF-8?q?<=EC=88=98=EC=A0=95=EC=82=AC=ED=95=AD>?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. 결재내역 관련이슈 - 관리자 > 교육운영 > 결제내역 > 기본정보 탭 1) 계산서 신청이 없는 경우 계산서확인 칸에 '-' 로 출력 () 2) 최종합계 행 틀어짐 현상 수정 요청 3) 교육신청내역 [수정]버튼을 클릭시 나오는 팝업 내 교육기간 변경 부분을 '숨김(display none)' 처리 (교육운영>수강신청>상세>교육생명 클릭 => 교육생정보 팝업 도 동일처리 요청) # 커밋 파일 BO\Views\croom\cmlects.cshtml BO\Views\croom\payview.cshtml Model\Pay.cs # 테스트 결과 - 이상없음 # 특이사항 및 이슈사항 - 이상없음 --- BO/Views/croom/cmlects.cshtml | 2 +- BO/Views/croom/payview.cshtml | 6 +++--- Model/Pay.cs | 5 +++++ 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/BO/Views/croom/cmlects.cshtml b/BO/Views/croom/cmlects.cshtml index 322f4cd..1a0a788 100644 --- a/BO/Views/croom/cmlects.cshtml +++ b/BO/Views/croom/cmlects.cshtml @@ -167,7 +167,7 @@ 직위 이메일 휴대전화번호 - 교육기간@Html.Partial("./Partial/Date", (DateTime?)null, new ViewDataDictionary { { "name", "sdate" } }) ~ @Html.Partial("./Partial/Date", (DateTime?)null, new ViewDataDictionary { { "name", "edate" } })저장 + @*교육기간@Html.Partial("./Partial/Date", (DateTime?)null, new ViewDataDictionary { { "name", "sdate" } }) ~ @Html.Partial("./Partial/Date", (DateTime?)null, new ViewDataDictionary { { "name", "edate" } })저장*@ 경력증명서 심사여부@Html.Partial("./Partial/Radio", null, new ViewDataDictionary() { { "valuetext", "3:신청중;4:승인;5:미승인" }, { "checked", 3 }, { "name", "status" } }) diff --git a/BO/Views/croom/payview.cshtml b/BO/Views/croom/payview.cshtml index 2071ad4..64e92f5 100644 --- a/BO/Views/croom/payview.cshtml +++ b/BO/Views/croom/payview.cshtml @@ -191,9 +191,9 @@ } @if (p.isdvr == 1) { - - 택배비 : @(p.deliamt > 0 ? (p.deliamt.ToString("#,0") + " 원") : "직접수령") + - 택배비 : @(p.deliamt > 0 ? (p.deliamt.ToString("#,0") + " 원") : "직접수령") } - - 최종합계: @p.payamt.ToString("#,0") 원 + - 최종합계: @p.payamt.ToString("#,0") 원 @if (isexamready) { @@ -344,7 +344,7 @@ 직위 이메일 휴대전화번호 - 교육기간@Html.Partial("./Partial/Date", (DateTime?)null, new ViewDataDictionary { { "name", "sdate" } }) ~ @Html.Partial("./Partial/Date", (DateTime?)null, new ViewDataDictionary { { "name", "edate" } })저장 + @*교육기간@Html.Partial("./Partial/Date", (DateTime?)null, new ViewDataDictionary { { "name", "sdate" } }) ~ @Html.Partial("./Partial/Date", (DateTime?)null, new ViewDataDictionary { { "name", "edate" } })저장*@ 기술인분류 diff --git a/Model/Pay.cs b/Model/Pay.cs index 499f191..32289d6 100644 --- a/Model/Pay.cs +++ b/Model/Pay.cs @@ -45,6 +45,11 @@ namespace NP.Model { get { + if (taxtypename.Equals("-")) + { + return "-"; + } + return ischeck == 1 ? "확인" : "미확인"; } }