SPAEA03203_간호기록(사이버나이프).xrw 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741
  1. <?xml version="1.0" encoding="EUC-KR"?>
  2. <?xml-stylesheet type="text/css" href="../../../com/commonweb/css/common.css" ?>
  3. <xhtml:html xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://www.w3.org/2002/01/xforms" xmlns:ev="http://www.w3.org/2001/xml-events">
  4. <xhtml:head>
  5. <xhtml:title>예약관리(핵체내)</xhtml:title>
  6. <model id="model1">
  7. <instance id="instance1">
  8. <root xmlns="">
  9. <main>
  10. </main>
  11. <send>
  12. <globalinstance>
  13. <instance1/>
  14. </globalinstance>
  15. </send>
  16. </root>
  17. </instance>
  18. <script type="javascript" ev:event="xforms-ready">
  19. <![CDATA[
  20. aezfSetSuppDeptcd();
  21. model.refresh();
  22. ]]>
  23. </script>
  24. <submission id="TRAEA02201" ref="/root/send" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/main/ordlist"/>
  25. <submission id="TRAEA02203" ref="/root/send" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/main/exculist"/>
  26. <submission id="TRAEA01401" ref="/root/send/globalinstance" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/init/cmb_info"/>
  27. <submission id="TRAEA02004" ref="/root/send" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/init/curerprescondlist"/>
  28. <submission id="TRAEA02005" ref="/root/send" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/main/rsrvposstmlist"/>
  29. <submission id="TRAEA02006" ref="/root/send" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/main/rsrvlistinfo"/>
  30. <submission id="TXAEA02001" ref="/root/send/req" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/temp"/>
  31. </model>
  32. <script type="javascript" src="../../../com/commonweb/js/common.js"/>
  33. <script type="javascript" src="../../../com/commonweb/js/stringHelper.js"/>
  34. <script type="javascript" src="../../../ast/examcureweb/js/AEZ0001.js"/>
  35. <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
  36. <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
  37. <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
  38. <script type="javascript">
  39. <![CDATA[
  40. function initCalendar() {
  41. var curDate = getCurrentDate().toDate();
  42. model.setValue("/root/hidden/calendar/year", curDate.getDateFormat('YYYY'));
  43. model.setValue("/root/hidden/calendar/month", curDate.getDateFormat('MM'));
  44. model.refresh();
  45. setCalendar(curDate);
  46. }
  47. /* @group : 치료예약(재활)
  48. * @ver : 2007.05.18
  49. * @by : 이선경
  50. * @-----------------------------------
  51. * @type : function
  52. * @access : public
  53. * @desc : 달력에 일자별로 가용현황을 보여준다.
  54. */
  55. function setRsrvPresCondByMonth() {
  56. submit("TRAEA02004");
  57. var isMonth = model.getValue("/root/hidden/calendar/month");
  58. var isYear = model.getValue("/root/hidden/calendar/year");
  59. var isDate = (isYear+isMonth+1).toDate();
  60. var startDay = isDate.getDay();
  61. for (var i = 1; i < grd_temp.rows; i++) {
  62. var dd = model.getValue("/root/init/curerprescondlist/rsrvcalendar[" + i + "]/rsrvdd");
  63. var colidx = dd.toDate().getDay();
  64. var rowidx = Math.ceil( ( startDay + Number(dd.substr(6,2)) ) / 7 );
  65. grd_calendar.valueMatrix(rowidx, colidx+7) = model.getValue("/root/init/curerprescondlist/rsrvcalendar[" + i + "]/count") + "/" + model.getValue("/root/init/curerprescondlist/rsrvcalendar[" + i + "]/max") ;
  66. }
  67. }
  68. function setCalendar(dateObj) {
  69. //alert('IN');
  70. // 그리드 초기화
  71. model.removeNodeset("/root/hidden/calendar/weeklist/list");
  72. model.removeNodeset("/root/init/curerprescondlist/rsrvcalendar");
  73. //grd_calendar.rebuild()
  74. dateObj.setDate(1);
  75. var startDay = dateObj.getDay();
  76. var days = dateObj.getMonthDay();
  77. var rows = Math.ceil( ( startDay + days ) / 7 );
  78. for( var i = 0; i < rows; i++ )
  79. grd_calendar.addRow(false);
  80. grd_calendar.rebuild();
  81. var rowIndex = grd_calendar.fixedRows;
  82. var colIndex = startDay;
  83. for( var i = 1; i <= days; i++ ) {
  84. grd_calendar.valueMatrix(rowIndex, colIndex) = i;
  85. grd_calendar.valueMatrix(rowIndex, colIndex + 7) = "0/0";
  86. colIndex++;
  87. if( colIndex == 7 ) {
  88. colIndex = 0;
  89. rowIndex++;
  90. }
  91. }
  92. model.setValue("/root/send/data/rsrvdd",model.getValue("/root/hidden/calendar/year")+model.getValue("/root/hidden/calendar/month")+"01");
  93. setRsrvPresCondByMonth();
  94. }
  95. function setCellColor(gridObj) {
  96. var calRow = 0;
  97. var calCol = 0;
  98. calRow = Number(model.getValue("/root/hidden/grdcellcolor/calrow"));
  99. calCol = Number(model.getValue("/root/hidden/grdcellcolor/calcol"));
  100. // alert(calRow);
  101. // alert(calCol);
  102. // var calRow = gridObj.row;
  103. // var calCol = gridObj.col;
  104. //var calCol2 = 0;
  105. gridObj.rebuildStyle();
  106. gridObj.cellStyle("background-color", calRow, calCol) = "#daa7d9";
  107. if( calCol < 7 )
  108. calCol += 7;
  109. else
  110. calCol -= 7;
  111. gridObj.cellStyle("background-color", calRow, calCol) = "#daa7d9";
  112. /*
  113. if (gridObj.cellStyle("background-color", calRow, calCol) == "#daa7d9") {
  114. gridObj.cellStyle("background-color", calRow, calCol) = "white"
  115. } else {
  116. gridObj.cellStyle("background-color", calRow, calCol) = "#daa7d9"
  117. }
  118. if( calCol < 7 )
  119. calCol2 = calCol + 7;
  120. else
  121. calCol2 = calCol - 7;
  122. gridObj.cellStyle("background-color", calRow, calCol2) = gridObj.cellStyle("background-color", calRow, calCol);
  123. */
  124. }
  125. function getRsrvPossTm(gridObj) {
  126. /*
  127. if(model.getValue("/root/send/ioflag") == "") {
  128. messageBox("입원,외래중","C002");
  129. return;
  130. } else if(model.getValue("/root/send/excuroomcd") == "") {
  131. messageBox("치료실","C002");
  132. return;
  133. } else { */
  134. // var calRow = gridObj.row;
  135. // var calCol = gridObj.col;
  136. var calRow = model.getValue("/root/hidden/grdcellcolor/calrow");
  137. var calCol = model.getValue("/root/hidden/grdcellcolor/calcol");
  138. if( calCol >= 7 )
  139. calCol -= 7;
  140. var yyyy = model.getValue("/root/hidden/calendar/year");
  141. var mm = model.getValue("/root/hidden/calendar/month");
  142. var dd = model.getValue("/root/hidden/calendar/weeklist/list[" + calRow + "]/" + gridObj.colAttribute(calCol, "ref"));
  143. if (getStringLength(dd) == 1) {
  144. dd = "0" + dd;
  145. }
  146. model.setValue("/root/send/data/rsrvdd", yyyy + mm + dd);
  147. model.setValue("/root/send/data/rsrvdate",model.getValue("/root/send/data/rsrvdd"));
  148. /*
  149. if (gridObj.cellStyle("background-color", calRow, calCol) == "#daa7d9") {
  150. grd_temp2.addRow();
  151. grd_temp2.setValue("/root/send/rsrvdd[" + grd_temp2.bottomRow + "]/yyyymmdd", yyyy + mm + dd);
  152. }*/
  153. submit("TRAEA02005");
  154. submit("TRAEA02006");
  155. // }
  156. }
  157. /* @group : 통합예약
  158. * @ver : 2007.07.03
  159. * @by : 임혜정
  160. * @-----------------------------------
  161. * @type : function
  162. * @access : public
  163. * @desc : 예약, 취소 버튼의 click 이벤트 처리
  164. */
  165. function exeRsrvTransaction(str) {
  166. //예약일때
  167. if(str == "rsrv" || str == "upd" ) {
  168. var nodeList = instance1.selectNodes("/root/main/exculist/mainordlist5[check='Y' ]");
  169. var rCSV = getNodeListCSV(nodeList);
  170. }
  171. //예약취소일때
  172. if(str == "cncl") {
  173. //취소코드조회
  174. // window.load( "SPAEA01500_취소코드조회.xrw","modal","code", "left:100px; top:150px; width:530px; height:380px;min:hidden;max:hidden;resize:false;" );
  175. // model.setValue("/root/send/req/cnclcd",model.getValue("/root/hidden/cnclcdlist/cnclcd"));
  176. var nodeList = instance1.selectNodes("/root/main/exculist/mainordlist5[check='Y' ]");
  177. var rCSV = getNodeListCSV(nodeList);
  178. }
  179. model.setValue("/root/send/req/data", rCSV);
  180. model.setValue("/root/send/req/flag", str);
  181. //model.setValue("/root/send/req/basesuppdeptcd", model.getValue("/root/send/globalinstance/instance1") );
  182. // model.makeValue("/root/send/req/data/instance1", model.getValue("/root/send/globalinstance/instance1"));
  183. submit("TXAEA02001");
  184. // messageBox("I001");
  185. //model.removeNodeset("/root/main/rehbprcpsubinfolist/rehbprcpsubinfo");
  186. //model.removeNodeset("/root/main/rehbprcpsubinfolist/rsrvprescond");
  187. model.removeNodeset("/root/main/rehbprcpsubinfolist");
  188. // submit("TRAEA01905");
  189. // setTree(grd_prcpsubinfo, 1, 3, false);
  190. //getRsrvPossTm(grd_calendar);
  191. }
  192. ]]>
  193. </script>
  194. </xhtml:head>
  195. <xhtml:body pagewidth="1050" pageheight="600" guideline="1,1195;2,758;2,784;">
  196. <group id="group1" style="left:15px; top:0px; width:960px; height:13px; ">
  197. <caption id="caption6" class="tit_1" style="left:5px; top:0px; width:156px; height:13px; ">CyberKnife 간호기록</caption>
  198. </group>
  199. <group id="group3" overflow="visible" scroll="auto" style="left:15px; top:13px; width:1005px; height:559px; ">
  200. <group id="grp_sea" style="left:0px; top:10px; width:1000px; height:35px; vertical-align:top; ">
  201. <shape id="roundrect2" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:0px; width:1000px; height:35px; background-color:#fffbf2; border-color:#ffd799; "/>
  202. <line id="line13" class="line_4" style="x1:925px; y1:8px; x2:925px; y2:30px; "/>
  203. <button id="btn_sea" class="btn1_letter2" style="left:931px; top:7px; width:56px; height:22px; ">
  204. <caption>조회</caption>
  205. <script type="javascript" ev:event="DOMActivate">
  206. <![CDATA[
  207. ]]>
  208. </script>
  209. </button>
  210. <input id="ipt_pid" ref="/root/send/data/srchpid" class="input_search" style="left:98px; top:8px; width:92px; height:19px; ">
  211. <script type="javascript" ev:event="onkeydown">
  212. <![CDATA[
  213. ]]>
  214. </script>
  215. </input>
  216. <caption id="caption17" class="search_name" style="left:10px; top:8px; width:91px; height:17px; ">CK No</caption>
  217. <input id="input1" ref="/root/send/data/srchpid" class="input_search" style="left:198px; top:8px; width:30px; height:19px; "/>
  218. </group>
  219. <caption id="caption2" class="cell_1" style="left:1px; top:98px; width:82px; height:23px; vertical-align:middle; ">성별/나이</caption>
  220. <caption id="caption11" class="cell_1" style="left:438px; top:74px; width:82px; height:23px; vertical-align:middle; ">병원</caption>
  221. <caption id="caption3" class="cell_1" style="left:220px; top:98px; width:82px; height:23px; vertical-align:middle; ">주민번호</caption>
  222. <caption id="caption4" class="cell_1" style="left:220px; top:74px; width:82px; height:23px; text-align:left; vertical-align:middle; ">환자이름</caption>
  223. <caption id="caption5" class="cell_1" style="left:438px; top:98px; width:82px; height:23px; vertical-align:middle; ">집주소</caption>
  224. <caption id="caption7" class="cell_1" style="left:754px; top:74px; width:82px; height:23px; vertical-align:middle; ">연락처</caption>
  225. <caption id="caption8" class="cell_1" style="left:1px; top:74px; width:82px; height:23px; text-align:left; vertical-align:middle; ">등록번호</caption>
  226. <line id="line3" class="line_2" style="x1:0px; y1:96px; x2:1000px; y2:96px; "/>
  227. <line id="line6" class="line_3" style="x1:0px; y1:121px; x2:1000px; y2:121px; "/>
  228. <line id="line1" class="line_1" style="x1:1px; y1:69px; x2:1001px; y2:69px; "/>
  229. <line id="line2" class="line_1" style="x1:0px; y1:279px; x2:1000px; y2:279px; "/>
  230. <caption id="caption10" class="tit_2" style="left:5px; top:262px; width:100px; height:13px; ">간호기록 현황</caption>
  231. <caption id="caption14" class="tit_2" style="left:5px; top:54px; width:130px; height:14px; ">환자 인적사항</caption>
  232. <input id="opt_pid" class="output_fix" style="left:85px; top:75px; width:131px; height:19px; "/>
  233. <input id="opt_hngnm" class="output_fix" style="left:87px; top:99px; width:33px; height:19px; "/>
  234. <input id="opt_age" class="output_fix" style="left:305px; top:100px; width:130px; height:19px; "/>
  235. <input id="opt_sex" class="output_fix" style="left:305px; top:75px; width:130px; height:19px; "/>
  236. <input id="opt_mpphontel" class="output_fix" style="left:840px; top:75px; width:159px; height:19px; "/>
  237. <input id="opt_addr" class="output_fix" style="left:525px; top:100px; width:474px; height:19px; "/>
  238. <select1 id="combo1" appearance="minimal" style="left:525px; top:75px; width:125px; height:19px; ">
  239. <choices>
  240. <item>
  241. <label>성모</label>
  242. <value>011</value>
  243. </item>
  244. <item>
  245. <label>강남성모</label>
  246. <value>012</value>
  247. </item>
  248. <item>
  249. <label>의정부성모</label>
  250. <value>013</value>
  251. </item>
  252. </choices>
  253. </select1>
  254. <select1 id="rdoIOFlag" class="radio_search" overflow="visible" appearance="full" rows="1" cols="3" cellspacing="5" style="left:655px; top:76px; width:92px; height:19px; border-style:none; ">
  255. <choices>
  256. <item>
  257. <label>입원</label>
  258. <value>I</value>
  259. </item>
  260. <item>
  261. <label>외래</label>
  262. <value>O</value>
  263. </item>
  264. </choices>
  265. </select1>
  266. <input id="input2" class="output_fix" style="left:122px; top:99px; width:43px; height:19px; "/>
  267. <button id="button3" class="btn4_letter2" style="left:940px; top:507px; width:56px; height:22px; ">
  268. <caption>종료</caption>
  269. <script type="javascript" ev:event="DOMActivate">
  270. <![CDATA[
  271. if ( messageBox("예약취소를","Q002")==6 ) {
  272. var nodeList = instance1.selectNodes("/root/main/exculist/mainordlist5[check='Y' ]");
  273. var rCSV = getNodeListCSV(nodeList);
  274. if ( rCSV == null ) {
  275. messageBox("처방내역을 ","C002");
  276. return "0";
  277. }
  278. /*
  279. var nodeList = instance1.selectNodes("/root/main/exculist/mainordlist5[check='Y'' and rsrvdt = '-']");
  280. var rCSV = getNodeListCSV(nodeList);
  281. if ( rCSV != null ) {
  282. messageBox("예약시간을 ","C002");
  283. return "0";
  284. }
  285. */
  286. //취소코드조회
  287. // window.load( "SPAEA01500_취소코드조회.xrw","modal","code", "left:100px; top:150px; width:530px; height:380px;min:hidden;max:hidden;resize:false;" );
  288. exeRsrvTransaction("cncl");
  289. //검사현황 조회
  290. submit("TRAEA02203");
  291. initCalendar();
  292. setCellColor(grd_calendar);
  293. getRsrvPossTm(grd_calendar);
  294. }
  295. ]]>
  296. </script>
  297. </button>
  298. <button id="btn_grdadd" class="btn2_letter3" style="left:888px; top:258px; width:53px; height:19px; ">
  299. <caption>행추가</caption>
  300. <script type="javascript" ev:event="DOMActivate">
  301. <![CDATA[
  302. grd_examcureroom.addRow();
  303. grd_examcureroom.row = grd_examcureroom.bottomRow;
  304. ]]>
  305. </script>
  306. </button>
  307. <button id="btn_grddel" class="btn2_letter3" style="left:944px; top:258px; width:53px; height:19px; ">
  308. <caption>행삭제</caption>
  309. <script type="javascript" ev:event="DOMActivate">
  310. <![CDATA[
  311. deleteSelectedRows(grd_examcureroom, true);
  312. ]]>
  313. </script>
  314. </button>
  315. <button id="btn_upd" class="btn4_letter2" style="left:880px; top:507px; width:56px; height:22px; ">
  316. <caption>저장</caption>
  317. <script type="javascript" ev:event="DOMActivate">
  318. <![CDATA[
  319. if ( messageBox("예약내역을","Q002")==6 ) {
  320. var nodeList = instance1.selectNodes("/root/main/exculist/mainordlist5[check='Y' ]");
  321. var rCSV = getNodeListCSV(nodeList);
  322. if ( rCSV == null ) {
  323. messageBox("처방내역을 ","C002");
  324. return "0";
  325. }
  326. /*
  327. var nodeList = instance1.selectNodes("/root/main/exculist/mainordlist5[check='Y' and rsrvdt = '-']");
  328. var rCSV = getNodeListCSV(nodeList);
  329. if ( rCSV != null ) {
  330. messageBox("예약시간을 ","C002");
  331. return "0";
  332. }
  333. */
  334. exeRsrvTransaction("upd");
  335. //검사현황 조회
  336. submit("TRAEA02203");
  337. initCalendar(); setCellColor(grd_calendar);
  338. getRsrvPossTm(grd_calendar);
  339. }
  340. ]]>
  341. </script>
  342. </button>
  343. <datagrid id="grd_examcureroom" nodeset="/root/main/examcurelist/item" autoresize="true" caption="순번 ^치료일^혈압^맥박^호흡^체온^메모" colwidth="60, 96, 114, 105, 95, 117, 348" mergecellsfixedrows="bycolrec" rowheader="update" rowsep="|" colsep="^" style="left:2px; top:285px; width:998px; height:215px; ">
  344. <!--순번-->
  345. <col ref="sortno" type="output"/>
  346. <!--치료일-->
  347. <col ref="basecd" type="inputdate" maxlength="12" _chartype="upper" _key="true"/>
  348. <!--혈압-->
  349. <col ref="basecdflagdesc" type="input"/>
  350. <!--맥박-->
  351. <col ref="basecdcnts" type="input"/>
  352. <!--호흡-->
  353. <col ref="baseroomopenyn" type="input"/>
  354. <!--체온-->
  355. <col ref="excuposseqcd" type="input"/>
  356. <!--메모-->
  357. <col ref="baseroomflag" type="input"/>
  358. </datagrid>
  359. </group>
  360. <group id="grp_btn" style="left:15px; top:140px; width:1000px; height:90px; ">
  361. <line id="line4" class="line_1" style="x1:0px; y1:31px; x2:1000px; y2:31px; "/>
  362. <caption id="caption1" class="tit_2" style="left:5px; top:15px; width:125px; height:14px; ">Nursing Record</caption>
  363. <caption id="caption9" class="cell_1" style="left:0px; top:37px; width:140px; height:23px; text-align:left; vertical-align:middle; ">CyberKnife Plan Image</caption>
  364. <select1 id="combo2" appearance="minimal" style="left:143px; top:39px; width:135px; height:19px; ">
  365. <choices>
  366. <item>
  367. <label>CT</label>
  368. <value>1</value>
  369. </item>
  370. <item>
  371. <label>MRI</label>
  372. <value>2</value>
  373. </item>
  374. <item>
  375. <label>ANGIO</label>
  376. <value>3</value>
  377. </item>
  378. <item>
  379. <label>CT/MRI</label>
  380. <value>4</value>
  381. </item>
  382. <item>
  383. <label>CT/ANGIO</label>
  384. <value>5</value>
  385. </item>
  386. </choices>
  387. </select1>
  388. <caption id="caption12" class="cell_1" style="left:286px; top:37px; width:110px; height:23px; text-align:left; vertical-align:middle; ">Fiducial 예약일시</caption>
  389. <input id="ipt_date1" class="input_default" inputtype="date" style="left:400px; top:39px; width:90px; height:19px; "/>
  390. <select1 id="cmbSecond" appearance="minimal" style="left:560px; top:39px; width:45px; height:19px; ">
  391. <choices>
  392. <item>
  393. <label>00</label>
  394. <value>00</value>
  395. </item>
  396. <item>
  397. <label>10</label>
  398. <value>10</value>
  399. </item>
  400. <item>
  401. <label>20</label>
  402. <value>20</value>
  403. </item>
  404. <item>
  405. <label>30</label>
  406. <value>30</value>
  407. </item>
  408. <item>
  409. <label>40</label>
  410. <value>40</value>
  411. </item>
  412. <item>
  413. <label>50</label>
  414. <value>50</value>
  415. </item>
  416. </choices>
  417. </select1>
  418. <caption id="caption20" style="left:543px; top:40px; width:25px; height:20px; ">시</caption>
  419. <caption id="caption21" style="left:609px; top:40px; width:25px; height:20px; ">분</caption>
  420. <select1 id="cmbHour" appearance="minimal" style="left:495px; top:39px; width:45px; height:19px; ">
  421. <choices>
  422. <item>
  423. <label>00</label>
  424. <value>00</value>
  425. </item>
  426. <item>
  427. <label>01</label>
  428. <value>01</value>
  429. </item>
  430. <item>
  431. <label>02</label>
  432. <value>02</value>
  433. </item>
  434. <item>
  435. <label>03</label>
  436. <value>03</value>
  437. </item>
  438. <item>
  439. <label>04</label>
  440. <value>04</value>
  441. </item>
  442. <item>
  443. <label>05</label>
  444. <value>05</value>
  445. </item>
  446. <item>
  447. <label>06</label>
  448. <value>06</value>
  449. </item>
  450. <item>
  451. <label>07</label>
  452. <value>07</value>
  453. </item>
  454. <item>
  455. <label>08</label>
  456. <value>08</value>
  457. </item>
  458. <item>
  459. <label>09</label>
  460. <value>09</value>
  461. </item>
  462. <item>
  463. <label>10</label>
  464. <value>10</value>
  465. </item>
  466. <item>
  467. <label>11</label>
  468. <value>11</value>
  469. </item>
  470. <item>
  471. <label>12</label>
  472. <value>12</value>
  473. </item>
  474. </choices>
  475. </select1>
  476. <caption id="caption13" class="cell_1" style="left:625px; top:37px; width:105px; height:23px; text-align:left; vertical-align:middle; ">방사선 촬영일시</caption>
  477. <select1 id="combo3" appearance="minimal" style="left:895px; top:39px; width:45px; height:19px; ">
  478. <choices>
  479. <item>
  480. <label>00</label>
  481. <value>00</value>
  482. </item>
  483. <item>
  484. <label>10</label>
  485. <value>10</value>
  486. </item>
  487. <item>
  488. <label>20</label>
  489. <value>20</value>
  490. </item>
  491. <item>
  492. <label>30</label>
  493. <value>30</value>
  494. </item>
  495. <item>
  496. <label>40</label>
  497. <value>40</value>
  498. </item>
  499. <item>
  500. <label>50</label>
  501. <value>50</value>
  502. </item>
  503. </choices>
  504. </select1>
  505. <caption id="caption15" style="left:878px; top:40px; width:25px; height:20px; ">시</caption>
  506. <caption id="caption16" style="left:944px; top:40px; width:25px; height:20px; ">분</caption>
  507. <select1 id="combo4" appearance="minimal" style="left:830px; top:39px; width:45px; height:19px; ">
  508. <choices>
  509. <item>
  510. <label>00</label>
  511. <value>00</value>
  512. </item>
  513. <item>
  514. <label>01</label>
  515. <value>01</value>
  516. </item>
  517. <item>
  518. <label>02</label>
  519. <value>02</value>
  520. </item>
  521. <item>
  522. <label>03</label>
  523. <value>03</value>
  524. </item>
  525. <item>
  526. <label>04</label>
  527. <value>04</value>
  528. </item>
  529. <item>
  530. <label>05</label>
  531. <value>05</value>
  532. </item>
  533. <item>
  534. <label>06</label>
  535. <value>06</value>
  536. </item>
  537. <item>
  538. <label>07</label>
  539. <value>07</value>
  540. </item>
  541. <item>
  542. <label>08</label>
  543. <value>08</value>
  544. </item>
  545. <item>
  546. <label>09</label>
  547. <value>09</value>
  548. </item>
  549. <item>
  550. <label>10</label>
  551. <value>10</value>
  552. </item>
  553. <item>
  554. <label>11</label>
  555. <value>11</value>
  556. </item>
  557. <item>
  558. <label>12</label>
  559. <value>12</value>
  560. </item>
  561. </choices>
  562. </select1>
  563. <input id="input3" class="input_default" inputtype="date" style="left:735px; top:39px; width:90px; height:19px; "/>
  564. <line id="line7" class="line_2" style="x1:0px; y1:60px; x2:1000px; y2:60px; "/>
  565. <line id="line11" class="line_3" style="x1:0px; y1:87px; x2:995px; y2:87px; "/>
  566. <caption id="caption18" class="cell_1" style="left:625px; top:63px; width:105px; height:23px; text-align:left; vertical-align:middle; ">방사선 촬영일시</caption>
  567. <select1 id="combo5" appearance="minimal" style="left:895px; top:64px; width:45px; height:19px; ">
  568. <choices>
  569. <item>
  570. <label>00</label>
  571. <value>00</value>
  572. </item>
  573. <item>
  574. <label>10</label>
  575. <value>10</value>
  576. </item>
  577. <item>
  578. <label>20</label>
  579. <value>20</value>
  580. </item>
  581. <item>
  582. <label>30</label>
  583. <value>30</value>
  584. </item>
  585. <item>
  586. <label>40</label>
  587. <value>40</value>
  588. </item>
  589. <item>
  590. <label>50</label>
  591. <value>50</value>
  592. </item>
  593. </choices>
  594. </select1>
  595. <select1 id="combo6" appearance="minimal" style="left:830px; top:64px; width:45px; height:19px; ">
  596. <choices>
  597. <item>
  598. <label>00</label>
  599. <value>00</value>
  600. </item>
  601. <item>
  602. <label>01</label>
  603. <value>01</value>
  604. </item>
  605. <item>
  606. <label>02</label>
  607. <value>02</value>
  608. </item>
  609. <item>
  610. <label>03</label>
  611. <value>03</value>
  612. </item>
  613. <item>
  614. <label>04</label>
  615. <value>04</value>
  616. </item>
  617. <item>
  618. <label>05</label>
  619. <value>05</value>
  620. </item>
  621. <item>
  622. <label>06</label>
  623. <value>06</value>
  624. </item>
  625. <item>
  626. <label>07</label>
  627. <value>07</value>
  628. </item>
  629. <item>
  630. <label>08</label>
  631. <value>08</value>
  632. </item>
  633. <item>
  634. <label>09</label>
  635. <value>09</value>
  636. </item>
  637. <item>
  638. <label>10</label>
  639. <value>10</value>
  640. </item>
  641. <item>
  642. <label>11</label>
  643. <value>11</value>
  644. </item>
  645. <item>
  646. <label>12</label>
  647. <value>12</value>
  648. </item>
  649. </choices>
  650. </select1>
  651. <caption id="caption19" style="left:878px; top:65px; width:25px; height:20px; ">시</caption>
  652. <caption id="caption22" style="left:944px; top:65px; width:25px; height:20px; ">분</caption>
  653. <input id="input4" class="input_default" inputtype="date" style="left:735px; top:64px; width:90px; height:19px; "/>
  654. <line id="line5" class="line_2" style="x1:0px; y1:85px; x2:1000px; y2:85px; "/>
  655. </group>
  656. </xhtml:body>
  657. </xhtml:html>