new.jsp 42 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580
  1. <%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
  2. <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
  3. <%@ taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"%>
  4. <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
  5. <jsp:include page="${data._INCLUDE}/header.jsp"></jsp:include>
  6. <script type="text/javascript">
  7. function patientNewInit() {
  8. if( $( "#basalN" ).is( ":checked" ) ) {
  9. $( "td.basalDisease input" ).prop( "disabled", true );
  10. }
  11. $( "label.label-readonly-check" ).each( function( i, v ){
  12. var $this = $(v);
  13. var checkbox = $this.find( "input[type='checkbox']" );
  14. var textbox = $this.find( "input[type='text']" );
  15. if( !checkbox.is(":checked") ){
  16. textbox.prop( "readonly", true );
  17. }
  18. });
  19. };
  20. function setEventHandler(){
  21. //체크yes시 content입력 처리
  22. $( "label.label-readonly-check input[type='checkbox']" ).on( "click", function(){
  23. var $this = $( this );
  24. $this.closest( "label" ).find( "input[type='text']" ).prop( "readonly", $this.is( ":checked" ) === false );
  25. if( $this.is( ":checked" ) === false ) {
  26. $this.closest( "label" ).find( "input[type='text']" ).val( "" );
  27. } else {
  28. $this.closest( "label" ).find( "input[type='text']" ).focus();
  29. };
  30. });
  31. //기저질환유무 처리
  32. $( "input[name='basalDiseaseYn']" ).on( "click", function(){
  33. var $this = $( this );
  34. if( $this.val() == "Y" ){
  35. patientNewInit();
  36. $( ".basalDisease input" ).prop( "disabled", false );
  37. } else {
  38. $( "td.basalDisease input" ).prop( "disabled", true );
  39. $( "td.basalDisease input[type='checkbox']" ).prop( "checked", false );
  40. $( "td.basalDisease input[type='text']" ).val( "" );
  41. }
  42. });
  43. $( "input[name='pregnancyStatus']" ).on( "click", function(){
  44. var $this = $( this );
  45. console.log("!@#!@# -- > " + $this.val());
  46. if ($this.val() == "Y") {
  47. $("#pregnancyWeek").prop("disabled", false);
  48. } else {
  49. $("#pregnancyWeek").prop("disabled", true);
  50. $("#pregnancyWeek").val("");
  51. }
  52. });
  53. //입소일시
  54. $( ".hospitalizationDate" ).on( "change", function(){
  55. var ymd = $( "#hospitalizationDateYmd" ).val();
  56. var hour = $( "#hospitalizationDateHour" ).val();
  57. var min = $( "#hospitalizationDateMin" ).val();
  58. hour = Number(hour) < 10 ? "0" + hour : hour;
  59. min = Number(min) < 10 ? "0" + min : min;
  60. $( "#hospitalizationDate" ).val( ymd + " " + hour + ":" + min + ":00" );
  61. });
  62. //생년월일
  63. $( ".select-date" ).on( "change", function(){
  64. var $this = $( this );
  65. var wrap = $this.closest( "div.date" );
  66. var dateYear = wrap.find( ".date-year" ).val();
  67. var dateMonth = wrap.find( ".date-month" ).val();
  68. var dateDay = wrap.find( ".date-day" ).val();
  69. dateMonth = Number(dateMonth) < 10 ? "0" + dateMonth : dateMonth;
  70. dateDay = Number(dateDay) < 10 ? "0" + dateDay : dateDay;
  71. wrap.find( "input.error-box" ).val( dateYear + "-" + dateMonth + "-" + dateDay );
  72. });
  73. }
  74. $( function(){
  75. patientNewInit();
  76. setEventHandler();
  77. $( "input.date" ).daterangepicker({
  78. singleDatePicker : true,
  79. showDropdowns : true,
  80. locale : {
  81. //format : "M/DD hh:mm A"
  82. format : "YYYY-MM-DD"
  83. }
  84. });
  85. $( "#patientForm" ).validate({
  86. rules: {
  87. hospitalizationDate : {
  88. dateTime : true
  89. },
  90. patientPhone : {
  91. phoneValid : true
  92. },
  93. guardianPhone : {
  94. phoneValid : true
  95. },
  96. jumin : {
  97. date : true
  98. }
  99. },
  100. messages : {
  101. // jumin : "생년월일을 모두 선택해주세요",
  102. gender: "성별을 선택해주세요",
  103. wardNumber : "동을 입력해주세요",
  104. roomNumber : "호실을 입력해주세요",
  105. hospitalizationDate : {
  106. dateTime:"입소일시를 선택해주세요"
  107. }
  108. },
  109. onkeyup: function( element, event ) {
  110. $( element ).valid();
  111. },
  112. onfocusout: function (element) {
  113. $( element ).val( $.trim( $( element ).val() ) );
  114. $( element ).valid();
  115. },
  116. errorPlacement: function(error, element) {
  117. if (element.attr("type") == "radio") {
  118. error.insertBefore(element);
  119. } else {
  120. error.insertAfter(element);
  121. }
  122. },
  123. submitHandler: function(form) {
  124. form.submit();
  125. }
  126. });
  127. });
  128. </script>
  129. </head>
  130. <body>
  131. <div class="wrapper">
  132. <jsp:include page="${data._INCLUDE}/sidebar.jsp"></jsp:include>
  133. <div class="main">
  134. <jsp:include page="${data._INCLUDE}/top.jsp"></jsp:include>
  135. <main class="content">
  136. <div class="container-fluid p-0">
  137. <!-- 환자관리 : 신규환자 등록 START -->
  138. <div class="row">
  139. <div class="col-12 col-lg-6">
  140. <h1 class="h3 mb-3">환자정보등록</h1>
  141. </div>
  142. <div class="col-12 col-lg-6 text-right">
  143. <nav aria-label="breadcrumb">
  144. <ol class="breadcrumb">
  145. <li class="breadcrumb-item"><a href="javscript:;">Home</a></li>
  146. <li class="breadcrumb-item">환자관리</li>
  147. <li class="breadcrumb-item active">환자정보 등록</li>
  148. </ol>
  149. </nav>
  150. </div>
  151. </div>
  152. <div class="row">
  153. <div class="col-12">
  154. <div class="card">
  155. <div class="card-body">
  156. <c:if test="${centerCount eq 0}">
  157. <table class="table mobile-table">
  158. <tr>
  159. <th>치료센터</th>
  160. <td class="text-danger">등록된 생활치료센터가 없습니다. <br/>생활치료센터 신규 등록을 해주세요. </td>
  161. </tr>
  162. </table>
  163. </c:if>
  164. <c:if test="${centerCount > 0}">
  165. <c:set var="now" value="<%=new java.util.Date()%>" />
  166. <c:set var="action" value="/patient/new/insert" />
  167. <form id="patientForm" action="${action}" method="post">
  168. <table class="table mobile-table">
  169. <colgroup>
  170. <col style="width:15%">
  171. <col style="width:35%">
  172. <col style="width:15%">
  173. <col style="width:35%">
  174. </colgroup>
  175. <tr>
  176. <th>치료센터</th>
  177. <td><c:out value="${centerName}"/></td>
  178. <th><span class="fix">*</span>입소일시</th>
  179. <td colspan="2">
  180. <div class="form-row">
  181. <!-- 입소일시 -->
  182. <c:set var="sysYmd"><fmt:formatDate value="${now}" pattern="yyyy-MM-dd" /></c:set>
  183. <c:set var="sysHour"><fmt:formatDate value="${now}" pattern="h" /></c:set>
  184. <c:set var="sysMin"><fmt:formatDate value="${now}" pattern="m" /></c:set>
  185. <div class="col-6 calendar-bar">
  186. <input class="form-control date hospitalizationDate" type="text" id="hospitalizationDateYmd">
  187. <i class="align-middle mr-2 fas fa-fw fa-calendar-alt"></i>
  188. </div>
  189. <div class="col-3">
  190. <select class="custom-select hospitalizationDate" id="hospitalizationDateHour">
  191. <option value="" selected="">시</option>
  192. <c:forEach var="h" begin="1" end="24" step="1">
  193. <option value="${h}" <c:if test="${sysHour eq h}">selected="selected"</c:if>>${h} 시</option>
  194. </c:forEach>
  195. </select>
  196. </div>
  197. <div class="col-3">
  198. <select class="custom-select hospitalizationDate" id="hospitalizationDateMin">
  199. <option value="" selected="">분</option>
  200. <c:forEach var="i" begin="0" end="59" step="1">
  201. <option value="${i}" <c:if test="${sysMin eq i}">selected="selected"</c:if>>${i} 분</option>
  202. </c:forEach>
  203. </select>
  204. </div>
  205. <input type="text" id="hospitalizationDate" name="hospitalizationDate" class="error-box" required>
  206. </div>
  207. </td>
  208. </tr>
  209. <tr>
  210. <th><span class="fix">*</span>병동 번호</th>
  211. <td>
  212. <div class="form-check-inline">
  213. <!-- 병동 번호 (동 /호실) -->
  214. <input type="text" class="form-control" name="wardNumber" required> <span>동</span>
  215. <input type="text" class="form-control" name="roomNumber" required> <span>호</span>
  216. </div>
  217. </td>
  218. <th><span class="fix">*</span>이름</th>
  219. <td>
  220. <!-- 환자 이름 -->
  221. <input type="text" name="patientName" class="form-control" placeholder="이름을 입력해주세요" required>
  222. </td>
  223. </tr>
  224. <tr>
  225. <th><span class="fix">*</span>성별</th>
  226. <td>
  227. <!-- 성별 -->
  228. <label class="form-check form-check-inline">
  229. <input class="form-check-input" type="radio" name="gender" value="M" required>
  230. <span class="form-check-label">남</span>
  231. </label>
  232. <label class="form-check form-check-inline">
  233. <input class="form-check-input" type="radio" name="gender" value="F" required>
  234. <span class="form-check-label">여</span>
  235. </label>
  236. </td>
  237. <th><span class="fix">*</span>생년월일</th>
  238. <td>
  239. <!-- 생년월일 -->
  240. <div class="form-row date">
  241. <div class="col-4">
  242. <c:set var="sysYear"><fmt:formatDate value="${now}" pattern="yyyy" /></c:set>
  243. <select class="custom-select select-date date-year">
  244. <option value="" selected="">년</option>
  245. <c:forEach var="y" begin="1900" end="${sysYear}" step="1">
  246. <option value="${y}">${y} 년</option>
  247. </c:forEach>
  248. </select>
  249. </div>
  250. <div class="col-4">
  251. <select class="custom-select select-date date-month">
  252. <option value="" selected="">월</option>
  253. <c:forEach var="m" begin="1" end="12" step="1">
  254. <option value="${m}">${m} 월</option>
  255. </c:forEach>
  256. </select>
  257. </div>
  258. <div class="col-4">
  259. <select class="custom-select select-date date-day">
  260. <option value="" selected="">일</option>
  261. <c:forEach var="d" begin="1" end="31" step="1">
  262. <option value="${d}">${d} 일</option>
  263. </c:forEach>
  264. </select>
  265. </div>
  266. <input type="text" class="error-box" id="jumin" name="jumin" required>
  267. </div>
  268. </td>
  269. </tr>
  270. <tr>
  271. <th><span class="fix">*</span>연락처</th>
  272. <td>
  273. <input type="text" name="patientPhone" class="form-control" placeholder="연락처를 입력해주세요" required>
  274. </td>
  275. <th>보호자 연락처</th>
  276. <td>
  277. <input type="text" name="guardianPhone" class="form-control" placeholder="보호자 연락처를 입력해주세요">
  278. </td>
  279. </tr>
  280. <tr>
  281. <th><span class="fix">*</span>증상시작일</th>
  282. <td>
  283. <div class="form-group calendar-bar mb-xl-0">
  284. <input class="form-control date" type="text" name="symptomStartDate">
  285. <i class="align-middle mr-2 fas fa-fw fa-calendar-alt"></i>
  286. </div>
  287. </td>
  288. <th><span class="fix">*</span>확진일</th>
  289. <td>
  290. <div class="form-group calendar-bar mb-xl-0">
  291. <input class="form-control date" type="text" name="confirmationDate">
  292. <i class="align-middle mr-2 fas fa-fw fa-calendar-alt"></i>
  293. </div>
  294. </td>
  295. </tr>
  296. <tr>
  297. <th>격리해제 예정일</th>
  298. <td colspan="3">
  299. <div class="form-group calendar-bar mb-xl-0">
  300. <input class="form-control date" type="text" name="disisolationDate">
  301. <i class="align-middle mr-2 fas fa-fw fa-calendar-alt"></i>
  302. </div>
  303. </td>
  304. </tr>
  305. <tr>
  306. <th>최근약복용<br />(최근 24시간 이내)</th>
  307. <td>
  308. <label class="form-check form-check-inline">
  309. <input class="form-check-input" type="radio" value="N" name="drugYn" onclick="$('#drugContent').attr('readonly', true).val('');">
  310. <span class="form-check-label">미복용</span>
  311. </label>
  312. <label class="form-check form-check-inline">
  313. <input class="form-check-input" type="radio" value="Y" name="drugYn" onclick="$('#drugContent').removeAttr('readonly');">
  314. <span class="form-check-label">복용</span>
  315. </label>
  316. <label class="form-check form-check-inline">
  317. <input type="text" id="drugContent" class="form-control" name="drugContent" placeholder="약명을 입력하세요." readonly>
  318. </label>
  319. </td>
  320. <th>임신</th>
  321. <td>
  322. <label class="form-check form-check-inline">
  323. <input class="form-check-input" type="radio" name="pregnancyStatus" value="N">
  324. <span class="form-check-label">무</span>
  325. </label>
  326. <label class="form-check form-check-inline">
  327. <input class="form-check-input" type="radio" name="pregnancyStatus" value="Y">
  328. <span class="form-check-label">유</span>
  329. </label>
  330. <label class="form-check form-check-inline">
  331. <select class="custom-select" name="pregnancyWeek" id="pregnancyWeek" disabled>
  332. <option value="" selected="">임신 주차</option>
  333. <c:forEach var="p" begin="1" end="40" step="1">
  334. <option value="${p}">${p} 주</option>
  335. </c:forEach>
  336. </select>
  337. </label>
  338. </td>
  339. </tr>
  340. <tr>
  341. <th rowspan="4">기저질환 여부</th>
  342. <td colspan="3">
  343. <label class="form-check form-check-inline">
  344. <input class="form-check-input" type="radio" id="basalY" name="basalDiseaseYn" value="Y" required>
  345. <span class="form-check-label">예</span>
  346. </label>
  347. <label class="form-check form-check-inline">
  348. <input class="form-check-input" type="radio" id="basalN" name="basalDiseaseYn" value="N" checked="checked" required>
  349. <span class="form-check-label">아니오</span>
  350. </label>
  351. (예인 경우 하단의 기저질환을 선택하세요)
  352. </td>
  353. </tr>
  354. <tr>
  355. <td colspan="3" class="basalDisease">
  356. <label class="form-check form-check-inline">
  357. <input class="form-check-input" name="highBloodPressureCheck" type="checkbox" value="Y">
  358. <span class="form-check-label">고혈압</span>
  359. </label>
  360. <label class="form-check form-check-inline">
  361. <input class="form-check-input" name="lowBloodPressureCheck" type="checkbox" value="Y">
  362. <span class="form-check-label">저혈압</span>
  363. </label>
  364. <label class="form-check form-check-inline">
  365. <input class="form-check-input" name="organTransplantCheck" type="checkbox" value="Y">
  366. <span class="form-check-label">장기이식(신장, 간 등)</span>
  367. </label>
  368. <label class="form-check form-check-inline">
  369. <input class="form-check-input" name="diabetesCheck" type="checkbox" value="Y">
  370. <span class="form-check-label">당뇨병</span>
  371. </label>
  372. <label class="form-check form-check-inline">
  373. <input class="form-check-input" name="respiratoryDiseaseCheck" type="checkbox" value="Y">
  374. <span class="form-check-label">호흡기 질환</span>
  375. </label>
  376. <label class="form-check form-check-inline">
  377. <input class="form-check-input" name="immunologicalDiseaseCheck" type="checkbox" value="Y">
  378. <span class="form-check-label">면역질환(류마티스 등)</span>
  379. </label>
  380. </td>
  381. </tr>
  382. <tr>
  383. <td colspan="3" class="basalDisease">
  384. <label class="form-check form-check-inline">
  385. <input class="form-check-input" name="heartDisease" type="checkbox" value="Y">
  386. <span class="form-check-label">심장질환</span>
  387. </label>
  388. <label class="form-check form-check-inline">
  389. <input class="form-check-input" name="liverDisease" type="checkbox" value="Y">
  390. <span class="form-check-label">간질환</span>
  391. </label>
  392. <label class="form-check form-check-inline label-readonly-check">
  393. <input class="form-check-input" name="operation" type="checkbox" value="Y">
  394. <!-- ( <input type="text" id="operationContent" name="operationContent" class="form-control form-control-sm w150" name=""> ) -->
  395. <span class="form-check-label">수술</span>
  396. </label>
  397. <label class="form-check form-check-inline">
  398. <input class="form-check-input" name="allergyCheck" type="checkbox" value="Y">
  399. <span class="form-check-label">알레르기</span>
  400. </label>
  401. <label class="form-check form-check-inline">
  402. <input class="form-check-input" name="kidneyDisease" type="checkbox" value="Y">
  403. <span class="form-check-label">신장질환</span>
  404. </label>
  405. </td>
  406. </tr>
  407. <tr>
  408. <td colspan="3" class="basalDisease">
  409. <label class="form-check form-check-inline label-readonly-check">
  410. <input class="form-check-input" name="cancerCheck" type="checkbox" value="Y">
  411. <span class="form-check-label">암 ( <input type="text" name="cancerName" class="form-control form-control-sm w150"> )</span>
  412. </label>
  413. <label class="form-check form-check-inline label-readonly-check">
  414. <input class="form-check-input" name="etcCheckDisease" type="checkbox" value="Y">
  415. <span class="form-check-label">기타 ( <input type="text" name="etcContentDisease" class="form-control form-control-sm w150"> )</span>
  416. </label>
  417. </td>
  418. </tr>
  419. <!-- 현재 증상 (입소 당시) -->
  420. <tr>
  421. <th rowspan="3">현재 증상<br />(입소 당시)</th>
  422. <td colspan="3">
  423. <label class="form-check form-check-inline">
  424. <input class="form-check-input" name="feverCheck" type="checkbox" value="Y">
  425. <span class="form-check-label">열감(열나는 느낌)</span>
  426. </label>
  427. <label class="form-check form-check-inline">
  428. <input class="form-check-input" name="coughCheck" type="checkbox" value="Y">
  429. <span class="form-check-label">기침</span>
  430. </label>
  431. <label class="form-check form-check-inline">
  432. <input class="form-check-input" name="colic" type="checkbox" value="Y">
  433. <span class="form-check-label">복통(배아픔)</span>
  434. </label>
  435. <label class="form-check form-check-inline">
  436. <input class="form-check-input" name="coldFitCheck" type="checkbox" value="Y">
  437. <span class="form-check-label">오한(추운 느낌)</span>
  438. </label>
  439. <label class="form-check form-check-inline">
  440. <input class="form-check-input" name="sputumCheck" type="checkbox" value="Y">
  441. <span class="form-check-label">가래</span>
  442. </label>
  443. <label class="form-check form-check-inline">
  444. <input class="form-check-input" name="ocinCheck" type="checkbox" value="Y">
  445. <span class="form-check-label">오심(구역질)</span>
  446. </label>
  447. <label class="form-check form-check-inline">
  448. <input class="form-check-input" name="chestPain" type="checkbox" value="Y">
  449. <span class="form-check-label">흉통(가슴 통증)</span>
  450. </label>
  451. </td>
  452. </tr>
  453. <tr>
  454. <td colspan="3">
  455. <label class="form-check form-check-inline">
  456. <input class="form-check-input" name="noseCheck" type="checkbox" value="Y">
  457. <span class="form-check-label">콧물 또는 코 막힘</span>
  458. </label>
  459. <label class="form-check form-check-inline">
  460. <input class="form-check-input" name="vomitingCheck" type="checkbox" value="Y">
  461. <span class="form-check-label">구토</span>
  462. </label>
  463. <label class="form-check form-check-inline">
  464. <input class="form-check-input" name="musclePainCheck" type="checkbox" value="Y">
  465. <span class="form-check-label">근육통(몸살)</span>
  466. </label>
  467. <label class="form-check form-check-inline">
  468. <input class="form-check-input" name="soreThroatCheck" type="checkbox" value="Y">
  469. <span class="form-check-label">인후통(목 아픔)</span>
  470. </label>
  471. <label class="form-check form-check-inline">
  472. <input class="form-check-input" name="diarrheaCheck" type="checkbox" value="Y">
  473. <span class="form-check-label">설사</span>
  474. </label>
  475. <label class="form-check form-check-inline">
  476. <input class="form-check-input" name="headacheCheck" type="checkbox" value="Y">
  477. <span class="form-check-label">두통(머리아픔)</span>
  478. </label>
  479. <label class="form-check form-check-inline">
  480. <input class="form-check-input" name="dyspneaCheck" type="checkbox" value="Y">
  481. <span class="form-check-label">호흡곤란(숨가쁨)</span>
  482. </label>
  483. <label class="form-check form-check-inline">
  484. <input class="form-check-input" name="fatigueCheck" type="checkbox" value="Y">
  485. <span class="form-check-label">권태감(피곤함)</span>
  486. </label>
  487. </td>
  488. </tr>
  489. <tr>
  490. <td colspan="3">
  491. <label class="form-check form-check-inline label-readonly-check">
  492. <input class="form-check-input" name="etcCheckSymptom" type="checkbox" value="Y">
  493. <span class="form-check-label">기타 ( <input type="text" name="etcContentSymptom" class="form-control form-control-sm w150"> )</span>
  494. </label>
  495. </td>
  496. </tr>
  497. <tr>
  498. <th>체온</th>
  499. <td>우측 (<input type="text" class="form-control form-control-sm w50" name="feverRight">)℃ / 좌측 (<input type="text" class="form-control form-control-sm w50" name="feverLeft">)℃</td>
  500. <th>맥박수</th>
  501. <td>
  502. (<input type="text" class="form-control form-control-sm w50" name="pulseRate">) 회/분
  503. </td>
  504. </tr>
  505. <tr>
  506. <th>호흡수</th>
  507. <td>
  508. (<input type="text" class="form-control form-control-sm w50" name="respirationRate">) 회/분
  509. </td>
  510. <th>혈압</th>
  511. <td>수축기 (
  512. <input type="text" class="form-control form-control-sm w50" name="bloodPressureLevelCon">)mmHg
  513. / 이완기 (
  514. <input type="text" class="form-control form-control-sm w50" name="bloodPressureLevelRel">)mmHg
  515. </td>
  516. </tr>
  517. <tr>
  518. <th>산소포화도</th>
  519. <td colspan="3">
  520. (<input type="text" class="form-control form-control-sm w50" name="oxygenSaturation">) %
  521. </td>
  522. </tr>
  523. </table>
  524. <div class="row mt-3">
  525. <div class="col-12">
  526. <div class="text-right">
  527. <button type="button" class="btn btn-outline-primary w100" onclick="history.back();">취소</button>
  528. <button type="submit" class="btn btn-primary w100">등록</button>
  529. </div>
  530. </div>
  531. </div>
  532. </form>
  533. </c:if>
  534. </div>
  535. </div>
  536. </div>
  537. </div>
  538. <!-- 환자관리 : 신규환자 등록 END -->
  539. </div>
  540. </main>
  541. <jsp:include page="${data._INCLUDE}/footer.jsp"></jsp:include>
  542. </div>
  543. </div>
  544. </body>
  545. </html>