관리자95 대기현황 하드코딩
This commit is contained in:
parent
c59839d99d
commit
52f3f29e28
|
|
@ -41,10 +41,12 @@
|
||||||
@Html.Partial("./Partial/Text", Model.addstringval5, Helpers.DicText(new NP.Model.TextDic() { Name = "addstringval5", Value = Model.addstringval5, PH = "ID 또는 이름을 입력하세요.", CssClass = "", Style = "width:250px; display:inline-block;" }))
|
@Html.Partial("./Partial/Text", Model.addstringval5, Helpers.DicText(new NP.Model.TextDic() { Name = "addstringval5", Value = Model.addstringval5, PH = "ID 또는 이름을 입력하세요.", CssClass = "", Style = "width:250px; display:inline-block;" }))
|
||||||
<a href="#" class="btn btn-default" onclick="submit()" id="btnsearchtext2">검색</a>
|
<a href="#" class="btn btn-default" onclick="submit()" id="btnsearchtext2">검색</a>
|
||||||
<a href="#" class="btn btn-default" onclick="golist()">목록</a>
|
<a href="#" class="btn btn-default" onclick="golist()">목록</a>
|
||||||
|
@if (!ViewBag.IsSubAdmin96)
|
||||||
|
{
|
||||||
<a href="#" class="btn btn-danger" style="float:right;" onclick="save2(5)">선택취소</a>
|
<a href="#" class="btn btn-danger" style="float:right;" onclick="save2(5)">선택취소</a>
|
||||||
<a href="#" class="btn btn-success" style="float:right; margin-right:10px;" onclick="save2(4)">선택승인</a>
|
<a href="#" class="btn btn-success" style="float:right; margin-right:10px;" onclick="save2(4)">선택승인</a>
|
||||||
<a href="#" class="btn btn-default" style="float:right; margin-right:10px;" onclick="save2(6)">선택대기</a>
|
<a href="#" class="btn btn-default" style="float:right; margin-right:10px;" onclick="save2(6)">선택대기</a>
|
||||||
|
}
|
||||||
</div>
|
</div>
|
||||||
<div class="table-responsive" id="excel1">
|
<div class="table-responsive" id="excel1">
|
||||||
<table class="table table-striped b-t b-light">
|
<table class="table table-striped b-t b-light">
|
||||||
|
|
@ -63,6 +65,8 @@
|
||||||
</thead>
|
</thead>
|
||||||
<tbody class="data" id="tbody1">
|
<tbody class="data" id="tbody1">
|
||||||
@foreach (var d in Model.Lects)
|
@foreach (var d in Model.Lects)
|
||||||
|
{
|
||||||
|
if (!ViewBag.IsSubAdmin96)
|
||||||
{
|
{
|
||||||
<tr>
|
<tr>
|
||||||
<td>
|
<td>
|
||||||
|
|
@ -91,6 +95,36 @@
|
||||||
}
|
}
|
||||||
</tr>
|
</tr>
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
@if (d.pstatus == 21 || d.pstatus == 55 || d.pstatus == 52)
|
||||||
|
{
|
||||||
|
<input type="checkbox" class="autocheck" value="@d.lectno" data-lectno="@d.lectno" data-emailinfo="@(d.username):@(d.email)" />
|
||||||
|
}
|
||||||
|
</td>
|
||||||
|
<td>@d.rnorvt</td>
|
||||||
|
<td class="link text-center">@d.asname</td>
|
||||||
|
<td>@(d.cnoname)(@d.cnoid)</td>
|
||||||
|
<td class="link text-center">@d.username</td>
|
||||||
|
<td>@d.cdtymd</td>
|
||||||
|
<td>
|
||||||
|
@(d.pstatusname3)<br />
|
||||||
|
@(d.pstatusname3 != "대기중" ? "(" + d.oktime.ToString("yyyy-MM-dd HH:mm") + ")" : string.Empty)
|
||||||
|
</td>
|
||||||
|
<td class="link text-center">@d.pstatusname</td>
|
||||||
|
@if (d.cshape == 1 && d.isrebate == 1)
|
||||||
|
{
|
||||||
|
<td class="link text-center">@d.isrebatename</td>
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
<td>-</td>
|
||||||
|
}
|
||||||
|
</tr>
|
||||||
|
}
|
||||||
|
}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue