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 ? "확인" : "미확인";
}
}
|