Files
hospital-web-system/hospital/src/main/webapp/patientInout.jsp
mcutegs2 e7ade55c25 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 노출
2020-06-28 03:56:19 +09:00

82 lines
5.0 KiB
Plaintext

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<jsp:include page="patientMenu.jsp" />
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title> 외래 or 입원</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js" integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
<script type="text/javascript"></script>
</head>
<body>
<div class="container">
<div class="row">
<div class="col-12">
<br/>
<div><h1>외래 or 입원</h1></div>
<br/>
<div>
<form id="frm" name="frm" action="patientInoutCheck.do" method="post" onsubmit="return formDataCheck()">
<div>
<table class="table">
<tbody>
<tr>
<th scope="row">외래 or 입원</th>
<td>
<div class="custom-control custom-radio custom-control-inline">
<input class="custom-control-input" type="radio" id="out" name="pio_state" value="외래" checked>
<label class="custom-control-label" for="out">외래</label>
</div>
<div class="custom-control custom-radio custom-control-inline">
<input class="custom-control-input" type="radio" id="in" name="pio_state"value="입원">
<label class="custom-control-label" for="in">입원</label>
</div>
</td>
</tr>
<tr>
<th scope="row">병과</th>
<td>
<div class="custom-control custom-radio custom-control-inline">
<input class="custom-control-input" type="radio" id="divi-1" name="pio_divi" value="내과" checked>
<label class="custom-control-label" for="divi-1">내과</label>
</div>
<div class="custom-control custom-radio custom-control-inline">
<input class="custom-control-input" type="radio" id="divi-2" name="pio_divi"value="외과">
<label class="custom-control-label" for="divi-2">외과</label>
</div>
<div class="custom-control custom-radio custom-control-inline">
<input class="custom-control-input" type="radio" id="divi-3" name="pio_divi"value="안과">
<label class="custom-control-label" for="divi-3">안과</label>
</div>
<div class="custom-control custom-radio custom-control-inline">
<input class="custom-control-input" type="radio" id="divi-4" name="pio_divi"value="치과">
<label class="custom-control-label" for="divi-4">치과</label>
</div>
</td>
</tr>
<tr>
<th scope="row">예약일</th><td><input class="form-control" id="pio_date" name="pio_date" type="date" style="width:30%" maxlength="6"></td>
</tr>
<tr>
<th scope="row">예약시간</th><td><input class="form-control" id="pio_time" name="pio_time" type="time" style="width:30%" maxlength="6"></td>
</tr>
</tbody>
</table>
</div>
<div>
<br/>
<input class="btn btn-success" type="submit" value="예약하기" >&nbsp;&nbsp;<input class="btn btn-danger" type="reset" value="취소" >&nbsp;&nbsp;
<br/>
<br/>
</div>
</form>
</div>
</div>
</div>
</div>
</body>
</html>
<jsp:include page="tail.jsp" />