123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <!--
- * Name : SPCVO00300_VOC등록조회팝업
- * Summary : VOC접수조회팝업
- * Programmer : Roger Kim
- * Date Written : 2007.11.11
- * History : 2007.11.29
- * Remark :
- -->
- <?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>
- <list>
- <voclist>
- <acptseq/>
- <acptkindlrg/>
- <pid/>
- <patnm/>
- <prcsstat/>
- <acpttitl/>
- <acptdd/>
- <endtretdd/>
- <clntnm/>
- <acpttype/>
- <fstrgstrnm/>
- </voclist>
- </list>
- <search>
- <srchpid/>
- <srchpatnm/>
- <srchcintnm/>
- </search>
- <vocdata>
- <customer>
- <clntnm/>
- <resdnrgstno1/>
- <resdnrgstno2/>
- <pid/>
- <patnm/>
- <patrela/>
- <patphonno/>
- <patresdnrgstno1/>
- <patresdnrgstno2/>
- <zipcd1/>
- <zipcd2/>
- <zipcdseq/>
- <zipcdaddr/>
- <detladdr/>
- <hometelno/>
- <mpphonno/>
- <etctelno/>
- <emailaddr/>
- <gndr/>
- </customer>
- <accept>
- <acptseq/>
- <acptdd/>
- <genrdd/>
- <acpttype/>
- <prcsstat/>
- <acptkindlrg/>
- <acptkindmdl/>
- <acptkindsml/>
- <acpttitl/>
- <acptcnts/>
- <selfcnts/>
- <acpviewdd/>
- <openallyn/>
- <deptpidopenyn/>
- <selfyn/>
- <fstrgstrnm/>
- <lastupdtrnm/>
- </accept>
- <deptview>
- <deptnm/>
- <deptcd/>
- <empnm/>
- <empid/>
- <rgstseq/>
- </deptview>
- </vocdata>
- <temp>
- <key>
- <sndacptdd/>
- <sndacptseq/>
- <sndrgstseq/>
- </key>
- </temp>
- </main>
- <send/>
- <init>
- <C0001list>
- <cdid/>
- <cdnm/>
- </C0001list>
- <C0003list>
- <cdid/>
- <cdnm/>
- </C0003list>
- <C0004list>
- <cdid/>
- <cdnm/>
- </C0004list>
- <C0005list>
- <cdid/>
- <cdnm/>
- </C0005list>
- <C0006list>
- <cdid/>
- <cdnm/>
- </C0006list>
- <C0007list>
- <cdid/>
- <cdnm/>
- </C0007list>
- <C0008list>
- <cdid/>
- <cdnm/>
- </C0008list>
- <C0009list>
- <cdid/>
- <cdnm/>
- </C0009list>
- <C0010list>
- <cdid/>
- <cdnm/>
- </C0010list>
- <C0011list>
- <cdid/>
- <cdnm/>
- </C0011list>
- </init>
- </root>
- </instance>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/basiccodeweb/js/ZBC001.js"/>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- model.removeNodeset("/root/main/list/voclist");
-
- // 처음 검색 팝업을 띄울 때에는 기본 정보를 안 보여주고, 한번 검색 한 이후에는 최종선택한 정보를 기본적으로 가져옴..
- var s_srchpatnm = model.getValue("/root/main/search/srchpatnm");
- var s_srchpid = model.getValue("/root/main/search/srchpid");
- var s_srchcintnm = model.getValue("/root/main/search/srchcintnm");
-
- if (( s_srchpatnm == "" || s_srchpatnm == null ) && ( s_srchpid == "" || s_srchpid == null ) && ( s_srchcintnm == "" || s_srchcintnm == null )){
- model.setFocus("ipt_srchpatnm");
- } else {
- submit("TRCVO00301");
- model.SetFocus("grd_voclist");
- }
- fCheckAuth();
- model.refresh();
- ]]>
- </script>
- <script type="javascript">
- <![CDATA[
- function fCheckAuth() {
- // 권한체크
- if (!checkAuth("r")) {
- btn_search.disabled = true;
- btn_popSelfCnts.disabled = true;
- }
- if (!checkAuth("x")) {
- }
- if (!checkAuth("p")) {
- }
- }
- // 컨트롤을 초기화한다.
- function fInitControl(){
- model.setValue("/root/main/vocdata/customer/clntnm", "");
- model.setValue("/root/main/vocdata/customer/resdnrgstno1", "");
- model.setValue("/root/main/vocdata/customer/resdnrgstno2", "");
- model.setValue("/root/main/vocdata/customer/pid", "");
- model.setValue("/root/main/vocdata/customer/patnm", "");
- model.setValue("/root/main/vocdata/customer/patresdnrgstno1", "");
- model.setValue("/root/main/vocdata/customer/patresdnrgstno2", "");
- model.setValue("/root/main/vocdata/customer/patphonno", "");
- model.setValue("/root/main/vocdata/customer/patrela", "");
- model.setValue("/root/main/vocdata/customer/zipcd1", "");
- model.setValue("/root/main/vocdata/customer/zipcd2", "");
- model.setValue("/root/main/vocdata/customer/zipcdaddr", "");
- model.setValue("/root/main/vocdata/customer/detladdr", "");
- model.setValue("/root/main/vocdata/customer/hometelno", "");
- model.setValue("/root/main/vocdata/customer/mpphonno", "");
- model.setValue("/root/main/vocdata/customer/etctelno", "");
- model.setValue("/root/main/vocdata/customer/emailaddr", "");
- model.setValue("/root/main/vocdata/customer/gndr", "M");
-
- model.setValue("/root/main/vocdata/accept/acptseq", "");
- model.setValue("/root/main/vocdata/accept/acptdd", "");
- model.setValue("/root/main/vocdata/accept/acpviewdd", "");
- model.setValue("/root/main/vocdata/accept/genrdd", "");
- model.setValue("/root/main/vocdata/accept/acpttype", "");
- model.setValue("/root/main/vocdata/accept/prcsstat", "");
- model.setValue("/root/main/vocdata/accept/acptkindlrg", "");
- model.setValue("/root/main/vocdata/accept/acptkindmdl", "");
- model.setValue("/root/main/vocdata/accept/acptkindsml", "");
- model.setValue("/root/main/vocdata/accept/acpttitl", "");
- model.setValue("/root/main/vocdata/accept/acptcnts", "");
- model.setValue("/root/main/vocdata/accept/selfcnts", "");
- model.setValue("/root/main/vocdata/accept/openallyn", "");
- model.setValue("/root/main/vocdata/accept/fstrgstrnm", "");
- model.setValue("/root/main/vocdata/accept/lastupdtrnm", "");
- model.removeNodeset("/root/main/vocdata/deptview");
- btn_popSelfCnts.disabled = "true";
-
- model.refresh();
- }
- ]]>
- </script>
- <submission id="TRCVO00301" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/main/search" replace="instance" add="bottom" resultref="/root/main/list"/>
- <submission id="TRCVO00302" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/main/temp/key" resultref="/root/main/vocdata"/>
- <submission id="TRZBC00101" mediatype="application/x-www-form-urlencoded" method="post" replace="instance"/>
- </model>
- </xhtml:head>
- <xhtml:body pagewidth="790" pageheight="670" style="margin-left:8; margin-top:8; margin-right:8; margin-bottom:8; ">
- <group id="grp_Condition" scroll="auto" style="left:0px; top:0px; width:765px; height:230px; ">
- <group id="group2" style="left:0px; top:0px; width:764px; height:35px; vertical-align:top; ">
- <shape id="roundrect1" appearance="roundrect" style="left:0px; top:0px; width:764px; height:35px; "/>
- <caption id="caption2" class="search_name" style="left:15px; top:9px; width:77px; height:17px; ">환자명 :</caption>
- <input id="ipt_srchpatnm" ref="/root/main/search/srchpatnm" class="input_search" imemode="hangul" style="left:95px; top:8px; width:90px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- inputEnterKey("btn_search", "DOMActivate");
- ]]>
- </script>
- </input>
- <caption id="caption1" class="search_name" style="left:242px; top:9px; width:86px; height:17px; ">등록번호 :</caption>
- <input id="ipt_srchpid" ref="/root/main/search/srchpid" class="input_search" imemode="disabled" format="9999999999" style="left:332px; top:8px; width:90px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- inputEnterKey("btn_search", "DOMActivate");
- ]]>
- </script>
- </input>
- <caption id="caption3" class="search_name" style="left:458px; top:9px; width:77px; height:17px; ">민원인 :</caption>
- <input id="ipt_srchcintnm" ref="/root/main/search/srchcintnm" class="input_search" imemode="hangul" style="left:538px; top:8px; width:90px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- inputEnterKey("btn_search", "DOMActivate");
- ]]>
- </script>
- </input>
- <line id="line1" style="x1:663px; y1:7px; x2:663px; y2:29px; border-color:#ffe4bb; border-left-style:solid; "/>
- <button id="btn_search" class="btn1_letter2" style="left:688px; top:7px; width:56px; height:22px; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if ( ( ipt_srchpatnm.value.length == 0 ) && (ipt_srchpid.value.length == 0) && (ipt_srchcintnm.value.length == 0) ){
- messageBox("환자 이름, 등록번호, 민원인 중에 적어도 하나는 ", "C001");
- model.setFocus("ipt_srchpatnm");
- } else if ( ( ipt_srchpatnm.value.length > 0 ) && (ipt_srchpatnm.value.length < 2) ){
- messageBox("환자 이름 검색은 최소 2글자 이상 ", "C001");
- model.setFocus("ipt_srchpatnm");
- } else if ( ( ipt_srchcintnm.value.length > 0 ) && (ipt_srchcintnm.value.length < 2) ){
- messageBox("민원인 검색은 최소 2글자 이상 ", "C001");
- model.setFocus("ipt_srchcintnm");
- } else {
- model.removeNodeset("/root/main/list/voclist");
- fInitControl();
- btn_popCustomer.disabled = true;
- submit("TRCVO00301");
- model.SetFocus("grd_voclist");
- }
- ]]>
- </script>
- </button>
- </group>
- <caption id="caption9" class="tit_2" style="left:5px; top:40px; width:139px; height:14px; vertical-align:middle; ">VOC 접수 이력 조회</caption>
- <line id="line12" class="line_1" style="x1:0px; y1:55px; x2:764px; y2:55px; "/>
- <datagrid id="grd_voclist" nodeset="/root/main/list/voclist" allowselection="false" caption="접수번호^접수유형^등록번호^환자명^진행상태^제목^접수일자^종료일자^민원인^접수구분^등록자" colwidth="70, 70, 85, 75, 80, 325, 80, 80, 80, 80, 80" dataheight="25" defaultrows="0" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheader="seq" rowheight="32" style="left:0px; top:60px; width:764px; height:170px; ">
- <col class="text_center" ref="acptseq"/>
- <col class="text_center" ref="acptkindlrg"/>
- <col class="text_center" ref="pid"/>
- <col class="text_center" ref="patnm"/>
- <col class="text_center" ref="prcsstat"/>
- <col ref="acpttitl"/>
- <col class="text_center" ref="acptdd"/>
- <col class="text_center" ref="endtretdd"/>
- <col class="text_center" ref="clntnm"/>
- <col class="text_center" ref="acpttype"/>
- <col class="text_center" ref="fstrgstrnm"/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- var row = grd_voclist.row;
- var receive_acptdd = grd_voclist.valueMatrix(row, grd_voclist.colRef("acptdd"));
- var receive_acptseq = grd_voclist.valueMatrix(row, grd_voclist.colRef("acptseq"));
- if ((grd_voclist.row > 0) && grd_voclist.isCell(event.target)){
- if (( receive_acptdd == "" || receive_acptdd == null ) || ( receive_acptseq == "" || receive_acptseq == null )) {
- messageBox("조회에 필요한 항목이 전달되지", "E007");
- model.SetFocus("grd_voclist");
- } else {
- model.setValue("/root/main/temp/key/sndacptdd", receive_acptdd);
- model.setValue("/root/main/temp/key/sndacptseq", receive_acptseq);
-
- fInitControl();
- model.removeNodeset("/root/init/C0001list/C0001");
- model.removeNodeset("/root/init/C0003list/C0003");
- model.removeNodeset("/root/init/C0004list/C0004");
- model.removeNodeset("/root/init/C0005list/C0005");
- model.removeNodeset("/root/init/C0006list/C0006");
- model.removeNodeset("/root/init/C0007list/C0007");
- model.removeNodeset("/root/init/C0008list/C0008");
- model.removeNodeset("/root/init/C0009list/C0009");
- model.removeNodeset("/root/init/C0010list/C0010");
- model.removeNodeset("/root/init/C0011list/C0011");
- btn_popCustomer.disabled = false;
-
- submit("TRCVO00302");
-
- if( model.getValue("/root/main/vocdata/accept/acptkindlrg") == "C" ) {
- switch (model.getValue("/root/main/vocdata/accept/acptkindmdl")) {
- case "ES" :
- cmb_AcptKindSml.choices.itemset.attribute("nodeset") = "/root/init/C0005list/C0005";
- zbcfGetCodeList( new Array("C0001", "C0003", "C0004", "C0005", "C0011"), new Array("/root/init/C0001list", "/root/init/C0003list", "/root/init/C0004list", "/root/init/C0005list", "/root/init/C0011list"), true );
- break;
- case "PS" :
- cmb_AcptKindSml.choices.itemset.attribute("nodeset") = "/root/init/C0006list/C0006";
- zbcfGetCodeList( new Array("C0001", "C0003", "C0004", "C0006", "C0011"), new Array("/root/init/C0001list", "/root/init/C0003list", "/root/init/C0004list", "/root/init/C0006list", "/root/init/C0011list"), true );
- break;
- case "OS" :
- cmb_AcptKindSml.choices.itemset.attribute("nodeset") = "/root/init/C0007list/C0007";
- zbcfGetCodeList( new Array("C0001", "C0003", "C0004", "C0007", "C0011"), new Array("/root/init/C0001list", "/root/init/C0003list", "/root/init/C0004list", "/root/init/C0007list", "/root/init/C0011list"), true );
- break;
- case "NS" :
- cmb_AcptKindSml.choices.itemset.attribute("nodeset") = "/root/init/C0008list/C0008";
- zbcfGetCodeList( new Array("C0001", "C0003", "C0004", "C0008", "C0011"), new Array("/root/init/C0001list", "/root/init/C0003list", "/root/init/C0004list", "/root/init/C0008list", "/root/init/C0011list"), true );
- break;
- case "TS" :
- cmb_AcptKindSml.choices.itemset.attribute("nodeset") = "/root/init/C0009list/C0009";
- zbcfGetCodeList( new Array("C0001", "C0003", "C0004", "C0009", "C0011"), new Array("/root/init/C0001list", "/root/init/C0003list", "/root/init/C0004list", "/root/init/C0009list", "/root/init/C0011list"), true );
- break;
- default :
- zbcfGetCodeList( new Array("C0001", "C0003", "C0004", "C0011"), new Array("/root/init/C0001list", "/root/init/C0003list", "/root/init/C0004list", "/root/init/C0011list"), true );
- break;
- }
- } else {
- zbcfGetCodeList( new Array("C0001", "C0003", "C0011"), new Array("/root/init/C0001list", "/root/init/C0003list", "/root/init/C0011list"), true );
- }
-
- if( model.getValue("/root/main/vocdata/accept/prcsstat") == "자체처리" ) {
- btn_popSelfCnts.disabled = false;
- }
- model.refresh();
- }
- // opener.model.setValue("/root/main/temp/key/sndacptdd", receive_acptdd);
- // opener.model.setValue("/root/main/temp/key/sndacptseq", receive_acptseq);
- // opener.model.refresh();
- //
- // opener.javascript.navigate("SMCVA00300", "", "", "", "SMCVA00300", "/root/main/temp", "/root/main/temp");
- // window.close();
- } else {
- }
- ]]>
- </script>
- </datagrid>
- </group>
- <group id="grp_Accept" style="left:0px; top:252px; width:764px; height:395px; ">
- <caption id="caption23" class="tit_2" style="left:5px; top:10px; width:126px; height:14px; ">등록된 접수내역</caption>
- <caption id="caption15" class="search_no_b" style="left:472px; top:6px; width:48px; height:17px; ">등록자</caption>
- <output id="opt_fstrgstrnm" ref="/root/main/vocdata/accept/fstrgstrnm" class="output_fix" style="left:518px; top:5px; width:80px; height:19px; text-align:center; "/>
- <caption id="caption7" class="search_no_b" style="left:607px; top:6px; width:74px; height:17px; ">최종수정자</caption>
- <output id="opt_lastupdtrnm" ref="/root/main/vocdata/accept/lastupdtrnm" class="output_fix" style="left:682px; top:5px; width:80px; height:19px; text-align:center; "/>
- <select id="chk_deptpidopen" ref="/root/main/vocdata/accept/deptpidopenyn" overflow="visible" appearance="full" style="left:604px; top:127px; width:151px; height:19px; font-weight:bold; border-style:none; ">
- <choices>
- <item>
- <label>부서에 환자정보 공개</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <select id="chk_allopen" ref="/root/main/vocdata/accept/openallyn" overflow="visible" appearance="full" style="left:604px; top:107px; width:156px; height:19px; font-weight:bold; border-style:none; ">
- <choices>
- <item>
- <label>모든 부서에 내용 공개</label>
- <value>Y</value>
- </item>
- </choices>
- </select>
- <line id="line10" class="line_1" style="x1:0px; y1:25px; x2:764px; y2:25px; "/>
- <line id="line2" class="line_2" style="x1:0px; y1:52px; x2:764px; y2:52px; "/>
- <caption id="caption5" class="cell_1" style="left:0px; top:30px; width:90px; height:23px; text-align:center; vertical-align:middle; ">접수번호</caption>
- <output id="output1" ref="/root/main/vocdata/accept/acptseq" class="output_fix" appearance="input" style="left:93px; top:31px; width:90px; height:19px; "/>
- <caption id="caption6" class="cell_1" style="left:187px; top:30px; width:90px; height:23px; text-align:center; vertical-align:middle; ">환자명</caption>
- <input id="input1" ref="/root/main/vocdata/customer/patnm" class="input_default" editable="false" appearance="input" style="left:280px; top:31px; width:90px; height:19px; "/>
- <caption id="caption8" class="cell_1" style="left:375px; top:30px; width:90px; height:23px; text-align:center; vertical-align:middle; ">환자와의 관계</caption>
- <select1 id="combo1" ref="/root/main/vocdata/customer/patrela" class="combo_default" disabled="true" appearance="minimal" style="left:468px; top:31px; width:90px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/C0011list/C0011">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption12" class="cell_1" style="left:562px; top:30px; width:90px; height:23px; text-align:center; vertical-align:middle; ">민원인</caption>
- <input id="input2" ref="/root/main/vocdata/customer/clntnm" class="input_default" editable="false" appearance="input" style="left:654px; top:31px; width:108px; height:19px; "/>
- <line id="line11" class="line_2" style="x1:0px; y1:76px; x2:764px; y2:76px; "/>
- <caption id="caption24" class="cell_1" style="left:0px; top:54px; width:90px; height:23px; text-align:center; vertical-align:middle; ">접수일자</caption>
- <input id="ipt_AcptViewDD" ref="/root/main/vocdata/accept/acpviewdd" class="input_default" editable="false" style="left:93px; top:55px; width:90px; height:19px; "/>
- <caption id="caption25" class="cell_1" style="left:187px; top:54px; width:90px; height:23px; text-align:center; vertical-align:middle; ">발생일자</caption>
- <input id="ipt_GenrDD" ref="/root/main/vocdata/accept/genrdd" class="input_default" editable="false" style="left:280px; top:55px; width:90px; height:19px; "/>
- <caption id="caption26" class="cell_1" style="left:375px; top:54px; width:90px; height:23px; text-align:center; vertical-align:middle; ">접수구분</caption>
- <select1 id="cmb_AcptType" ref="/root/main/vocdata/accept/acpttype" class="combo_default" disabled="true" appearance="minimal" style="left:468px; top:55px; width:90px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/C0001list/C0001">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <caption id="caption13" class="cell_1" style="left:562px; top:54px; width:90px; height:23px; text-align:center; vertical-align:middle; ">진행상태</caption>
- <output id="opt_PrcsStat" ref="/root/main/vocdata/accept/prcsstat" class="output_fix" style="left:654px; top:55px; width:108px; height:19px; "/>
- <line id="line13" class="line_2" style="x1:0px; y1:100px; x2:764px; y2:100px; "/>
- <caption id="caption28" class="cell_1" style="left:0px; top:78px; width:90px; height:23px; text-align:center; vertical-align:middle; ">접수유형</caption>
- <select1 id="cmb_AcptKindLrg" ref="/root/main/vocdata/accept/acptkindlrg" class="combo_default" disabled="true" appearance="minimal" style="left:93px; top:79px; width:130px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/C0003list/C0003">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <select1 id="cmb_AcptKindMdl" ref="/root/main/vocdata/accept/acptkindmdl" class="combo_default" disabled="true" appearance="minimal" style="left:225px; top:79px; width:130px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/C0004list/C0004">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <select1 id="cmb_AcptKindSml" ref="/root/main/vocdata/accept/acptkindsml" class="combo_default" disabled="true" appearance="minimal" style="left:357px; top:79px; width:130px; height:19px; ">
- <choices>
- <itemset nodeset="/root/init/C0005list/C0005">
- <label ref="cdnm"/>
- <value ref="cdid"/>
- </itemset>
- </choices>
- </select1>
- <button id="btn_popCustomer" class="btn2_letter9" disabled="true" style="left:519px; top:79px; width:119px; height:19px; ">
- <caption>접수고객정보 보기</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- open("SPCVO00800", "", "460", "120", "SPCVO00800", "/root/main/temp/key", "/root/main/temp/key");
- ]]>
- </script>
- </button>
- <button id="btn_popSelfCnts" class="btn2_letter9" disabled="true" style="left:642px; top:79px; width:119px; height:19px; ">
- <caption>자체처리의견 보기</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- open("SPCVO00900", "", "460", "120", "SPCVO00900", "/root/main/temp/key", "/root/main/temp/key");
- ]]>
- </script>
- </button>
- <line id="line14" class="line_2" style="x1:0px; y1:179px; x2:764px; y2:179px; "/>
- <caption id="caption29" class="cell_1" style="left:0px; top:102px; width:90px; height:78px; text-align:center; vertical-align:middle; ">
- <![CDATA[민원이
- 제기된
- 부서 및 직원]]>
- </caption>
- <datagrid id="grd_dept" nodeset="/root/main/vocdata/deptview" class="datagrid0" caption="해당부서^부서코드^해당직원^직원ID^등록순서" colwidth="225, 40, 100, 50, 0" dataheight="23" defaultrows="0" extendlastcol="scroll" mergecellsfixedrows="bycolrec" rowheader="update" rowheight="23" rowsep="|" style="left:93px; top:103px; width:450px; height:76px; ">
- <col class="text_center" ref="deptnm"/>
- <col class="text_center" ref="deptcd" visibility="hidden"/>
- <col class="text_center" ref="empnm"/>
- <col class="text_center" ref="empid" visibility="hidden"/>
- <col ref="rgstseq" visibility="hidden"/>
- </datagrid>
- <line id="line15" class="line_2" style="x1:0px; y1:203px; x2:764px; y2:203px; "/>
- <caption id="caption33" class="cell_1" style="left:0px; top:181px; width:90px; height:23px; text-align:center; vertical-align:middle; ">제 목</caption>
- <input id="ipt_AcptTitl" ref="/root/main/vocdata/accept/acpttitl" class="input_default" editable="false" style="left:93px; top:182px; width:670px; height:19px; "/>
- <line id="line16" class="line_3" style="x1:0px; y1:391px; x2:764px; y2:391px; "/>
- <caption id="caption34" class="cell_1" style="left:0px; top:205px; width:90px; height:187px; text-align:center; vertical-align:middle; ">
- <![CDATA[민원 내용]]>
- </caption>
- <textarea id="tar_AcptCnts" ref="/root/main/vocdata/accept/acptcnts" scroll="vertical" editable="false" style="left:93px; top:206px; width:670px; height:183px; "/>
- </group>
- <group id="group5" scroll="auto" style="left:200px; top:230px; width:564px; height:27px; ">
- <button id="btn_close" class="btn4_letter2" style="left:507px; top:5px; width:56px; height:22px; ">
- <caption>닫기</caption>
- <close ev:event="DOMActivate"/>
- </button>
- </group>
- </xhtml:body>
- </xhtml:html>
|