123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530 |
- <?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>
- <implantinfo>
- <instcd/>
- <pid/>
- <hngnm/>
- <orddd/>
- <cretno/>
- <ioflag/>
- <diagcd/>
- <diagengnm/>
- <diaghngnm/>
- <orddeptcd/>
- <orddrid/>
- <icd10cd/>
- <diagcnfmdd/>
- <insukindnm/>
- <rrgstno1/>
- <rrgstno2/>
- <tootfact1/>
- <tootfact2/>
- <regkind1/>
- <regkind2/>
- <reregkind1/>
- <reregkind2/>
- <reregstart1/>
- <reregstart2/>
- <reregresn1/>
- <reregresn2/>
- </implantinfo>
- </main>
- <hidden/>
- <temp/>
- <init>
- <orddept/>
- </init>
- <send>
- <savedata>
- </savedata>
- <reqdata/>
- <upperjaw/>
- <lowerjaw/>
- <jawkind/>
- </send>
- <temp>
- <flag/>
- </temp>
- </root>
- </instance>
- <submission id="TRZSD00109" mediatype="application/x-www-form-urlencoded" method="post" replace="instance"/>
- <submission id="TRMMB04101" mediatype="application/x-www-form-urlencoded" method="post"/>
- <submission id="TRMMO25101" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/reqdata" resultref="/root/main/implantinfo"/>
- <submission id="TXMMO25101" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/savedata" resultref="/root/main/result/serdiagappinfo"/>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
-
- var dd=getCurrentDate(); // 당일
- model.makeValue("/root/send/savedata/genrdd", dd);
- mmbfGetDeptCodeComboList("/root/send/reqdata", "/root/init/orddept", "A");
- if(checkOpener() && getPatientInfo("pid") !=""){
- model.makeValue("/root/send/reqdata/pid", getPatientInfo("pid"));
- model.makeValue("/root/send/reqdata/cretno", getPatientInfoDetail("cretno"));
- model.makeValue("/root/send/reqdata/diagcnfmdd", dd);
- model.makeValue("/root/send/reqdata/insukind", getPatientInfoDetail("insukind"));
- model.makeValue("/root/send/reqdata/ioflag", getPatientInfoDetail("ioflag"));
- if ( getPatientInfoDetail("ioflag") == "O" || getPatientInfoDetail("ioflag") == "S" ){ //외래일때
- model.makeValue("/root/send/reqdata/orddd", getPatientInfoDetail("orddd"));
- } else {
- model.makeValue("/root/send/reqdata/orddd", getPatientInfoDetail("indd"));
- }
- model.makeValue("/root/send/reqdata/orddeptcd", getUserInfo("dutplcecd"));
- model.makeValue("/root/send/reqdata/orddrid", getUserId());
- model.makeValue("/root/send/reqdata/instcd", getUserInfo("dutplceinstcd"));
-
- if(submit("TRMMO25101")){
- model.setValue("/root/temp/flag","1");
- }
- fInsuInfoSearch(); //보험 정보조회
- if(submit("TRMMO25101")){
- model.setValue("/root/temp/flag","1");
- }
- model.refresh();
-
- var sPid = model.getValue("/root/main/implantinfo/pid") ;
- var sTootFact1 = model.getValue("/root/main/implantinfo/tootfact1") ;
- var sTootFact2 = model.getValue("/root/main/implantinfo/tootfact2") ;
-
- if(!isNull(sPid)){ // 메뉴에서 들어 올때 기존 임플란트 신청서가 있을경우만
- if(!isNull(sTootFact1)){
- grp_implant1.disabled = true;
- } else {
- grp_implant1.disabled = false;
- ipt_tootfact1.disabled = true;
- model.setValue("/root/main/implantinfo/regkind1", "N");
- fDisabledCheck("Implant1", true);
- }
-
- if(!isNull(sTootFact2)){
- grp_implant2.disabled = true;
- } else {
- grp_implant2.disabled = false;
- ipt_tootfact2.disabled = true;
- model.setValue("/root/main/implantinfo/regkind2", "N");
- fDisabledCheck("Implant2", true);
- }
- } else {
- grp_implant1.disabled = true;
- grp_implant2.disabled = true;
- }
- }else if(checkOpener() && getPatientInfo("pid")==""){
- messageBox ("상단정보가 필요합니다.", "I" );
- model.close();
- }
-
- model.refresh();
- ]]>
- </script>
- </model>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/departmentcodeweb/js/ZSD001.js"/>
- <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/stringHelper.js"/>
- <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
- <script type="javascript" src="../../../com/userdeptinfoweb/js/ZSU001.js"/>
- <script type="javascript" src="../../../emr/prcpmngtweb/js/SMMMO04100.js"/>
- <script type="javascript" src="../../../emr/prcpmngtweb/js/SMMMO04200.js"/>
- <script type="javascript" src="../../../emr/prcpmngtweb/js/MMO001.js"/>
- <script type="javascript" src="../../../pam/pamcomnweb/js/PAM.js"/>
- <script type="javascript">
- <![CDATA[
- //자격조회 팝업 호출
- function fInsuInfoSearch(flag){
- //보험증번호 조회(보험자격조회)
-
- var parm = model.getValue("/root/main/implantinfo/rrgstno1") +
- model.getValue("/root/main/implantinfo/rrgstno2") + "▦" + //주민번호
- model.getValue("/root/main/implantinfo/hngnm") + "▦" + //이름
- model.getValue("/root/main/implantinfo/orddd") + "▦" + //외래진료일자
- model.getValue("/root/main/implantinfo/cretno") + "▦" + //생성번호
- "O" + "▦" + //진료형태
- "" + "▦" + //퇴원일자
- "0" + "▦" + //본인일부부담금
- "" + "▦" + //기관부담금
- model.getValue("/root/main/implantinfo/pid") + "▦" + //등록번호
- model.getValue("/root/main/implantinfo/orddeptcd")+ "▦" + //진료과
- "" + "▦" + //본인부담구분
- "0" + "▦" + //비급여총금액
- "0" + "▦" + //산전지원금
- "00" + "▦"; //보조유형
- setParameter("SPPMC03900_PARM",parm);
-
- if( flag == "P" ){
- modal("SPPMC03900", "1","50", "50", "SPPMC03900", "", "", "sysmenu:hidden;");
- }else{
- setParameter("SPPMC03900_MSGYN", "N");
- fApproveHeallifeAmt2();
- }
- }
-
- function fDisabledCheck(sGubun, bFlag) {
- if(sGubun == "Implant1") {
- model.setValue("/root/main/implantinfo/reregkind1", "");
- model.setValue("/root/main/implantinfo/reregstart1", "");
- model.setValue("/root/main/implantinfo/reregresn1", "");
-
- sel_reregkind1.disabled = bFlag;
- sel_reregstart1.disabled = bFlag;
- sel_reregresn1.disabled = bFlag;
- } else if (sGubun == "Implant2"){
- model.setValue("/root/main/implantinfo/reregkind2", "");
- model.setValue("/root/main/implantinfo/reregstart2", "");
- model.setValue("/root/main/implantinfo/reregresn2", "");
-
- sel_reregkind2.disabled = bFlag;
- sel_reregstart2.disabled = bFlag;
- sel_reregresn2.disabled = bFlag;
- }
- model.refresh();
- }
-
- function fSrchTootFact(sGubun) {
- var sDiagStr = "diagcd▦tootfact▦rtntootfact▦rowcnt▩";
- var sDiagNm = model.getValue("/root/main/implantinfo/diagcd") + "▦▦";
- var sTootFact = "" ;
- if(sGubun == "Implant1") {
- sTootFact = model.getValue("/root/main/implantinfo/tootfact1");
- } else if (sGubun == "Implant2"){
- sTootFact = model.getValue("/root/main/implantinfo/tootfact2");
- }
-
- var sDiagStr = sDiagStr + sDiagNm + sTootFact + "▦" + 1 +"▩";
- setParameter("param_diaglist", sDiagStr);
-
- modal ("SPMMO10500");
- if ( getParameter("rtn_useyn") == "Y" ) {
- var diaglen = getParameter("rtn_diagtootfact").split("▩").length;
- for ( var i=1; i < diaglen-1; i++ ) {
- var sSelTootFact = getArrayData (getParameter("rtn_diagtootfact"), i, 2, "▩", "▦" );
- if(sSelTootFact.length == 3) {
- if(sGubun == "Implant1") {
- model.setValue ( "/root/main/implantinfo/tootfact1", sSelTootFact.substr(1,2));
- } else if (sGubun == "Implant2"){
- model.setValue ( "/root/main/implantinfo/tootfact2", sSelTootFact.substr(1,2));
- }
- } else {
- messageBox("치식은 반듯이 하나를 선택하셔야 합니다.", "I999");
- return;
- }
- }
- }
-
- clearParameter ("rtn_useyn");
- clearParameter ("param_diaglist");
- clearParameter ("rtn_diagtootfact");
-
- model.refresh();
- }
-
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body pagewidth="480" pageheight="340" style="margin-left:8; margin-top:0; margin-right:8; margin-bottom:0; ">
- <input id="ipt_pid" ref="/root/main/implantinfo/pid" disabled="true" disable.background-color="#ffffff" style="left:90px; top:22px; width:130px; height:19px; "/>
- <select1 id="combo1" ref="/root/main/implantinfo/orddeptcd" disabled="true" appearance="minimal" disable.background-color="#ffffff" style="left:90px; top:71px; width:130px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/orddept/dept">
- <label ref="depthngnm"/>
- <value ref="deptcd"/>
- </itemset>
- </choices>
- </select1>
- <input id="ipt_hngnm" ref="/root/main/implantinfo/hngnm" disabled="true" disable.background-color="#ffffff" style="left:90px; top:46px; width:130px; height:19px; "/>
- <input id="ipt_diaghngnm" ref="/root/main/implantinfo/icd10cd" disabled="true" disable.background-color="#ffffff" style="left:315px; top:71px; width:130px; height:19px; "/>
- <line id="line1" class="line_1" style="x1:0px; y1:15px; x2:450px; y2:15px; "/>
- <caption id="caption14" class="tit_2" style="left:0px; top:0px; width:152px; height:15px; vertical-align:middle; ">임플란트등록신청서</caption>
- <caption id="caption26" class="cell_1" style="left:1px; top:20px; width:85px; height:23px; text-align:center; vertical-align:middle; ">등록번호</caption>
- <caption id="caption1" class="cell_1" style="left:1px; top:70px; width:85px; height:23px; text-align:center; vertical-align:middle; ">진료과</caption>
- <caption id="caption2" class="cell_1" style="left:226px; top:70px; width:85px; height:23px; text-align:center; vertical-align:middle; ">진단</caption>
- <caption id="caption3" class="cell_1" style="left:226px; top:94px; width:85px; height:23px; text-align:center; vertical-align:middle; ">진단확인일</caption>
- <button id="btn_save" class="btn4_letter2" style="left:333px; top:300px; width:56px; height:22px; ">
- <caption>저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.copyNode("/root/send/savedata", "/root/main/implantinfo");
- if(getParameter("SPPMC03900_insukind")==""){
- model.makeValue("/root/send/savedata/insukind", getPatientInfoDetail("insukind"));
- }else if(getParameter("SPPMC03900_insukind")!=""){
- model.makeValue("/root/send/savedata/insukind", getParameter("SPPMC03900_insukind"));
- }
- if(model.getValue("/root/send/savedata/tootfact1")=="" && model.getValue("/root/send/savedata/tootfact2")=="" ){
- messageBox ( "저장할 치식번호가 없습니다.", "C" );
- return;
- }
-
- if(model.getValue("/root/send/savedata/tootfact1") == model.getValue("/root/send/savedata/tootfact2")){
- messageBox ( "동일한 치식번호를 중복 등록 할 수 없습니다.", "C" );
- return;
- }
-
- if(model.getValue("/root/send/savedata/regkind1")=="R"){
- if(model.getValue("/root/send/savedata/reregkind1")=="" || model.getValue("/root/send/savedata/reregstart1")=="" || model.getValue("/root/send/savedata/reregresn1")=="" ) {
- messageBox ( "임플란트1 등록구분이 재등록이면 의료급여기관 구분, 재등록 시술 시작단계, 재등록 사유를 입력 하셔야 합니다.", "C" );
- return;
- }
- }
-
- if(model.getValue("/root/send/savedata/regkind2")=="R"){
- if(model.getValue("/root/send/savedata/reregkind2")=="" || model.getValue("/root/send/savedata/reregstart2")=="" || model.getValue("/root/send/savedata/reregresn2")=="" ) {
- messageBox ( "임플란트2 등록구분이 재등록이면 의료급여기관 구분, 재등록 시술 시작단계, 재등록 사유를 입력 하셔야 합니다.", "C" );
- return;
- }
- }
-
- submit("TXMMO25101");
- window.close();
- ]]>
- </script>
- </button>
- <button id="btn_exit" class="btn4_letter2" style="left:393px; top:300px; width:56px; height:22px; ">
- <caption>종료</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
-
- window.close();
- ]]>
- </script>
- </button>
- <caption id="caption13" class="cell_1" style="left:1px; top:45px; width:85px; height:23px; text-align:center; vertical-align:middle; ">환자명</caption>
- <caption id="cap_insukindnm" ref="/root/main/implantinfo/insukindnm" class="cell_1" style="left:315px; top:21px; width:133px; height:45px; font-size:11pt; font-weight:bold; text-align:center; vertical-align:middle; border-color:#000000; border-style:solid; "/>
- <input id="ipt_diagcnfmdate" ref="/root/main/implantinfo/diagcnfmdd" class="input_s_essential" disabled="true" inputtype="date" format="yyyy-mm-dd" disable.background-color="#ffffff" style="left:314px; top:95px; width:130px; height:19px; "/>
- <select1 id="combo2" ref="/root/main/implantinfo/ioflag" disabled="true" appearance="minimal" disable.background-color="#ffffff" style="left:89px; top:95px; width:130px; height:19px; ">
- <choices>
- <item>
- <label>외래</label>
- <value>O</value>
- </item>
- <item>
- <label>입원</label>
- <value>I</value>
- </item>
- </choices>
- </select1>
- <caption id="caption16" class="cell_1" style="left:0px; top:94px; width:85px; height:23px; text-align:center; vertical-align:middle; ">외래/입원구분</caption>
- <caption id="caption4" class="cell_1" style="left:0px; top:143px; width:85px; height:23px; text-align:center; vertical-align:middle; ">치식번호</caption>
- <caption id="caption5" class="cell_1" style="left:0px; top:168px; width:85px; height:23px; text-align:center; vertical-align:middle; ">등록구분</caption>
- <caption id="caption6" class="cell_1" style="left:0px; top:193px; width:85px; height:35px; text-align:center; vertical-align:middle; ">
- <![CDATA[의료급여
- 기관구분]]>
- </caption>
- <caption id="caption7" class="cell_1" style="left:0px; top:262px; width:85px; height:34px; text-align:center; vertical-align:middle; ">재등록 사유</caption>
- <caption id="caption9" class="cell_1" style="left:0px; top:230px; width:85px; height:30px; text-align:center; vertical-align:middle; ">
- <![CDATA[재등록 시술
- 시작 단계]]>
- </caption>
- <group id="grp_implant1" overflow="hidden" style="left:90px; top:143px; width:175px; height:155px; ">
- <input id="ipt_tootfact1" ref="/root/main/implantinfo/tootfact1" disable.background-color="#ffffff" style="left:0px; top:2px; width:70px; height:19px; "/>
- <button id="btn_srchtootfact1" class="icon_search" style="left:75px; top:3px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fSrchTootFact("Implant1");
- ]]>
- </script>
- <hint>
- <![CDATA[치식검색]]>
- </hint>
- </button>
- <button id="btn_eraser1" class="icon_eraser" style="left:95px; top:0px; width:23px; height:23px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.setValue ( "/root/main/implantinfo/tootfact1", "");
- model.refresh();
- ]]>
- </script>
- <hint>
- <![CDATA[치식삭제]]>
- </hint>
- </button>
- <select1 id="sel_regkind1" ref="/root/main/implantinfo/regkind1" appearance="full" cols="2" rows="1" overflow="visible" style="left:0px; top:27px; width:145px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>신규</label>
- <value>N</value>
- </item>
- <item>
- <label>재등록</label>
- <value>R</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var sRegKind1 = model.getValue("root/main/implantinfo/regkind1");
- if(sRegKind1 == "N") { // 등록구분이 신규이면
- fDisabledCheck("Implant1", true);
- } else {
- fDisabledCheck("Implant1", false);
- }
- ]]>
- </script>
- </select1>
- <select1 id="sel_reregkind1" ref="/root/main/implantinfo/reregkind1" appearance="full" cols="1" rows="2" overflow="visible" style="left:0px; top:51px; width:170px; height:33px; border-style:none; ">
- <choices>
- <item>
- <label>동일 의료급여기관 재등록</label>
- <value>S</value>
- </item>
- <item>
- <label>타 의료급여기관 재등록</label>
- <value>O</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var sReRegKind1 = model.getValue("root/main/implantinfo/reregkind1");
- if(sReRegKind1 == "S") { // 동일 의료급여기관 재등록
- model.setValue("/root/main/implantinfo/reregstart1", "2");
- sel_reregstart1.disabled = true;
- } else {
- model.setValue("/root/main/implantinfo/reregstart1", "");
- sel_reregstart1.disabled = false;
- }
- model.refresh();
- ]]>
- </script>
- </select1>
- <select1 id="sel_reregstart1" ref="/root/main/implantinfo/reregstart1" appearance="full" cols="3" rows="1" overflow="visible" style="left:0px; top:93px; width:145px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>1단계</label>
- <value>1</value>
- </item>
- <item>
- <label>2단계</label>
- <value>2</value>
- </item>
- <item>
- <label>3단계</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <select1 id="sel_reregresn1" ref="/root/main/implantinfo/reregresn1" appearance="full" cols="1" rows="2" overflow="visible" style="left:0px; top:120px; width:175px; height:35px; border-style:none; ">
- <choices>
- <item>
- <label>2단계 시술 실패(골유착실패)</label>
- <value>A</value>
- </item>
- <item>
- <label>진행불가(의료급여기관 폐업)</label>
- <value>B</value>
- </item>
- </choices>
- </select1>
- </group>
- <group id="grp_implant2" overflow="hidden" style="left:267px; top:143px; width:178px; height:155px; ">
- <input id="ipt_tootfact2" ref="/root/main/implantinfo/tootfact2" disable.background-color="#ffffff" style="left:3px; top:2px; width:70px; height:19px; "/>
- <button id="btn_srchtootfact2" class="icon_search" style="left:75px; top:3px; width:16px; height:16px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fSrchTootFact("Implant2");
- ]]>
- </script>
- <hint>
- <![CDATA[치식검색]]>
- </hint>
- </button>
- <button id="btn_eraser2" class="icon_eraser" style="left:95px; top:0px; width:23px; height:23px; ">
- <caption/>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- model.setValue ( "/root/main/implantinfo/tootfact2", "");
- model.refresh();
- ]]>
- </script>
- <hint>
- <![CDATA[치식삭제]]>
- </hint>
- </button>
- <select1 id="sel_regkind2" ref="/root/main/implantinfo/regkind2" appearance="full" cols="2" rows="1" overflow="visible" style="left:3px; top:27px; width:145px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>신규</label>
- <value>N</value>
- </item>
- <item>
- <label>재등록</label>
- <value>R</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var sRegKind2 = model.getValue("root/main/implantinfo/regkind2");
- if(sRegKind2 == "N") { // 등록구분이 신규이면
- fDisabledCheck("Implant2", true);
- } else {
- fDisabledCheck("Implant2", false);
- }
- ]]>
- </script>
- </select1>
- <select1 id="sel_reregkind2" ref="/root/main/implantinfo/reregkind2" appearance="full" cols="1" rows="2" overflow="visible" style="left:3px; top:51px; width:170px; height:33px; border-style:none; ">
- <choices>
- <item>
- <label>동일 의료급여기관 재등록</label>
- <value>S</value>
- </item>
- <item>
- <label>타 의료급여기관 재등록</label>
- <value>O</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- var sReRegKind2 = model.getValue("root/main/implantinfo/reregkind2");
- if(sReRegKind2 == "S") { // 동일 의료급여기관 재등록
- model.setValue("/root/main/implantinfo/reregstart2", "2");
- sel_reregstart2.disabled = true;
- } else {
- model.setValue("/root/main/implantinfo/reregstart2", "");
- sel_reregstart2.disabled = false;
- }
- model.refresh();
- ]]>
- </script>
- </select1>
- <select1 id="sel_reregstart2" ref="/root/main/implantinfo/reregstart2" appearance="full" cols="3" rows="1" overflow="visible" style="left:3px; top:93px; width:145px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>1단계</label>
- <value>1</value>
- </item>
- <item>
- <label>2단계</label>
- <value>2</value>
- </item>
- <item>
- <label>3단계</label>
- <value>3</value>
- </item>
- </choices>
- </select1>
- <select1 id="sel_reregresn2" ref="/root/main/implantinfo/reregresn2" appearance="full" cols="1" rows="2" overflow="visible" style="left:3px; top:120px; width:175px; height:35px; border-style:none; ">
- <choices>
- <item>
- <label>2단계 시술 실패(골유착실패)</label>
- <value>A</value>
- </item>
- <item>
- <label>진행불가(의료급여기관 폐업)</label>
- <value>B</value>
- </item>
- </choices>
- </select1>
- </group>
- <caption id="caption8" class="cell_1" style="left:90px; top:119px; width:175px; height:23px; text-align:center; vertical-align:middle; ">임플란트1</caption>
- <caption id="caption10" class="cell_1" style="left:269px; top:119px; width:175px; height:23px; text-align:center; vertical-align:middle; ">임플란트2</caption>
- </xhtml:body>
- </xhtml:html>
|