|
@@ -122,30 +122,36 @@ var endDate = "<c:out value='${endDate}'/>";
|
|
|
<fmt:formatNumber value="${total}" pattern="#,###" />
|
|
|
</div>
|
|
|
<div class="col-6 text-right">
|
|
|
- <button class="btn btn-primary" onclick="location.href='./new';">신규환자등록</button>
|
|
|
+ <c:if test="${sesGroupIdx ne '1'}">
|
|
|
+ <button class="btn btn-primary" onclick="location.href='./new';">신규환자등록</button>
|
|
|
+ </c:if>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="table-responsive">
|
|
|
<table class="table table-striped text-center">
|
|
|
<colgroup>
|
|
|
- <col style=" width: 12.5%; ">
|
|
|
- <col style=" width: 12.5%; ">
|
|
|
- <col style=" width: 12.5%; ">
|
|
|
- <col style=" width: 12.5%; ">
|
|
|
- <col style=" width: 12.5%; ">
|
|
|
-<%-- <col style=" width: 11.1%; "> --%>
|
|
|
- <col style=" width: 12.5%; ">
|
|
|
- <col style=" width: 12.5%; ">
|
|
|
- <col style=" width: 12.5%; ">
|
|
|
+ <col style=" width: 11.1%; ">
|
|
|
+ <c:if test="${sesGroupIdx eq '1'}">
|
|
|
+ <col style=" width: 11.1%; ">
|
|
|
+ </c:if>
|
|
|
+ <col style=" width: 11.1%; ">
|
|
|
+ <col style=" width: 11.1%; ">
|
|
|
+ <col style=" width: 11.1%; ">
|
|
|
+ <col style=" width: 11.1%; ">
|
|
|
+ <col style=" width: 11.1%; ">
|
|
|
+ <col style=" width: 11.1%; ">
|
|
|
+ <col style=" width: 11.1%; ">
|
|
|
</colgroup>
|
|
|
<thead>
|
|
|
<tr>
|
|
|
<th>번호</th>
|
|
|
+ <c:if test="${sesGroupIdx eq '1'}">
|
|
|
+ <th>생활치료센터명</th>
|
|
|
+ </c:if>
|
|
|
<th>환자명</th>
|
|
|
<th>성별</th>
|
|
|
<th>나이</th>
|
|
|
<th>호실</th>
|
|
|
-<!-- <th>최종진료일시</th> -->
|
|
|
<th>입소일자</th>
|
|
|
<th>격리해제 예정일</th>
|
|
|
<th>상태</th>
|
|
@@ -160,13 +166,15 @@ var endDate = "<c:out value='${endDate}'/>";
|
|
|
|
|
|
<tr>
|
|
|
<td><fmt:formatNumber value="${pageNum}" pattern="#,###" /></td>
|
|
|
+ <c:if test="${sesGroupIdx eq '1'}">
|
|
|
+ <td><c:out value="${l.centerName}" /></td>
|
|
|
+ </c:if>
|
|
|
<td>
|
|
|
<a href="${viewLink}"><c:out value="${l.patientName}" /></a>
|
|
|
</td>
|
|
|
<td><c:out value="${l.gender}" /></td>
|
|
|
<td><c:out value="${l.age}" /></td>
|
|
|
<td><c:out value="${l.wardNumber}동 ${l.roomNumber}호" /></td>
|
|
|
-<%-- <td><c:out value="${l.finamClinicDate}" /></td> --%>
|
|
|
<td><c:out value="${l.hospitalizationDate}" /></td>
|
|
|
<td>
|
|
|
<c:if test="${l.disisolationDate eq null or l.disisolationDate eq ''}">
|