Browse Source

환자관리 리스트 상태검색조건 텍스트 수정

huiwonseo 4 years ago
parent
commit
cf79726608
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/main/webapp/WEB-INF/jsp/patient/list.jsp

+ 2 - 2
src/main/webapp/WEB-INF/jsp/patient/list.jsp

@@ -205,8 +205,8 @@ span.no-data{color:#999999;}
                                                 <td>
                                                     <select class="custom-select form-control" id="inputState" name="inputState">
                                                         <option value="ALL">전체</option>
-                                                        <option value="H" <c:if test="${inputState eq 'H'}"> selected="selected"</c:if>>입소</option>
-                                                        <option value="D" <c:if test="${inputState eq 'D'}"> selected="selected"</c:if>>퇴소</option>
+                                                        <option value="H" <c:if test="${inputState eq 'H'}"> selected="selected"</c:if>>입소(지정)</option>
+                                                        <option value="D" <c:if test="${inputState eq 'D'}"> selected="selected"</c:if>>퇴소(해제)</option>
                                                         <option value="T" <c:if test="${inputState eq 'T'}"> selected="selected"</c:if>>지정병원 이송</option>
                                                         <option value="E" <c:if test="${inputState eq 'E'}"> selected="selected"</c:if>>기타</option>
                                                     </select></td>