123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573 |
- <?xml version="1.0" encoding="UTF-8"?>
- <?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>
- <tablelist/>
- <ownerlist>
- <codename/>
- <codevalue/>
- </ownerlist>
- <desc>
- <indexinfo/>
- <tableinfo>
- <tableName/>
- <tableSpaceName/>
- <cmt/>
- <numrows/>
- <lastAnalyzed/>
- <part/>
- </tableinfo>
- <desclist/>
- </desc>
- <table/>
- <tableinput/>
- <mstCodeList/>
- <commentsinput/>
- <pamCdgrList/>
- <pamCodeList/>
- </main>
- <send>
- <owner/>
- <tableName/>
- <likeflag/>
- <mstCode>
- <code/>
- <codeName/>
- </mstCode>
- <tableCmt/>
- <columnCmt/>
- <tableComments/>
- <pamCode>
- <cdGrupId/>
- <cdGrupNm/>
- </pamCode>
- <columnName/>
- </send>
- <init>
- </init>
- <hidden>
- <copyOption>0</copyOption>
- </hidden>
- <temp/>
- </root>
- </instance>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- // 화면초기화(ownerlist설정)
- submit("TRZDM00301");
- ]]>
- </script>
- <submission id="TRZDM00301" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/main/ownerlist" resultref="/root/main/ownerlist"/>
- <submission id="TRZDM00302" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/tablelist"/>
- <submission id="TRZDM00303" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/desc"/>
- <submission id="TRZDM00401" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/mstCode" resultref="/root/main/mstCodeList"/>
- <submission id="TXZDM00304" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send"/>
- <submission id="TXZDM00305" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send"/>
- <submission id="TRZDM00402" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/pamCode" resultref="/root/main/pamCdgrList"/>
- <submission id="TRZDM00403" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send/pamCode" resultref="/root/main/pamCodeList"/>
- </model>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/stringHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript">
- <![CDATA[
- function getTableList() { // 테이블리스트 조회메소드
-
- // owner가 선택되지 않았을 경우
- if (model.getValue("/root/main/ownerlist") == '') {
- messageBox("OWNER를", "C001");
-
- // 테이블명이 입력되지 않았을 때, 혹은 테이블이 선택되지 않았을 경우
- } else if (model.getValue("/root/main/tableinput") == '' && model.getValue("/root/main/commentsinput") == '' ) {
- messageBox("테이블명 또는 COMMENTS를", "C001");
-
- // owner + table이 선택되어 있는 경우
- } else {
- model.setValue("/root/send/owner", model.getValue("/root/main/ownerlist"));
- model.setValue("/root/send/tableName", model.getValue("/root/main/tableinput"));
- model.setValue("/root/send/tableComments", model.getValue("/root/main/commentsinput"));
- model.setValue("/root/send/likeflag", true);
- submit("TRZDM00302");
- }
- }
-
- function fValidFormCode() {
-
- var mstCode = model.getValue("/root/send/mstCode/code");
- var mstCodeName = model.getValue("/root/send/mstCode/codeName");
-
- // 필수체크
- if ((mstCode == null || mstCode == "") && (mstCodeName == null || mstCodeName == "")) {
-
- messageBox("마스터코드 또는 마스터코드명을", "C001");
-
- return false;
- }
-
- // 길이체크(코드SID)
- if (mstCode != null && mstCode != "") {
-
- if (mstCode.length < 2) {
-
- messageBox("코드SID는 2자리 이상", "C001");
-
- return false;
- }
- }
-
- // 길이체크(코드명칭)
- if (mstCodeName != null && mstCodeName != "") {
-
- if (mstCodeName.length < 2) {
-
- messageBox("코드명칭은 2자리 이상", "C001");
-
- return false;
- }
- }
-
- return true;
- }
-
- // 원무 공통코드 조회
- function ifValidFormPamCode() {
- var pamCode = model.getValue("/root/send/pamCode/cdGrupId");
- var pamCodeName = model.getValue("/root/send/pamCode/cdGrupNm");
-
- // 필수체크
- if ((pamCode == null || pamCode == "") && (pamCodeName == null || pamCodeName == "")) {
-
- messageBox("코드군ID 또는 코드군명칭을", "C001");
-
- return false;
- }
-
- // 길이체크(코드SID)
- if (pamCode != null && pamCode != "") {
-
- if (pamCode.length < 2) {
-
- messageBox("코드SID는 2자리 이상", "C001");
-
- return false;
- }
- }
-
- // 길이체크(코드명칭)
- if (pamCodeName != null && pamCodeName != "") {
-
- if (pamCodeName.length < 2) {
-
- messageBox("코드군명칭은 2자리 이상", "C001");
-
- return false;
- }
- }
-
- return true;
- }
-
- // 마스터코드 조회
- function fSubmitCodeInfo() {
- if (fValidFormCode()) {
- submit("TRZDM00401");
- }
- }
-
- // 원무 공통코드 조회
- function fSubmitPamCodeInfo() {
- if (ifValidFormPamCode()) {
- submit("TRZDM00402");
- }
- }
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body guideline="1,1211;2,789;">
- <caption id="caption1" class="tit_1" style="left:0px; top:0px; width:120px; height:13px; vertical-align:middle; ">테이블정보조회</caption>
- <button id="button2" class="btn_sw" group="tab" selected="true" style="left:10px; top:20px; width:120px; height:22px; ">
- <caption>테이블정보</caption>
- <toggle case="case1" ev:event="onclick"/>
- </button>
- <button id="button3" class="btn_sw" group="tab" style="left:130px; top:20px; width:120px; height:22px; ">
- <caption>마스터코드정보</caption>
- <toggle case="case2" ev:event="onclick"/>
- </button>
- <button id="button6" class="btn_sw" group="tab" style="left:250px; top:20px; width:120px; height:22px; ">
- <caption>원무공통코드정보</caption>
- <toggle case="case3" ev:event="onclick"/>
- </button>
- <switch id="switch1" class="sw_box" style="left:0px; top:40px; width:1200px; height:730px; ">
- <case id="case1" selected="true">
- <!-- 테이블정보 디자인 시작 -->
- <shape id="roundrect4" appearance="roundrect" ellipsewidth="20" ellipseheight="20" style="left:5px; top:10px; width:205px; height:710px; "/>
- <shape id="roundrect2" appearance="roundrect" ellipsewidth="20" ellipseheight="20" style="left:220px; top:205px; width:970px; height:515px; "/>
- <shape id="roundrect1" appearance="roundrect" ellipsewidth="20" ellipseheight="20" style="left:220px; top:10px; width:380px; height:185px; "/>
- <caption id="caption3" class="tit_2" style="left:15px; top:20px; width:100px; height:13px; ">OWNER</caption>
- <caption id="caption4" class="tit_2" style="left:15px; top:79px; width:100px; height:13px; ">TABLE</caption>
- <caption id="caption5" class="tit_2" style="left:230px; top:215px; width:120px; height:13px; ">COLUMN 정보</caption>
- <datagrid id="datagrid2" nodeset="/root/main/desc/desclist" caption="COLUMN^CONSTRAINT^TYPE^LEN^COMMENTS (본 항목의 수정은 1row씩만 가능합니다!!!)" colsep="^" colwidth="140, 90, 88, 46, 544" explorerbar="sortshowmove" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" navindex="-1" style="left:230px; top:240px; width:950px; height:470px; font-size:9pt; ">
- <col ref="colName"/>
- <col ref="constType"/>
- <col ref="dataType"/>
- <col ref="dataLength"/>
- <col ref="cmt" type="input"/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- var curRow = datagrid2.row;
-
- if ( curRow > 0 ) {
-
- // 선택한 열에 대한 column 명을 클립보드에 복사
- var strColumnName = model.getValue("/root/main/desc/desclist["+curRow+"]/colName");
- if (model.getValue("/root/hidden/copyOption") == '1') {
- strColumnName = strColumnName + ',';
- } else if (model.getValue("/root/hidden/copyOption") == '2') {
- strColumnName = 'AND ' + strColumnName;
- }
- window.clipBoardData = strColumnName;
- }
- ]]>
- </script>
- </datagrid>
- <select1 id="combo_owner" ref="/root/main/ownerlist" class="combo_default" navindex="1" appearance="minimal" style="left:15px; top:39px; width:185px; height:19px; ">
- <choices>
- <itemset nodeset="/root/main/ownerlist">
- <label ref="codename"/>
- <value ref="codevalue"/>
- </itemset>
- </choices>
- <script type="javascript" ev:event="xforms-select">
- <![CDATA[
- model.setValue("/root/send/owner", model.getValue("/root/main/ownerlist"));
-
- // 기존의 테이블선택정보를 삭제
- input1.value = "";
- model.setValue("/root/send/tableName", "");
- model.setValue("/root/send/likeflag", false);
-
- submit("TRZDM00302");
- ]]>
- </script>
- </select1>
- <input id="input1" ref="/root/main/tableinput" navindex="2" imemode="alpha" validateformat="false" _chartype="upper" style="left:15px; top:120px; width:185px; height:19px; ">
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- // Enter 입력 시
- if (event.keyCode == "13") {
-
- // 현재 입력값 노드 반영
- setInputNodeCurText();
- model.setValue("/root/send/tableName", input1.value);
- model.setValue("/root/send/likeflag", true);
-
- // 테이블리스트 조회메소드 호출
- getTableList()
- }
- ]]>
- </script>
- </input>
- <caption id="caption6" class="search_name" style="left:10px; top:98px; width:135px; height:17px; ">테이블명으로 검색</caption>
- <caption id="caption7" class="tit_2" style="left:230px; top:20px; width:100px; height:13px; ">TABLE 정보조회</caption>
- <input id="input2" ref="/root/main/desc/tableinfo/cmt" navindex="-1" editable="false" style="left:345px; top:93px; width:245px; height:19px; "/>
- <caption id="caption8" style="left:235px; top:93px; width:81px; height:20px; ">COMMENTS :</caption>
- <input id="input4" ref="/root/main/desc/tableinfo/lastAnalyzed" navindex="-1" editable="false" style="left:345px; top:117px; width:245px; height:19px; "/>
- <caption id="caption9" style="left:235px; top:165px; width:87px; height:20px; ">PARTITIONED :</caption>
- <input id="input5" ref="/root/main/desc/tableinfo/numrows" navindex="-1" editable="false" style="left:345px; top:141px; width:245px; height:19px; "/>
- <caption id="caption10" style="left:235px; top:140px; width:78px; height:20px; ">NUM_ROWS :</caption>
- <caption id="caption11" style="left:235px; top:117px; width:104px; height:20px; ">LAST_ANALIZED :</caption>
- <input id="input6" ref="/root/main/desc/tableinfo/part" navindex="-1" editable="false" style="left:345px; top:165px; width:245px; height:19px; "/>
- <caption id="caption12" style="left:235px; top:69px; width:95px; height:20px; ">TABLE_SPACE :</caption>
- <input id="input7" ref="/root/main/desc/tableinfo/tableSpaceName" navindex="-1" editable="false" style="left:345px; top:69px; width:245px; height:19px; "/>
- <caption id="caption13" class="search_name" style="left:10px; top:245px; width:95px; height:17px; ">테이블 선택</caption>
- <shape id="roundrect3" appearance="roundrect" ellipsewidth="20" ellipseheight="20" style="left:610px; top:10px; width:580px; height:185px; "/>
- <input id="input3" ref="/root/main/desc/tableinfo/tableName" navindex="-1" editable="false" style="left:345px; top:45px; width:245px; height:19px; ">
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
-
- var strTableName = model.getValue("/root/main/desc/tableinfo/tableName");
-
- if (!isNull(strTableName)) {
-
- strTableName = model.getValue("/root/main/ownerlist") + "." + strTableName;
-
- // 클립보드에 복사
- window.clipBoardData = strTableName;
- }
- ]]>
- </script>
- </input>
- <caption id="caption14" style="left:235px; top:45px; width:95px; height:20px; ">TABLE_NAME :</caption>
- <datagrid id="datagrid3" nodeset="/root/main/desc/indexinfo" caption="INDEX^COLUMN" colsep="^" colwidth="218, 321" mergecellsfixedrows="bycolrec" rowsep="|" navindex="-1" style="left:620px; top:45px; width:560px; height:140px; ">
- <col ref="indexName"/>
- <col ref="columnName"/>
- </datagrid>
- <caption id="caption15" class="tit_2" style="left:620px; top:20px; width:100px; height:13px; ">INDEX 정보조회</caption>
- <button id="button1" class="btn1_letter2" navindex="4" style="left:145px; top:199px; width:56px; height:22px; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- // 테이블리스트 조회메소드 호출
- getTableList();
- ]]>
- </script>
- </button>
- <button id="button10_r" class="icon_right" navindex="-1" style="left:170px; top:243px; width:26px; height:19px; ">
- <caption/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- datagrid1.attribute("overflow") = "scroll";
- datagrid1.attribute("width") = "480";
- ]]>
- </script>
- </button>
- <button id="button10_l" class="icon_left" navindex="-1" style="left:139px; top:243px; width:26px; height:19px; ">
- <caption/>
- <script type="javascript" ev:event="onclick">
- <![CDATA[
- datagrid1.attribute("overflow") = "scroll";
- datagrid1.attribute("width") = "185";
- ]]>
- </script>
- </button>
- <!-- 테이블정보 디자인 종료 -->
- <datagrid id="datagrid1" nodeset="/root/main/tablelist" caption="TABLE^COMMENTS" colsep="^" colwidth="165, 333" mergecellsfixedrows="bycolrec" rowsep="|" navindex="5" style="left:15px; top:270px; width:185px; height:440px; ">
- <col ref="tablename"/>
- <col ref="cmt"/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- // 선택한 행 정보(테이블명) 설정
- model.setValue("/root/send/tableName", model.getValue("/root/main/tablelist[" + datagrid1.row + "]/tablename"));
-
- submit("TRZDM00303");
- ]]>
- </script>
- </datagrid>
- <input id="input10" ref="/root/main/commentsinput" navindex="3" imemode="hangul" validateformat="false" style="left:15px; top:170px; width:185px; height:19px; ">
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- // Enter 입력 시
- if (event.keyCode == "13") {
-
- // 현재 입력값 노드 반영
- setInputNodeCurText();
- model.setValue("/root/send/tableName", input1.value);
- model.setValue("/root/send/likeflag", true);
-
- // 테이블리스트 조회메소드 호출
- getTableList()
- }
- ]]>
- </script>
- </input>
- <caption id="caption19" class="search_name" style="left:10px; top:148px; width:147px; height:17px; ">COMMENTS로 검색</caption>
- <button id="button5" class="btn2_letter2" navindex="-1" style="left:990px; top:214px; width:42px; height:19px; ">
- <caption>출력</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- exeReportPreview("RPZDM00300", "XMLSTR", "/root/send/report");
- ]]>
- </script>
- </button>
- <button id="button8" class="btn4_letter8" style="left:1040px; top:213px; width:128px; height:22px; ">
- <caption>COMMENTS저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var curRow = datagrid2.row;
-
- if ( curRow > 0 ) {
-
- var msg = "****** 주 의 ******\r\n\r\n"
- + "테이블 컬럼의 코멘트 수정은 신중을 기해주시기 바랍니다.\r\n\r\n"
- + model.getValue("/root/main/desc/tableinfo/tableName")
- + "." + model.getValue("/root/main/desc/desclist["+curRow+"]/colName")
- + "의 코멘트를 '" + model.getValue("/root/main/desc/desclist["+curRow+"]/cmt")
- + "' (으)로";
-
- if(messageBox(msg, "Q012") == 6) {
-
- // 선택한 열에 대한 요약정보를 클립보드에 복사
- model.setValue("/root/send/owner", model.getValue("/root/main/ownerlist"));
- model.setValue("/root/send/tableName", model.getValue("/root/main/desc/tableinfo/tableName"));
- model.setValue("/root/send/columnName", model.getValue("/root/main/desc/desclist["+curRow+"]/colName"));
- model.setValue("/root/send/columnCmt", model.getValue("/root/main/desc/desclist["+curRow+"]/cmt"));
-
- if (submit("TXZDM00304")) {
-
- messageBox("COMMENTS수정", "I001");
- }
-
-
- }
-
- } else {
-
- messageBox("수정대상이 선택되지 않았습니다.", "C000");
- }
- ]]>
- </script>
- </button>
- <caption id="caption25" style="left:368px; top:218px; width:205px; height:20px; color:#ff0000; ">* 더블클릭 → COLUMN 복사</caption>
- <caption id="caption26" style="left:348px; top:25px; width:237px; height:20px; color:#ff0000; ">* 더블클릭 → OWNER.TABLE_NAME 복사</caption>
- <caption id="caption27" style="left:545px; top:218px; width:72px; height:20px; ">* 복사옵션 :</caption>
- <select1 id="radio1" ref="/root/hidden/copyOption" appearance="full" cellspacing="8" cols="3" overflow="visible" style="left:615px; top:219px; width:180px; height:20px; border-style:none; ">
- <choices>
- <item>
- <label>없음</label>
- <value>0</value>
- </item>
- <item>
- <label>comma</label>
- <value>1</value>
- </item>
- <item>
- <label>AND</label>
- <value>2</value>
- </item>
- </choices>
- </select1>
- </case>
- <case id="case2">
- <!-- 마스터코드정보 디자인 시작 -->
- <shape id="roundrect5" appearance="roundrect" ellipsewidth="20" ellipseheight="20" style="left:10px; top:10px; width:660px; height:60px; "/>
- <caption id="caption16" style="left:25px; top:40px; width:55px; height:20px; vertical-align:middle; ">코드SID</caption>
- <input id="input8" ref="/root/send/mstCode/code" navindex="1" imemode="alpha" _chartype="upper" style="left:75px; top:40px; width:200px; height:19px; ">
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- // Enter 입력 시
- if (event.keyCode == "13") {
-
- // 현재 입력값 노드 반영
- setInputNodeCurText();
- model.setValue("/root/send/mstCode/code", input8.value);
-
- // 코드리스트 조회메소드 호출
- fSubmitCodeInfo();
- }
- ]]>
- </script>
- </input>
- <button id="button4" class="btn1_letter2" navindex="3" style="left:600px; top:40px; width:56px; height:22px; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fSubmitCodeInfo();
- ]]>
- </script>
- </button>
- <input id="input9" ref="/root/send/mstCode/codeName" navindex="2" imemode="hangul" style="left:370px; top:40px; width:200px; height:19px; ">
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- // Enter 입력 시
- if (event.keyCode == "13") {
-
- // 현재 입력값 노드 반영
- setInputNodeCurText();
- model.setValue("/root/send/mstCode/codeName", input9.value);
-
- // 코드리스트 조회메소드 호출
- fSubmitCodeInfo();
- }
- ]]>
- </script>
- </input>
- <caption id="caption2" style="left:315px; top:40px; width:55px; height:20px; vertical-align:middle; ">코드명칭</caption>
- <shape id="roundrect6" appearance="roundrect" ellipsewidth="20" ellipseheight="20" style="left:10px; top:80px; width:1175px; height:635px; "/>
- <datagrid id="datagrid4" nodeset="/root/main/mstCodeList" caption="코드SID^코드군ID^코드ID^코드명칭^코드값^코드상세내용^코드출력순서^코드유효시작일자^코드유효종료일자" colsep="^" colwidth="110, 90, 72, 210, 79, 252, 82, 130, 110" mergecellsfixedrows="bycolrec" rowsep="|" navindex="-1" style="left:20px; top:110px; width:1155px; height:595px; ">
- <col ref="cdsid"/>
- <col ref="cdgrupid"/>
- <col ref="cdid"/>
- <col ref="cdnm"/>
- <col ref="cdval"/>
- <col ref="detldesc"/>
- <col ref="dispseq"/>
- <col ref="valifromdd" format="yyyy-mm-dd"/>
- <col ref="valitodd" format="yyyy-mm-dd"/>
- </datagrid>
- <caption id="caption17" class="tit_2" style="left:25px; top:20px; width:160px; height:13px; ">마스터코드 조회조건</caption>
- <caption id="caption18" class="tit_2" style="left:25px; top:90px; width:160px; height:13px; ">마스터코드리스트</caption>
- <!-- 마스터코드정보 디자인 종료 -->
- </case>
- <case id="case3">
- <!-- 마스터코드정보 디자인 시작 -->
- <shape id="roundrect7" appearance="roundrect" ellipsewidth="20" ellipseheight="20" style="left:10px; top:10px; width:660px; height:60px; "/>
- <caption id="caption20" style="left:25px; top:40px; width:57px; height:20px; vertical-align:middle; ">코드군ID</caption>
- <input id="input11" ref="/root/send/pamCode/cdGrupId" navindex="1" imemode="alpha" _chartype="upper" style="left:80px; top:40px; width:200px; height:19px; ">
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- // Enter 입력 시
- if (event.keyCode == "13") {
-
- // 현재 입력값 노드 반영
- setInputNodeCurText();
- model.setValue("/root/send/pamCode/cdGrupId", input11.value);
-
- // 코드리스트 조회메소드 호출
- fSubmitPamCodeInfo();
- }
- ]]>
- </script>
- </input>
- <button id="button7" class="btn1_letter2" navindex="3" style="left:600px; top:40px; width:56px; height:22px; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- fSubmitPamCodeInfo();
- ]]>
- </script>
- </button>
- <input id="input12" ref="/root/send/pamCode/cdGrupNm" navindex="2" imemode="hangul" style="left:385px; top:40px; width:200px; height:19px; ">
- <script type="javascript" ev:event="onkeypress">
- <![CDATA[
- // Enter 입력 시
- if (event.keyCode == "13") {
-
- // 현재 입력값 노드 반영
- setInputNodeCurText();
- model.setValue("/root/send/pamCode/cdGrupNm", input12.value);
-
- // 코드리스트 조회메소드 호출
- fSubmitPamCodeInfo();
- }
- ]]>
- </script>
- </input>
- <caption id="caption21" style="left:315px; top:40px; width:65px; height:20px; vertical-align:middle; ">코드군명칭</caption>
- <shape id="roundrect8" appearance="roundrect" ellipsewidth="20" ellipseheight="20" style="left:10px; top:80px; width:1175px; height:635px; "/>
- <datagrid id="datagrid5" nodeset="/root/main/pamCdgrList" caption="코드군ID^기관코드^코드군명칭^코드상세내용^시작일자^종료일자" colsep="^" colwidth="75, 54, 313, 454, 130, 110" mergecellsfixedrows="bycolrec" rowsep="|" navindex="-1" style="left:20px; top:115px; width:1155px; height:205px; ">
- <col ref="cdgrupid"/>
- <col ref="instcd"/>
- <col ref="cdgrupnm"/>
- <col ref="detldesc"/>
- <col ref="fromdd" format="yyyy-mm-dd"/>
- <col ref="todd" format="yyyy-mm-dd"/>
- <script type="javascript" ev:event="ondblclick">
- <![CDATA[
- model.setValue("/root/send/pamCode/cdGrupId", model.getValue("/root/main/pamCdgrList[" + datagrid5.row + "]/cdgrupid"));
- submit("TRZDM00403");
- ]]>
- </script>
- </datagrid>
- <datagrid id="datagrid6" nodeset="/root/main/pamCodeList" caption="코드군ID^코드ID^코드명칭^코드상세내용^코드출력순서^코드유효시작일자^코드유효종료일자" colsep="^" colwidth="90, 72, 210, 441, 82, 130, 110" mergecellsfixedrows="bycolrec" rowsep="|" navindex="-1" style="left:20px; top:370px; width:1155px; height:335px; ">
- <col ref="cdgrupid"/>
- <col ref="cdid"/>
- <col ref="cdnm"/>
- <col ref="detldesc"/>
- <col ref="dispseq"/>
- <col ref="fromdd" format="yyyy-mm-dd"/>
- <col ref="todd" format="yyyy-mm-dd"/>
- </datagrid>
- <caption id="caption22" class="tit_2" style="left:25px; top:20px; width:217px; height:14px; ">원무공통코드 조회조건</caption>
- <caption id="caption23" class="tit_2" style="left:25px; top:95px; width:199px; height:13px; ">원무공통코드리스트</caption>
- <!-- 마스터코드정보 디자인 종료 -->
- <caption id="caption24" class="tit_2" style="left:25px; top:345px; width:302px; height:13px; ">원무사용 공통코드군에 속한 코드 리스트</caption>
- <line id="out_line2" class="line_1" style="x1:20px; y1:365px; x2:1175px; y2:365px; "/>
- </case>
- </switch>
- </xhtml:body>
- </xhtml:html>
|