This commit is contained in:
hyunho 2020-12-28 01:55:49 +00:00
parent 6f7f99f90c
commit 5dc4de3481
2 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@
<header class="panel-heading"><strong><i class="fa fa-bars"></i> 검토결과<span class=""></span></strong></header>
<table class="regtable" style="margin-top: 0;">
<colgroup><col style="width: 150px" /><col /></colgroup>
<tr><th>검토상태</th><td>@Html.Partial("./Partial/Radio", r.rstatus, new ViewDataDictionary() { { "valuetext", "0:접수(검토중);2:환불완료;1:환불거절" }, { "checked", r.rstatus }, { "name", "rstatus" } })</td></tr>
<tr><th>검토상태</th><td>@Html.Partial("./Partial/Radio", r.rstatus, new ViewDataDictionary() { { "valuetext", "0:접수(검토중);2:환불완료;1:환불거절;4:취소" }, { "checked", r.rstatus }, { "name", "rstatus" } })</td></tr>
<tr><th>검토의견</th><td><input type="text" class="form-control" id="rback" name="rback" value="@r.rback" /></td></tr>
</table>
</form>

View File

@ -948,7 +948,7 @@ namespace NP.Model
{
get
{
return rstatus == 0 ? "검토중" : rstatus == 1 ? "환불거절" : rstatus == 2 ? "환불완료" : "?";
return rstatus == 0 ? "검토중" : rstatus == 1 ? "환불거절" : rstatus == 2 ? "환불완료" : rstatus == 4? "취소" :"?";
}
}
/// <summary>