diff --git a/BO/Views/croom/payrefund.cshtml b/BO/Views/croom/payrefund.cshtml
index cb34851..335a785 100644
--- a/BO/Views/croom/payrefund.cshtml
+++ b/BO/Views/croom/payrefund.cshtml
@@ -59,8 +59,8 @@
@d.itemname |
@string.Format("{0}({1})", d.username, d.userid) |
@d.payamt.ToString("#,0") |
- 0 ? "disabled" : "") value="@d.refundamt" /> |
- 0 ? "disabled" : "") value="@(d.refundtime == null ? "" : d.refundtime.Value.ToString("yyyy-MM-dd"))" style="width: 100px;" /> |
+ 0 ? "disabled" : "") value="@(d.refundamt == 0 ? d.payamt : d.refundamt)" /> |
+ 0 ? "disabled" : "") value="@(d.refundtime == null ? DateTime.Now.ToString("yyyy-MM-dd") : d.refundtime.Value.ToString("yyyy-MM-dd"))" style="width: 100px;" /> |
0 ? "disabled" : "") value="@d.refundinfo" /> |
@Html.Partial("./Partial/Select", null, new ViewDataDictionary { { "valuetext", "0:수강유지;1:수강취소" }, { "name", "refundstatus" + d.pino }@*, { "disabled" + (d.rstatus > 0 ? "" : "x"), 1 }*@, { "class", "refundstatus" }, { "selected", d.rstatus == 0 ? "0" : d.refundstatus.ToString() } }) |