<오류수정>

통합테스트목록 - {529}
Dao/MyBatis/Maps/CRoom.xml - "cr.myestimation"
FO/Views/CRoom/Estimation.cshtml
사용자 사이트 진도율 기간만료시 노출 오류
This commit is contained in:
kdh0120 2021-11-09 23:51:13 +00:00
parent 8eafc5310b
commit 5526541634
1 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@
<div class="evaList">
<table>
<tbody>
@foreach (var d in Model.Datas)
@foreach (var d in Model.Datas.Where(w=>w.dtype > -1))
{
<tr>
<th>
@ -26,13 +26,13 @@
class="evaType@(d.intval4==1?"04":d.intval3==1?"03":d.intval3==0 && d.intval >=d.intval2?"02":"01")">@(d.intval4 == 1 ? "[평가완료]" : d.intval3 == 1 ? "[참여완료]" : d.intval3 == 0 && d.intval >=d.intval2 ? "[참여가능]" : "[참여불가]")</a></td>
</tr>
}
@if (Model.Datas.Count() < 1)
@if (Model.Datas.Where(w => w.dtype > -1).Count() < 1)
{
<tr><th colspan="2" style="text-align: center; font-weight: normal; height: 100px;">- 평가할 항목이 없습니다.</th></tr>
}
else
{
<tr><th colspan="2" style="text-align: center; font-weight: normal; height: 100px;">현재 진도율: @Model.Datas.First().intval %</th></tr>
<tr><th colspan="2" style="text-align: center; font-weight: normal; height: 100px;">현재 진도율: @Model.Datas.Where(w=>w.dtype == -1).First().intval5 %</th></tr>
}
</tbody>
</table>