new.jsp 45 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678
  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>
  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. if ($this.val() == "Y") {
  46. $("#pregnancyWeek").prop("disabled", false);
  47. } else {
  48. $("#pregnancyWeek").prop("disabled", true);
  49. $("#pregnancyWeek").val("");
  50. }
  51. });
  52. //입소일시
  53. // $( ".hospitalizationDate" ).on( "change", function(){
  54. // console.log("asdfasdf");
  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. // $( "#hospitalizationDate" ).val( ymd );
  62. // });
  63. //성별 남선택시 임신유무 고정
  64. $( "input[name='gender']" ).on( "click", function(){
  65. var gender = $( this ).val();
  66. console.log( gender );
  67. if( gender == "M" ) {
  68. $( "input[name='pregnancyStatus']:input[value='N']" ).prop( "checked", true );
  69. $( "input[name='pregnancyStatus']:input[value='Y']" ).prop( "disabled", true );
  70. $( "#pregnancyWeek" ).val( "" ).prop( "disabled", true );
  71. } else {
  72. $( "input[name='pregnancyStatus']:input[value='N']" ).prop( "checked", false );
  73. $( "input[name='pregnancyStatus']:input[value='Y']" ).prop( "disabled", false );
  74. }
  75. });
  76. // //생년월일
  77. // $( ".select-date" ).on( "change", function(){
  78. // var $this = $( this );
  79. // var wrap = $this.closest( "div.date" );
  80. // var dateYear = wrap.find( ".date-year" ).val();
  81. // var dateMonth = wrap.find( ".date-month" ).val();
  82. // var dateDay = wrap.find( ".date-day" ).val();
  83. // dateMonth = Number(dateMonth) < 10 ? "0" + dateMonth : dateMonth;
  84. // dateDay = Number(dateDay) < 10 ? "0" + dateDay : dateDay;
  85. // wrap.find( "input.error-box" ).val( dateYear + "-" + dateMonth + "-" + dateDay );
  86. // });
  87. $( "input.date" ).daterangepicker({
  88. singleDatePicker : true,
  89. showDropdowns : true,
  90. locale : {
  91. format : "YYYY-MM-DD"
  92. },
  93. maxDate : new Date(),
  94. minDate : "1900-01-01"
  95. });
  96. $( "input.date-no-req" ).daterangepicker({
  97. singleDatePicker : true,
  98. showDropdowns : true,
  99. locale : {
  100. format : "YYYY-MM-DD"
  101. },
  102. autoUpdateInput: false,
  103. maxDate : new Date(),
  104. minDate : "1900-01-01"
  105. }).on( "apply.daterangepicker", function( ev, picker ) {
  106. $(this).val(picker.startDate.format('YYYY-MM-DD'));
  107. });
  108. $( "input.date-no-req2" ).daterangepicker({
  109. singleDatePicker : true,
  110. showDropdowns : true,
  111. locale : {
  112. format : "YYYY-MM-DD"
  113. },
  114. autoUpdateInput: false,
  115. minDate : new Date()
  116. }).on( "apply.daterangepicker", function( ev, picker ) {
  117. $(this).val(picker.startDate.format('YYYY-MM-DD'));
  118. });
  119. }
  120. $( function(){
  121. patientNewInit();
  122. setEventHandler();
  123. $( "#patientForm" ).validate({
  124. rules: {
  125. hospitalizationDate : {
  126. minDate : true,
  127. date : true,
  128. maxDate : true
  129. },
  130. patientPhone : {
  131. phoneValid : true
  132. },
  133. guardianPhone : {
  134. phoneValid : true
  135. },
  136. jumin : {
  137. minDate : true,
  138. date : true,
  139. maxDate : true
  140. },
  141. symptomStartDate : {
  142. minDate : true,
  143. maxDate : true,
  144. date : true
  145. },
  146. disisolationDate : {
  147. minDate : true,
  148. date : true,
  149. maxDate : true
  150. },
  151. expectedDischargeDate : {
  152. date : true
  153. },
  154. bloodPressureLevelCon : {
  155. number : true
  156. },
  157. bloodPressureLevelRel : {
  158. number : true
  159. },
  160. patientNumber : {
  161. number : true
  162. }
  163. },
  164. messages : {
  165. // jumin : "생년월일을 모두 선택해주세요",
  166. gender: "성별을 선택해주세요",
  167. // wardNumber : "동을 입력해주세요",
  168. roomNumber : "호실을 입력해주세요",
  169. hospitalizationDate : {
  170. date:"입소일시를 선택해주세요"
  171. }
  172. },
  173. onkeyup: function( element, event ) {
  174. $( element ).valid();
  175. },
  176. onfocusout: function (element) {
  177. $( element ).val( $.trim( $( element ).val() ) );
  178. $( element ).valid();
  179. },
  180. errorPlacement: function(error, element) {
  181. if (element.attr("type") == "radio") {
  182. error.insertBefore(element);
  183. } else {
  184. error.insertAfter(element);
  185. }
  186. },
  187. submitHandler: function(form) {
  188. if( $( "input[name='bloodPressureLevelCon']" ).val() != "" ) {
  189. if( $( "input[name='bloodPressureLevelRel']" ).val() == "" ) {
  190. alert( '혈압을 모두입력하세요' );
  191. return false;
  192. }
  193. }
  194. if( $( "input[name='bloodPressureLevelRel']" ).val() != "" ) {
  195. if( $( "input[name='bloodPressureLevelCon']" ).val() == "" ) {
  196. alert( '혈압을 모두입력하세요' );
  197. return false;
  198. }
  199. }
  200. form.submit();
  201. }
  202. });
  203. $(document).on('click','input[name="foreignerYn"]',function(){
  204. var foreigner = $(this).prop('checked');
  205. if(foreigner){
  206. $('input[name="patientPhone"]').val('010-0000-0000').prop('readonly',true);
  207. } else {
  208. $('input[name="patientPhone"]').val('').prop('readonly',false);
  209. }
  210. });
  211. });
  212. </script>
  213. <style>
  214. .error {margin:0 5px;}
  215. </style>
  216. </head>
  217. <body>
  218. <div class="wrapper">
  219. <jsp:include page="${data._INCLUDE}/sidebar.jsp"></jsp:include>
  220. <div class="main">
  221. <jsp:include page="${data._INCLUDE}/top.jsp"></jsp:include>
  222. <main class="content">
  223. <div class="container-fluid p-0">
  224. <!-- 환자관리 : 신규환자 등록 START -->
  225. <div class="row">
  226. <div class="col-12 col-lg-6">
  227. <h1 class="h3 mb-3">환자정보등록</h1>
  228. </div>
  229. <div class="col-12 col-lg-6 text-right">
  230. <nav aria-label="breadcrumb">
  231. <ol class="breadcrumb">
  232. <li class="breadcrumb-item"><a href="javscript:;">Home</a></li>
  233. <li class="breadcrumb-item">환자관리</li>
  234. <li class="breadcrumb-item active">환자정보 등록</li>
  235. </ol>
  236. </nav>
  237. </div>
  238. </div>
  239. <div class="row">
  240. <div class="col-12">
  241. <div class="card">
  242. <div class="card-body">
  243. <c:if test="${centerCount eq 0}">
  244. <table class="table mobile-table">
  245. <tr>
  246. <th>치료센터</th>
  247. <td class="text-danger">등록된 생활치료센터가 없거나<br/>환자 신규등록 권한이 없습니다. </td>
  248. </tr>
  249. </table>
  250. </c:if>
  251. <c:if test="${centerCount > 0}">
  252. <c:set var="now" value="<%=new java.util.Date()%>" />
  253. <c:set var="action" value="/patient/new/insert" />
  254. <form id="patientForm" action="${action}" method="post" onsubmit="return false">
  255. <table class="table mobile-table">
  256. <colgroup>
  257. <col style="width:15%">
  258. <col style="width:35%">
  259. <col style="width:15%">
  260. <col style="width:35%">
  261. </colgroup>
  262. <tr>
  263. <th>치료센터</th>
  264. <td><c:out value="${centerName}"/></td>
  265. <th><span class="fix">*</span>입소일시</th>
  266. <td colspan="2">
  267. <!-- 입소일시 -->
  268. <c:set var="sysYmd"><fmt:formatDate value="${now}" pattern="yyyy-MM-dd" /></c:set>
  269. <div class="form-group calendar-bar mb-xl-0">
  270. <input class="form-control date hospitalizationDate" type="text" value="${sysYmd}" onKeyup="inputYMDNumber(this);" name="hospitalizationDate" id="hospitalizationDateYmd" required>
  271. <i class="align-middle mr-2 fas fa-fw fa-calendar-alt"></i>
  272. </div>
  273. </td>
  274. </tr>
  275. <tr>
  276. <th>환자번호</th>
  277. <td>
  278. <input type="text" name="patientNumber" onkeypress="onlyNumber();" maxlength="15" class="form-control" placeholder="환자 번호를 입력해주세요.">
  279. </td>
  280. </tr>
  281. <tr>
  282. <th><span class="fix">*</span>병동 번호</th>
  283. <td>
  284. <div class="form-check-inline">
  285. <!-- 병동 번호 (동 /호실) -->
  286. <input type="text" class="form-control" name="wardNumber"> <span>동</span>
  287. <input type="text" class="form-control" name="roomNumber" required> <span>호</span>
  288. </div>
  289. </td>
  290. <th><span class="fix">*</span>이름</th>
  291. <td>
  292. <!-- 환자 이름 -->
  293. <input type="text" name="patientName" class="form-control" placeholder="이름을 입력해주세요" required>
  294. </td>
  295. </tr>
  296. <tr>
  297. <th><span class="fix">*</span>성별</th>
  298. <td>
  299. <!-- 성별 -->
  300. <label class="form-check form-check-inline mb-0">
  301. <input class="form-check-input" type="radio" name="gender" value="M" required>
  302. <span class="form-check-label">남</span>
  303. </label>
  304. <label class="form-check form-check-inline mb-0">
  305. <input class="form-check-input" type="radio" name="gender" value="F" required>
  306. <span class="form-check-label">여</span>
  307. </label>
  308. </td>
  309. <th><span class="fix">*</span>생년월일</th>
  310. <td>
  311. <!-- 생년월일 -->
  312. <div class="form-group calendar-bar mb-xl-0">
  313. <input type="text" class="form-control date jumin" onKeyup="inputYMDNumber(this);" id="jumin" name="jumin" autocomplete="off" placeholder="yyyy-mm-dd 형식으로 입력하세요" required>
  314. <i class="align-middle mr-2 fas fa-fw fa-calendar-alt"></i>
  315. </div>
  316. </td>
  317. </tr>
  318. <tr>
  319. <th><span class="fix">*</span>연락처</th>
  320. <td>
  321. <div class="form-check form-check-inline calendar-bar mb-xl-0">
  322. <input type="text" name="patientPhone" class="form-control" placeholder="연락처를 입력해주세요" required>
  323. </div>
  324. <label class="form-check form-check-inline">
  325. <input class="form-check-input" name="foreignerYn" type="checkbox" value="Y">
  326. <span class="form-check-label">외국인</span>
  327. </label>
  328. </td>
  329. <th>보호자 연락처</th>
  330. <td>
  331. <input type="text" name="guardianPhone" class="form-control" placeholder="보호자 연락처를 입력해주세요">
  332. </td>
  333. </tr>
  334. <tr>
  335. <th>증상시작일</th>
  336. <td>
  337. <div class="form-group calendar-bar mb-xl-0">
  338. <input class="form-control date-no-req" type="text" name="symptomStartDate" onKeyup="inputYMDNumber(this);" autocomplete="off">
  339. <i class="align-middle mr-2 fas fa-fw fa-calendar-alt"></i>
  340. </div>
  341. </td>
  342. <th><span class="fix">*</span>확진일</th>
  343. <td>
  344. <div class="form-group calendar-bar mb-xl-0">
  345. <input class="form-control date valid" type="text" name="confirmationDate" autocomplete="off" aria-invalid="false">
  346. <i class="align-middle mr-2 fas fa-fw fa-calendar-alt"></i>
  347. </div>
  348. </td>
  349. </tr>
  350. <!-- 안보이도록처리 (신규등록 환자 상태는 무조건 입소, 빈값으로 submit) -->
  351. <tr class="d-none">
  352. <!-- <th>격리해제 예정일</th> -->
  353. <th>상태 변경일</br>(퇴소, 지정병원이송, 기타)</th>
  354. <td colspan="3">
  355. <div class="form-group calendar-bar mb-xl-0">
  356. <input class="form-control date-no-req" type="text" name="disisolationDate" onKeyup="inputYMDNumber(this);" autocomplete="off">
  357. <i class="align-middle mr-2 fas fa-fw fa-calendar-alt"></i>
  358. </div>
  359. </td>
  360. </tr>
  361. <tr>
  362. <th>퇴소예정일</th>
  363. <td>
  364. <div class="form-group calendar-bar mb-xl-0">
  365. <input class="form-control date-no-req2" type="text" name="expectedDischargeDate" onKeyup="inputYMDNumber(this);" autocomplete="off">
  366. <i class="align-middle mr-2 fas fa-fw fa-calendar-alt"></i>
  367. </div>
  368. </td>
  369. <th>담당 의료진</th>
  370. <td>
  371. <select class="custom-select valid" name="managerId" aria-invalid="false">
  372. <option value="">의료진 선택</option>
  373. <c:forEach var="sl" items="${staffList}">
  374. <option value="${sl.id}"><c:out value="${sl.name} (${sl.id})"/></option>
  375. </c:forEach>
  376. </select>
  377. </td>
  378. </tr>
  379. <tr>
  380. <th>문진작성(환자용 앱)</th>
  381. <td colspan="3">
  382. <label class="form-check form-check-inline">
  383. <input class="form-check-input" type="radio" id="serveyY" name="serveyYn" value="Y">
  384. <span class="form-check-label">가능</span>
  385. </label>
  386. <label class="form-check form-check-inline">
  387. <input class="form-check-input" type="radio" id="serveyN" name="serveyYn" value="N">
  388. <span class="form-check-label">불가능</span>
  389. </label>
  390. <span class="text-danger">(문진작성이 가능일 경우에만 환자용 앱에서 문진 작성이 가능합니다.)</span>
  391. </td>
  392. </tr>
  393. <tr>
  394. <th>최근약복용<br />(최근 24시간 이내)</th>
  395. <td>
  396. <label class="form-check form-check-inline">
  397. <input class="form-check-input" type="radio" value="N" name="drugYn" onclick="$('#drugContent').attr('readonly', true).val('');">
  398. <span class="form-check-label">미복용</span>
  399. </label>
  400. <label class="form-check form-check-inline">
  401. <input class="form-check-input" type="radio" value="Y" name="drugYn" onclick="$('#drugContent').removeAttr('readonly');">
  402. <span class="form-check-label">복용</span>
  403. </label>
  404. <label class="form-check form-check-inline">
  405. <input type="text" id="drugContent" class="form-control" name="drugContent" placeholder="약명을 입력하세요." readonly>
  406. </label>
  407. </td>
  408. <th>임신</th>
  409. <td>
  410. <label class="form-check form-check-inline">
  411. <input class="form-check-input" type="radio" name="pregnancyStatus" value="N">
  412. <span class="form-check-label">무</span>
  413. </label>
  414. <label class="form-check form-check-inline">
  415. <input class="form-check-input" type="radio" name="pregnancyStatus" value="Y">
  416. <span class="form-check-label">유</span>
  417. </label>
  418. <label class="form-check form-check-inline">
  419. <select class="custom-select" name="pregnancyWeek" id="pregnancyWeek" disabled>
  420. <option value="" selected="">임신 주차</option>
  421. <c:forEach var="p" begin="1" end="40" step="1">
  422. <option value="${p}">${p} 주</option>
  423. </c:forEach>
  424. </select>
  425. </label>
  426. </td>
  427. </tr>
  428. <tr>
  429. <th rowspan="4">기저질환 여부</th>
  430. <td colspan="3">
  431. <label class="form-check form-check-inline">
  432. <input class="form-check-input" type="radio" id="basalY" name="basalDiseaseYn" 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" type="radio" id="basalN" name="basalDiseaseYn" value="N">
  437. <span class="form-check-label">아니오</span>
  438. </label>
  439. (예인 경우 하단의 기저질환을 선택하세요)
  440. </td>
  441. </tr>
  442. <tr>
  443. <td colspan="3" class="basalDisease">
  444. <label class="form-check form-check-inline">
  445. <input class="form-check-input" name="highBloodPressureCheck" type="checkbox" value="Y">
  446. <span class="form-check-label">고혈압</span>
  447. </label>
  448. <label class="form-check form-check-inline">
  449. <input class="form-check-input" name="lowBloodPressureCheck" type="checkbox" value="Y">
  450. <span class="form-check-label">저혈압</span>
  451. </label>
  452. <label class="form-check form-check-inline">
  453. <input class="form-check-input" name="organTransplantCheck" type="checkbox" value="Y">
  454. <span class="form-check-label">장기이식(신장, 간 등)</span>
  455. </label>
  456. <label class="form-check form-check-inline">
  457. <input class="form-check-input" name="diabetesCheck" type="checkbox" value="Y">
  458. <span class="form-check-label">당뇨병</span>
  459. </label>
  460. <label class="form-check form-check-inline">
  461. <input class="form-check-input" name="respiratoryDiseaseCheck" type="checkbox" value="Y">
  462. <span class="form-check-label">호흡기 질환</span>
  463. </label>
  464. <label class="form-check form-check-inline">
  465. <input class="form-check-input" name="immunologicalDiseaseCheck" type="checkbox" value="Y">
  466. <span class="form-check-label">면역질환(류마티스 등)</span>
  467. </label>
  468. </td>
  469. </tr>
  470. <tr>
  471. <td colspan="3" class="basalDisease">
  472. <label class="form-check form-check-inline">
  473. <input class="form-check-input" name="heartDisease" type="checkbox" value="Y">
  474. <span class="form-check-label">심장질환</span>
  475. </label>
  476. <label class="form-check form-check-inline">
  477. <input class="form-check-input" name="liverDisease" type="checkbox" value="Y">
  478. <span class="form-check-label">간질환</span>
  479. </label>
  480. <label class="form-check form-check-inline label-readonly-check">
  481. <input class="form-check-input" name="operation" type="checkbox" value="Y">
  482. <!-- ( <input type="text" id="operationContent" name="operationContent" class="form-control form-control-sm w150" name=""> ) -->
  483. <span class="form-check-label">수술</span>
  484. </label>
  485. <label class="form-check form-check-inline">
  486. <input class="form-check-input" name="allergyCheck" type="checkbox" value="Y">
  487. <span class="form-check-label">알레르기</span>
  488. </label>
  489. <label class="form-check form-check-inline">
  490. <input class="form-check-input" name="kidneyDisease" type="checkbox" value="Y">
  491. <span class="form-check-label">신장질환</span>
  492. </label>
  493. </td>
  494. </tr>
  495. <tr>
  496. <td colspan="3" class="basalDisease">
  497. <label class="form-check form-check-inline label-readonly-check">
  498. <input class="form-check-input" name="cancerCheck" type="checkbox" value="Y">
  499. <span class="form-check-label">암 ( <input type="text" name="cancerName" class="form-control form-control-sm w150"> )</span>
  500. </label>
  501. <label class="form-check form-check-inline label-readonly-check">
  502. <input class="form-check-input" name="etcCheckDisease" type="checkbox" value="Y">
  503. <span class="form-check-label">기타 ( <input type="text" name="etcContentDisease" class="form-control form-control-sm w150"> )</span>
  504. </label>
  505. </td>
  506. </tr>
  507. <!-- 현재 증상 (입소 당시) -->
  508. <tr>
  509. <th rowspan="3">현재 증상<br />(입소 당시)</th>
  510. <td colspan="3">
  511. <label class="form-check form-check-inline">
  512. <input class="form-check-input" name="feverCheck" type="checkbox" value="Y">
  513. <span class="form-check-label">열감(열나는 느낌)</span>
  514. </label>
  515. <label class="form-check form-check-inline">
  516. <input class="form-check-input" name="coughCheck" type="checkbox" value="Y">
  517. <span class="form-check-label">기침</span>
  518. </label>
  519. <label class="form-check form-check-inline">
  520. <input class="form-check-input" name="colic" type="checkbox" value="Y">
  521. <span class="form-check-label">복통(배아픔)</span>
  522. </label>
  523. <label class="form-check form-check-inline">
  524. <input class="form-check-input" name="coldFitCheck" type="checkbox" value="Y">
  525. <span class="form-check-label">오한(추운 느낌)</span>
  526. </label>
  527. <label class="form-check form-check-inline">
  528. <input class="form-check-input" name="sputumCheck" type="checkbox" value="Y">
  529. <span class="form-check-label">가래</span>
  530. </label>
  531. <label class="form-check form-check-inline">
  532. <input class="form-check-input" name="ocinCheck" type="checkbox" value="Y">
  533. <span class="form-check-label">오심(구역질)</span>
  534. </label>
  535. <label class="form-check form-check-inline">
  536. <input class="form-check-input" name="chestPain" type="checkbox" value="Y">
  537. <span class="form-check-label">흉통(가슴 통증)</span>
  538. </label>
  539. </td>
  540. </tr>
  541. <tr>
  542. <td colspan="3">
  543. <label class="form-check form-check-inline">
  544. <input class="form-check-input" name="noseCheck" type="checkbox" value="Y">
  545. <span class="form-check-label">콧물 또는 코 막힘</span>
  546. </label>
  547. <label class="form-check form-check-inline">
  548. <input class="form-check-input" name="vomitingCheck" type="checkbox" value="Y">
  549. <span class="form-check-label">구토</span>
  550. </label>
  551. <label class="form-check form-check-inline">
  552. <input class="form-check-input" name="musclePainCheck" type="checkbox" value="Y">
  553. <span class="form-check-label">근육통(몸살)</span>
  554. </label>
  555. <label class="form-check form-check-inline">
  556. <input class="form-check-input" name="soreThroatCheck" type="checkbox" value="Y">
  557. <span class="form-check-label">인후통(목 아픔)</span>
  558. </label>
  559. <label class="form-check form-check-inline">
  560. <input class="form-check-input" name="diarrheaCheck" type="checkbox" value="Y">
  561. <span class="form-check-label">설사</span>
  562. </label>
  563. <label class="form-check form-check-inline">
  564. <input class="form-check-input" name="headacheCheck" type="checkbox" value="Y">
  565. <span class="form-check-label">두통(머리아픔)</span>
  566. </label>
  567. <label class="form-check form-check-inline">
  568. <input class="form-check-input" name="dyspneaCheck" type="checkbox" value="Y">
  569. <span class="form-check-label">호흡곤란(숨가쁨)</span>
  570. </label>
  571. <label class="form-check form-check-inline">
  572. <input class="form-check-input" name="fatigueCheck" type="checkbox" value="Y">
  573. <span class="form-check-label">권태감(피곤함)</span>
  574. </label>
  575. </td>
  576. </tr>
  577. <tr>
  578. <td colspan="3">
  579. <label class="form-check form-check-inline label-readonly-check">
  580. <input class="form-check-input" name="etcCheckSymptom" type="checkbox" value="Y">
  581. <span class="form-check-label">기타 ( <input type="text" name="etcContentSymptom" class="form-control form-control-sm w150"> )</span>
  582. </label>
  583. </td>
  584. </tr>
  585. <tr>
  586. <th>체온</th>
  587. <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>
  588. <th>맥박수</th>
  589. <td>
  590. (<input type="text" class="form-control form-control-sm w50" name="pulseRate">) 회/분
  591. </td>
  592. </tr>
  593. <tr>
  594. <th>호흡수</th>
  595. <td>
  596. (<input type="text" class="form-control form-control-sm w50" name="respirationRate">) 회/분
  597. </td>
  598. <th>혈압</th>
  599. <td>수축기 (
  600. <input type="text" class="form-control form-control-sm w50" name="bloodPressureLevelCon">)mmHg
  601. / 이완기 (
  602. <input type="text" class="form-control form-control-sm w50" name="bloodPressureLevelRel">)mmHg
  603. </td>
  604. </tr>
  605. <tr>
  606. <th>산소포화도</th>
  607. <td colspan="3">
  608. (<input type="text" class="form-control form-control-sm w50" name="oxygenSaturation">) %
  609. </td>
  610. </tr>
  611. <tr>
  612. <th>기타 환자 메모</th>
  613. <td colspan="3">
  614. <textarea class="form-control" name="patientEtc" rows="10" maxlength="2000" placeholder="2000자 까지 입력 가능합니다."></textarea>
  615. </td>
  616. </tr>
  617. </table>
  618. <div class="row mt-3">
  619. <div class="col-12">
  620. <div class="text-right">
  621. <button type="button" class="btn btn-outline-primary w100" onclick="history.back();">취소</button>
  622. <button type="submit" class="btn btn-primary w100">등록</button>
  623. </div>
  624. </div>
  625. </div>
  626. </form>
  627. </c:if>
  628. </div>
  629. </div>
  630. </div>
  631. </div>
  632. <!-- 환자관리 : 신규환자 등록 END -->
  633. </div>
  634. </main>
  635. <jsp:include page="${data._INCLUDE}/footer.jsp"></jsp:include>
  636. </div>
  637. </div>
  638. </body>
  639. </html>