123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?xml-stylesheet type="text/css" href="../../../com/commonweb/css/common.css" ?>
- <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">
- <xhtml:head>
- <xhtml:title>예약관리(핵체내)</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <main>
- </main>
- <send>
- <globalinstance>
- <instance1/>
- </globalinstance>
- </send>
- </root>
- </instance>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- aezfSetSuppDeptcd();
- model.refresh();
- ]]>
- </script>
- <submission id="TRAEA02201" ref="/root/send" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/main/ordlist"/>
- <submission id="TRAEA02203" ref="/root/send" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/main/exculist"/>
- <submission id="TRAEA01401" ref="/root/send/globalinstance" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/init/cmb_info"/>
- <submission id="TRAEA02004" ref="/root/send" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/init/curerprescondlist"/>
- <submission id="TRAEA02005" ref="/root/send" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/main/rsrvposstmlist"/>
- <submission id="TRAEA02006" ref="/root/send" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/main/rsrvlistinfo"/>
- <submission id="TXAEA02001" ref="/root/send/req" method="post" mediatype="application/x-www-form-urlencoded" replace="instance" resultref="/root/temp"/>
- </model>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/stringHelper.js"/>
- <script type="javascript" src="../../../ast/examcureweb/js/AEZ0001.js"/>
- <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
- <script type="javascript">
- <![CDATA[
-
- function initCalendar() {
-
- var curDate = getCurrentDate().toDate();
-
- model.setValue("/root/hidden/calendar/year", curDate.getDateFormat('YYYY'));
- model.setValue("/root/hidden/calendar/month", curDate.getDateFormat('MM'));
- model.refresh();
- setCalendar(curDate);
- }
-
-
-
- /* @group : 치료예약(재활)
- * @ver : 2007.05.18
- * @by : 이선경
- * @-----------------------------------
- * @type : function
- * @access : public
- * @desc : 달력에 일자별로 가용현황을 보여준다.
- */
- function setRsrvPresCondByMonth() {
-
- submit("TRAEA02004");
-
- var isMonth = model.getValue("/root/hidden/calendar/month");
- var isYear = model.getValue("/root/hidden/calendar/year");
- var isDate = (isYear+isMonth+1).toDate();
-
- var startDay = isDate.getDay();
-
- for (var i = 1; i < grd_temp.rows; i++) {
- var dd = model.getValue("/root/init/curerprescondlist/rsrvcalendar[" + i + "]/rsrvdd");
-
- var colidx = dd.toDate().getDay();
- var rowidx = Math.ceil( ( startDay + Number(dd.substr(6,2)) ) / 7 );
- grd_calendar.valueMatrix(rowidx, colidx+7) = model.getValue("/root/init/curerprescondlist/rsrvcalendar[" + i + "]/count") + "/" + model.getValue("/root/init/curerprescondlist/rsrvcalendar[" + i + "]/max") ;
- }
- }
-
-
- function setCalendar(dateObj) {
- //alert('IN');
- // 그리드 초기화
- model.removeNodeset("/root/hidden/calendar/weeklist/list");
- model.removeNodeset("/root/init/curerprescondlist/rsrvcalendar");
- //grd_calendar.rebuild()
-
- dateObj.setDate(1);
- var startDay = dateObj.getDay();
- var days = dateObj.getMonthDay();
-
- var rows = Math.ceil( ( startDay + days ) / 7 );
- for( var i = 0; i < rows; i++ )
- grd_calendar.addRow(false);
-
- grd_calendar.rebuild();
- var rowIndex = grd_calendar.fixedRows;
- var colIndex = startDay;
- for( var i = 1; i <= days; i++ ) {
- grd_calendar.valueMatrix(rowIndex, colIndex) = i;
- grd_calendar.valueMatrix(rowIndex, colIndex + 7) = "0/0";
- colIndex++;
- if( colIndex == 7 ) {
- colIndex = 0;
- rowIndex++;
- }
- }
-
- model.setValue("/root/send/data/rsrvdd",model.getValue("/root/hidden/calendar/year")+model.getValue("/root/hidden/calendar/month")+"01");
-
- setRsrvPresCondByMonth();
-
- }
-
- function setCellColor(gridObj) {
-
- var calRow = 0;
- var calCol = 0;
-
- calRow = Number(model.getValue("/root/hidden/grdcellcolor/calrow"));
- calCol = Number(model.getValue("/root/hidden/grdcellcolor/calcol"));
-
- // alert(calRow);
- // alert(calCol);
- // var calRow = gridObj.row;
- // var calCol = gridObj.col;
- //var calCol2 = 0;
-
-
- gridObj.rebuildStyle();
-
- gridObj.cellStyle("background-color", calRow, calCol) = "#daa7d9";
-
- if( calCol < 7 )
- calCol += 7;
- else
- calCol -= 7;
-
- gridObj.cellStyle("background-color", calRow, calCol) = "#daa7d9";
-
-
- /*
- if (gridObj.cellStyle("background-color", calRow, calCol) == "#daa7d9") {
- gridObj.cellStyle("background-color", calRow, calCol) = "white"
-
- } else {
- gridObj.cellStyle("background-color", calRow, calCol) = "#daa7d9"
- }
-
-
- if( calCol < 7 )
- calCol2 = calCol + 7;
- else
- calCol2 = calCol - 7;
-
- gridObj.cellStyle("background-color", calRow, calCol2) = gridObj.cellStyle("background-color", calRow, calCol);
- */
-
- }
- function getRsrvPossTm(gridObj) {
-
- /*
- if(model.getValue("/root/send/ioflag") == "") {
- messageBox("입원,외래중","C002");
- return;
- } else if(model.getValue("/root/send/excuroomcd") == "") {
- messageBox("치료실","C002");
- return;
- } else { */
-
- // var calRow = gridObj.row;
- // var calCol = gridObj.col;
- var calRow = model.getValue("/root/hidden/grdcellcolor/calrow");
- var calCol = model.getValue("/root/hidden/grdcellcolor/calcol");
-
- if( calCol >= 7 )
- calCol -= 7;
-
- var yyyy = model.getValue("/root/hidden/calendar/year");
- var mm = model.getValue("/root/hidden/calendar/month");
- var dd = model.getValue("/root/hidden/calendar/weeklist/list[" + calRow + "]/" + gridObj.colAttribute(calCol, "ref"));
-
-
- if (getStringLength(dd) == 1) {
- dd = "0" + dd;
- }
-
- model.setValue("/root/send/data/rsrvdd", yyyy + mm + dd);
-
- model.setValue("/root/send/data/rsrvdate",model.getValue("/root/send/data/rsrvdd"));
-
-
- /*
- if (gridObj.cellStyle("background-color", calRow, calCol) == "#daa7d9") {
- grd_temp2.addRow();
- grd_temp2.setValue("/root/send/rsrvdd[" + grd_temp2.bottomRow + "]/yyyymmdd", yyyy + mm + dd);
- }*/
-
- submit("TRAEA02005");
-
- submit("TRAEA02006");
- // }
- }
-
-
- /* @group : 통합예약
- * @ver : 2007.07.03
- * @by : 임혜정
- * @-----------------------------------
- * @type : function
- * @access : public
- * @desc : 예약, 취소 버튼의 click 이벤트 처리
- */
- function exeRsrvTransaction(str) {
-
- //예약일때
- if(str == "rsrv" || str == "upd" ) {
- var nodeList = instance1.selectNodes("/root/main/exculist/mainordlist5[check='Y' ]");
- var rCSV = getNodeListCSV(nodeList);
- }
-
- //예약취소일때
- if(str == "cncl") {
- //취소코드조회
- // window.load( "SPAEA01500_취소코드조회.xrw","modal","code", "left:100px; top:150px; width:530px; height:380px;min:hidden;max:hidden;resize:false;" );
-
- // model.setValue("/root/send/req/cnclcd",model.getValue("/root/hidden/cnclcdlist/cnclcd"));
-
- var nodeList = instance1.selectNodes("/root/main/exculist/mainordlist5[check='Y' ]");
- var rCSV = getNodeListCSV(nodeList);
-
- }
-
- model.setValue("/root/send/req/data", rCSV);
- model.setValue("/root/send/req/flag", str);
- //model.setValue("/root/send/req/basesuppdeptcd", model.getValue("/root/send/globalinstance/instance1") );
- // model.makeValue("/root/send/req/data/instance1", model.getValue("/root/send/globalinstance/instance1"));
-
- submit("TXAEA02001");
- // messageBox("I001");
-
- //model.removeNodeset("/root/main/rehbprcpsubinfolist/rehbprcpsubinfo");
- //model.removeNodeset("/root/main/rehbprcpsubinfolist/rsrvprescond");
- model.removeNodeset("/root/main/rehbprcpsubinfolist");
-
- // submit("TRAEA01905");
- // setTree(grd_prcpsubinfo, 1, 3, false);
-
- //getRsrvPossTm(grd_calendar);
-
-
- }
-
-
-
-
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body pagewidth="1050" pageheight="600" guideline="1,1195;2,758;2,784;">
- <group id="group1" style="left:15px; top:0px; width:960px; height:13px; ">
- <caption id="caption6" class="tit_1" style="left:5px; top:0px; width:156px; height:13px; ">CyberKnife 간호기록</caption>
- </group>
- <group id="group3" overflow="visible" scroll="auto" style="left:15px; top:13px; width:1005px; height:559px; ">
- <group id="grp_sea" style="left:0px; top:10px; width:1000px; height:35px; vertical-align:top; ">
- <shape id="roundrect2" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:0px; width:1000px; height:35px; background-color:#fffbf2; border-color:#ffd799; "/>
- <line id="line13" class="line_4" style="x1:925px; y1:8px; x2:925px; y2:30px; "/>
- <button id="btn_sea" class="btn1_letter2" style="left:931px; top:7px; width:56px; height:22px; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- ]]>
- </script>
- </button>
- <input id="ipt_pid" ref="/root/send/data/srchpid" class="input_search" style="left:98px; top:8px; width:92px; height:19px; ">
- <script type="javascript" ev:event="onkeydown">
- <![CDATA[
- ]]>
- </script>
- </input>
- <caption id="caption17" class="search_name" style="left:10px; top:8px; width:91px; height:17px; ">CK No</caption>
- <input id="input1" ref="/root/send/data/srchpid" class="input_search" style="left:198px; top:8px; width:30px; height:19px; "/>
- </group>
- <caption id="caption2" class="cell_1" style="left:1px; top:98px; width:82px; height:23px; vertical-align:middle; ">성별/나이</caption>
- <caption id="caption11" class="cell_1" style="left:438px; top:74px; width:82px; height:23px; vertical-align:middle; ">병원</caption>
- <caption id="caption3" class="cell_1" style="left:220px; top:98px; width:82px; height:23px; vertical-align:middle; ">주민번호</caption>
- <caption id="caption4" class="cell_1" style="left:220px; top:74px; width:82px; height:23px; text-align:left; vertical-align:middle; ">환자이름</caption>
- <caption id="caption5" class="cell_1" style="left:438px; top:98px; width:82px; height:23px; vertical-align:middle; ">집주소</caption>
- <caption id="caption7" class="cell_1" style="left:754px; top:74px; width:82px; height:23px; vertical-align:middle; ">연락처</caption>
- <caption id="caption8" class="cell_1" style="left:1px; top:74px; width:82px; height:23px; text-align:left; vertical-align:middle; ">등록번호</caption>
- <line id="line3" class="line_2" style="x1:0px; y1:96px; x2:1000px; y2:96px; "/>
- <line id="line6" class="line_3" style="x1:0px; y1:121px; x2:1000px; y2:121px; "/>
- <line id="line1" class="line_1" style="x1:1px; y1:69px; x2:1001px; y2:69px; "/>
- <line id="line2" class="line_1" style="x1:0px; y1:279px; x2:1000px; y2:279px; "/>
- <caption id="caption10" class="tit_2" style="left:5px; top:262px; width:100px; height:13px; ">간호기록 현황</caption>
- <caption id="caption14" class="tit_2" style="left:5px; top:54px; width:130px; height:14px; ">환자 인적사항</caption>
- <input id="opt_pid" class="output_fix" style="left:85px; top:75px; width:131px; height:19px; "/>
- <input id="opt_hngnm" class="output_fix" style="left:87px; top:99px; width:33px; height:19px; "/>
- <input id="opt_age" class="output_fix" style="left:305px; top:100px; width:130px; height:19px; "/>
- <input id="opt_sex" class="output_fix" style="left:305px; top:75px; width:130px; height:19px; "/>
- <input id="opt_mpphontel" class="output_fix" style="left:840px; top:75px; width:159px; height:19px; "/>
- <input id="opt_addr" class="output_fix" style="left:525px; top:100px; width:474px; height:19px; "/>
- <select1 id="combo1" appearance="minimal" style="left:525px; top:75px; width:125px; height:19px; ">
- <choices>
- <item>
- <label>성모</label>
- <value>011</value>
- </item>
- <item>
- <label>강남성모</label>
- <value>012</value>
- </item>
- <item>
- <label>의정부성모</label>
- <value>013</value>
- </item>
- </choices>
- </select1>
- <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; ">
- <choices>
- <item>
- <label>입원</label>
- <value>I</value>
- </item>
- <item>
- <label>외래</label>
- <value>O</value>
- </item>
- </choices>
- </select1>
- <input id="input2" class="output_fix" style="left:122px; top:99px; width:43px; height:19px; "/>
- <button id="button3" class="btn4_letter2" style="left:940px; top:507px; width:56px; height:22px; ">
- <caption>종료</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if ( messageBox("예약취소를","Q002")==6 ) {
- var nodeList = instance1.selectNodes("/root/main/exculist/mainordlist5[check='Y' ]");
- var rCSV = getNodeListCSV(nodeList);
-
- if ( rCSV == null ) {
- messageBox("처방내역을 ","C002");
- return "0";
- }
- /*
- var nodeList = instance1.selectNodes("/root/main/exculist/mainordlist5[check='Y'' and rsrvdt = '-']");
- var rCSV = getNodeListCSV(nodeList);
-
- if ( rCSV != null ) {
- messageBox("예약시간을 ","C002");
- return "0";
- }
- */
-
- //취소코드조회
- // window.load( "SPAEA01500_취소코드조회.xrw","modal","code", "left:100px; top:150px; width:530px; height:380px;min:hidden;max:hidden;resize:false;" );
-
-
- exeRsrvTransaction("cncl");
-
- //검사현황 조회
- submit("TRAEA02203");
-
- initCalendar();
- setCellColor(grd_calendar);
- getRsrvPossTm(grd_calendar);
-
- }
- ]]>
- </script>
- </button>
- <button id="btn_grdadd" class="btn2_letter3" style="left:888px; top:258px; width:53px; height:19px; ">
- <caption>행추가</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- grd_examcureroom.addRow();
- grd_examcureroom.row = grd_examcureroom.bottomRow;
- ]]>
- </script>
- </button>
- <button id="btn_grddel" class="btn2_letter3" style="left:944px; top:258px; width:53px; height:19px; ">
- <caption>행삭제</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- deleteSelectedRows(grd_examcureroom, true);
- ]]>
- </script>
- </button>
- <button id="btn_upd" class="btn4_letter2" style="left:880px; top:507px; width:56px; height:22px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if ( messageBox("예약내역을","Q002")==6 ) {
-
- var nodeList = instance1.selectNodes("/root/main/exculist/mainordlist5[check='Y' ]");
- var rCSV = getNodeListCSV(nodeList);
-
- if ( rCSV == null ) {
- messageBox("처방내역을 ","C002");
- return "0";
- }
- /*
- var nodeList = instance1.selectNodes("/root/main/exculist/mainordlist5[check='Y' and rsrvdt = '-']");
- var rCSV = getNodeListCSV(nodeList);
-
- if ( rCSV != null ) {
- messageBox("예약시간을 ","C002");
- return "0";
- }
- */
-
- exeRsrvTransaction("upd");
-
- //검사현황 조회
- submit("TRAEA02203");
-
- initCalendar(); setCellColor(grd_calendar);
- getRsrvPossTm(grd_calendar);
-
-
- }
- ]]>
- </script>
- </button>
- <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; ">
- <!--순번-->
- <col ref="sortno" type="output"/>
- <!--치료일-->
- <col ref="basecd" type="inputdate" maxlength="12" _chartype="upper" _key="true"/>
- <!--혈압-->
- <col ref="basecdflagdesc" type="input"/>
- <!--맥박-->
- <col ref="basecdcnts" type="input"/>
- <!--호흡-->
- <col ref="baseroomopenyn" type="input"/>
- <!--체온-->
- <col ref="excuposseqcd" type="input"/>
- <!--메모-->
- <col ref="baseroomflag" type="input"/>
- </datagrid>
- </group>
- <group id="grp_btn" style="left:15px; top:140px; width:1000px; height:90px; ">
- <line id="line4" class="line_1" style="x1:0px; y1:31px; x2:1000px; y2:31px; "/>
- <caption id="caption1" class="tit_2" style="left:5px; top:15px; width:125px; height:14px; ">Nursing Record</caption>
- <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>
- <select1 id="combo2" appearance="minimal" style="left:143px; top:39px; width:135px; height:19px; ">
- <choices>
- <item>
- <label>CT</label>
- <value>1</value>
- </item>
- <item>
- <label>MRI</label>
- <value>2</value>
- </item>
- <item>
- <label>ANGIO</label>
- <value>3</value>
- </item>
- <item>
- <label>CT/MRI</label>
- <value>4</value>
- </item>
- <item>
- <label>CT/ANGIO</label>
- <value>5</value>
- </item>
- </choices>
- </select1>
- <caption id="caption12" class="cell_1" style="left:286px; top:37px; width:110px; height:23px; text-align:left; vertical-align:middle; ">Fiducial 예약일시</caption>
- <input id="ipt_date1" class="input_default" inputtype="date" style="left:400px; top:39px; width:90px; height:19px; "/>
- <select1 id="cmbSecond" appearance="minimal" style="left:560px; top:39px; width:45px; height:19px; ">
- <choices>
- <item>
- <label>00</label>
- <value>00</value>
- </item>
- <item>
- <label>10</label>
- <value>10</value>
- </item>
- <item>
- <label>20</label>
- <value>20</value>
- </item>
- <item>
- <label>30</label>
- <value>30</value>
- </item>
- <item>
- <label>40</label>
- <value>40</value>
- </item>
- <item>
- <label>50</label>
- <value>50</value>
- </item>
- </choices>
- </select1>
- <caption id="caption20" style="left:543px; top:40px; width:25px; height:20px; ">시</caption>
- <caption id="caption21" style="left:609px; top:40px; width:25px; height:20px; ">분</caption>
- <select1 id="cmbHour" appearance="minimal" style="left:495px; top:39px; width:45px; height:19px; ">
- <choices>
- <item>
- <label>00</label>
- <value>00</value>
- </item>
- <item>
- <label>01</label>
- <value>01</value>
- </item>
- <item>
- <label>02</label>
- <value>02</value>
- </item>
- <item>
- <label>03</label>
- <value>03</value>
- </item>
- <item>
- <label>04</label>
- <value>04</value>
- </item>
- <item>
- <label>05</label>
- <value>05</value>
- </item>
- <item>
- <label>06</label>
- <value>06</value>
- </item>
- <item>
- <label>07</label>
- <value>07</value>
- </item>
- <item>
- <label>08</label>
- <value>08</value>
- </item>
- <item>
- <label>09</label>
- <value>09</value>
- </item>
- <item>
- <label>10</label>
- <value>10</value>
- </item>
- <item>
- <label>11</label>
- <value>11</value>
- </item>
- <item>
- <label>12</label>
- <value>12</value>
- </item>
- </choices>
- </select1>
- <caption id="caption13" class="cell_1" style="left:625px; top:37px; width:105px; height:23px; text-align:left; vertical-align:middle; ">방사선 촬영일시</caption>
- <select1 id="combo3" appearance="minimal" style="left:895px; top:39px; width:45px; height:19px; ">
- <choices>
- <item>
- <label>00</label>
- <value>00</value>
- </item>
- <item>
- <label>10</label>
- <value>10</value>
- </item>
- <item>
- <label>20</label>
- <value>20</value>
- </item>
- <item>
- <label>30</label>
- <value>30</value>
- </item>
- <item>
- <label>40</label>
- <value>40</value>
- </item>
- <item>
- <label>50</label>
- <value>50</value>
- </item>
- </choices>
- </select1>
- <caption id="caption15" style="left:878px; top:40px; width:25px; height:20px; ">시</caption>
- <caption id="caption16" style="left:944px; top:40px; width:25px; height:20px; ">분</caption>
- <select1 id="combo4" appearance="minimal" style="left:830px; top:39px; width:45px; height:19px; ">
- <choices>
- <item>
- <label>00</label>
- <value>00</value>
- </item>
- <item>
- <label>01</label>
- <value>01</value>
- </item>
- <item>
- <label>02</label>
- <value>02</value>
- </item>
- <item>
- <label>03</label>
- <value>03</value>
- </item>
- <item>
- <label>04</label>
- <value>04</value>
- </item>
- <item>
- <label>05</label>
- <value>05</value>
- </item>
- <item>
- <label>06</label>
- <value>06</value>
- </item>
- <item>
- <label>07</label>
- <value>07</value>
- </item>
- <item>
- <label>08</label>
- <value>08</value>
- </item>
- <item>
- <label>09</label>
- <value>09</value>
- </item>
- <item>
- <label>10</label>
- <value>10</value>
- </item>
- <item>
- <label>11</label>
- <value>11</value>
- </item>
- <item>
- <label>12</label>
- <value>12</value>
- </item>
- </choices>
- </select1>
- <input id="input3" class="input_default" inputtype="date" style="left:735px; top:39px; width:90px; height:19px; "/>
- <line id="line7" class="line_2" style="x1:0px; y1:60px; x2:1000px; y2:60px; "/>
- <line id="line11" class="line_3" style="x1:0px; y1:87px; x2:995px; y2:87px; "/>
- <caption id="caption18" class="cell_1" style="left:625px; top:63px; width:105px; height:23px; text-align:left; vertical-align:middle; ">방사선 촬영일시</caption>
- <select1 id="combo5" appearance="minimal" style="left:895px; top:64px; width:45px; height:19px; ">
- <choices>
- <item>
- <label>00</label>
- <value>00</value>
- </item>
- <item>
- <label>10</label>
- <value>10</value>
- </item>
- <item>
- <label>20</label>
- <value>20</value>
- </item>
- <item>
- <label>30</label>
- <value>30</value>
- </item>
- <item>
- <label>40</label>
- <value>40</value>
- </item>
- <item>
- <label>50</label>
- <value>50</value>
- </item>
- </choices>
- </select1>
- <select1 id="combo6" appearance="minimal" style="left:830px; top:64px; width:45px; height:19px; ">
- <choices>
- <item>
- <label>00</label>
- <value>00</value>
- </item>
- <item>
- <label>01</label>
- <value>01</value>
- </item>
- <item>
- <label>02</label>
- <value>02</value>
- </item>
- <item>
- <label>03</label>
- <value>03</value>
- </item>
- <item>
- <label>04</label>
- <value>04</value>
- </item>
- <item>
- <label>05</label>
- <value>05</value>
- </item>
- <item>
- <label>06</label>
- <value>06</value>
- </item>
- <item>
- <label>07</label>
- <value>07</value>
- </item>
- <item>
- <label>08</label>
- <value>08</value>
- </item>
- <item>
- <label>09</label>
- <value>09</value>
- </item>
- <item>
- <label>10</label>
- <value>10</value>
- </item>
- <item>
- <label>11</label>
- <value>11</value>
- </item>
- <item>
- <label>12</label>
- <value>12</value>
- </item>
- </choices>
- </select1>
- <caption id="caption19" style="left:878px; top:65px; width:25px; height:20px; ">시</caption>
- <caption id="caption22" style="left:944px; top:65px; width:25px; height:20px; ">분</caption>
- <input id="input4" class="input_default" inputtype="date" style="left:735px; top:64px; width:90px; height:19px; "/>
- <line id="line5" class="line_2" style="x1:0px; y1:85px; x2:1000px; y2:85px; "/>
- </group>
- </xhtml:body>
- </xhtml:html>
|