1. 병원장(id : boss)이 로그인할 경우 임직원 List 노출

2. 임직원이 로그인할 경우 근무기록 List 노출
3. 환자 외래 or 입원 예약 DB에 Input(pio_ok에 1값 입력) = 로그인 시 사용했던 ID, name값 해당 테이블에 저장
4. 환자 외래 or 입원 예약 기록 List 노출
5. 환자 건강검진 예약 DB에 Input (pt_state에 1값 입력) = 로그인 시 사용했던 ID, name값 해당 테이블에 저장
6. 환자 건강검진 예약 기록 List 노출
This commit is contained in:
mcutegs2
2020-06-28 03:56:19 +09:00
parent 78e29d6686
commit e7ade55c25
32 changed files with 1008 additions and 150 deletions

View File

@@ -32,6 +32,9 @@
<tr>
<th scope="col">아이디</th>
<th scope="col">이름</th>
<th scope="col">부서</th>
<th scope="col">직책</th>
<th scope="col">생년월일</th>
<th scope="col">주소</th>
<th scope="col">전화</th>
<th scope="col">성별</th>
@@ -43,6 +46,9 @@
<tr>
<td>${member.u_ID}</td>
<td>${member.u_name}</td>
<td>${member.u_divi}</td>
<td>${member.u_post}</td>
<td>${member.u_birth}</td>
<td>${member.u_addr}</td>
<td>${member.u_phone}</td>
<td>${member.u_gender}</td>