123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- <?xml version="1.0" encoding="EUC-KR"?>
- <?xml-stylesheet href="../../../com/commonweb/css/common.css" type="text/css" ?>
- <xhtml:html xmlns:ex="http://www.comsquare.co.kr/xforms/excel" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:xhtml="http://www.w3.org/1999/xhtml" xmlns:my="http://www.comsquare.co.kr/example" xmlns:ms="urn:schemas-microsoft-com:xslt" 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" xmlns:cs="http://www.comsquare.co.kr/xforms">
- <xhtml:head>
- <xhtml:title>감면 이력 조회</xhtml:title>
- <model id="model1">
- <instance id="instance1">
- <root xmlns="">
- <main>
- <fmlylist>
- <fmlyinfo>
- <instnm/>
- <logdt/>
- <logact/>
- <loguserid/>
- <logusernm/>
- <logip/>
- <emplno/>
- <emplnm/>
- <empkindcd/>
- <empkindnm/>
- <entcodd/>
- <entcodd_mis/>
- <retiredd/>
- <retiredd_mis/>
- <disccd/>
- <discnm/>
- <pid/>
- <name/>
- <famyrelcd/>
- <famyrelnm/>
- <fromdd/>
- <todd/>
- <fstrgstrnm/>
- <fstrgstdt/>
- <lastupdtrnm/>
- <lastupdtdt/>
- </fmlyinfo>
- </fmlylist>
- </main>
- <send>
- <pid/>
- <userid/>
- <logdd/>
- <logddflag/>
- </send>
- </root>
- </instance>
- <submission id="TRPMC02309" mediatype="application/x-www-form-urlencoded" method="post" ref="/root/send" resultref="/root/main/fmlylist/fmlyinfo"/>
- </model>
- <script type="javascript">
- <![CDATA[
-
- ]]>
- </script>
- <script type="javascript" src="../../../com/commonweb/js/common.js"/>
- <script type="javascript" src="../../../com/commonweb/js/tfHelper.js"/>
- <script type="javascript" src="../../../com/commonweb/js/dateHelper.js"/>
- <script type="javascript" ev:event="xforms-ready">
- <![CDATA[
- if (checkOpener()) {
- var pid = opener.javascript.getParameter("SMPMC02302_PID");
- opener.javascript.setParameter("SMPMC02302_PID", "");
-
- model.setValue("/root/send/pid", pid);
- ipt_pid.refresh();
-
- btn_search.dispatch("DOMActivate");
- }
-
- ]]>
- </script>
- </xhtml:head>
- <xhtml:body style="margin-left:8; margin-top:0; margin-right:8; margin-bottom:0; ">
- <caption id="cap_title" class="tit_1" style="left:0px; top:0px; width:125px; height:13px; font-family:돋움; vertical-align:middle; ">감면 이력 조회</caption>
- <shape id="roundrect1" class="roundrect_search" appearance="roundrect" ellipsewidth="10" ellipseheight="10" style="left:0px; top:20px; width:1195px; height:41px; background-color:#fffbf2; border-color:#ffd799; "/>
- <caption id="caption1" class="search_name" style="left:10px; top:32px; width:91px; height:17px; ">등록번호 :</caption>
- <input id="ipt_pid" ref="/root/send/pid" class="input_search" style="left:102px; top:31px; width:70px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- if(event.keyCode == "13") {
- inputEnterKey("btn_search", "DOMActivate");
- }
- ]]>
- </script>
- </input>
- <caption id="caption35" class="search_name" style="left:205px; top:32px; width:62px; height:17px; ">사번 :</caption>
- <input id="ipt_emplno" ref="/root/send/userid" class="input_search" style="left:272px; top:31px; width:60px; height:19px; ">
- <script type="javascript" ev:event="onkeyup">
- <![CDATA[
- if(event.keyCode == "13") {
- inputEnterKey("btn_search", "DOMActivate");
- }
- ]]>
- </script>
- </input>
- <caption id="caption2" class="search_name" style="left:370px; top:32px; width:99px; height:17px; ">이력발생일 :</caption>
- <input id="ipt_logdd" ref="/root/send/logdd" class="input_search" disabled="true" inputtype="date" style="left:475px; top:31px; width:90px; height:19px; "/>
- <select id="chk_logddflag" ref="/root/send/logddflag" overflow="visible" appearance="full" style="left:570px; top:32px; width:50px; height:15px; border-style:none; ">
- <choices>
- <item>
- <label>적용</label>
- <value>Y</value>
- </item>
- </choices>
- <script type="javascript" ev:event="xforms-value-changed">
- <![CDATA[
- if (model.getValue("/root/send/logddflag") == "Y") {
- model.setValue("/root/send/logdd", getCurrentDate());
- ipt_logdd.disabled = false;
- } else {
- model.setValue("/root/send/logdd", "");
- ipt_logdd.disabled = true;
- }
- ipt_logdd.refresh();
- ]]>
- </script>
- </select>
- <line id="line13" style="x1:1115px; y1:30px; x2:1115px; y2:55px; border-color:#FFD799; border-left-style:solid; "/>
- <button id="btn_search" class="btn1_letter2" navindex="6" style="left:1128px; top:30px; width:56px; height:22px; background-image:../../../com/commonweb/images/btn1_letter2.gif; ">
- <caption>조회</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- if (model.getValue("/root/send/pid") == ""
- && model.getValue("/root/send/emplno") == ""
- && model.getValue("/root/send/logddflag") != "Y") {
- messageBox("적어도 1개 이상의 조건을 입력해야 합니다.", "E999");
- return;
- }
-
- submit("TRPMC02309");
- ]]>
- </script>
- </button>
- <caption id="caption7" class="tit_2" style="left:0px; top:70px; width:79px; height:13px; font-weight:bold; ">조회 결과</caption>
- <line id="line1" class="line_1" style="x1:0px; y1:85px; x2:1195px; y2:85px; "/>
- <datagrid id="grd_fmly" nodeset="/root/main/fmlylist/fmlyinfo" caption="기관^이력발생일시^이력구분^이력발생자^사번/주민등록번호^할인주체명^할인주체구분^입사일^퇴직일^감면코드^감면명^등록번호^환자명^가족관계^할인시작일^할인종료일^최초등록자^최초등록일시^최종수정자^최종수정일시" colsep="^" colwidth="40, 120, 60, 70, 120, 70, 85, 80, 80, 60, 200, 60, 80, 60, 80, 80, 70, 120, 70, 120" mergecellsfixedrows="bycolrec" rowheader="seq" rowsep="|" style="left:0px; top:90px; width:1195px; height:670px; text-align:center; ">
- <col ref="instnm"/>
- <col ref="logdt" format="yyyy-mm-dd hh:nn:ss"/>
- <col ref="logact"/>
- <col ref="logusernm"/>
- <col ref="emplno"/>
- <col ref="emplnm"/>
- <col ref="empkindnm"/>
- <col ref="entcodd" format="yyyy-mm-dd"/>
- <col ref="retiredd" format="yyyy-mm-dd"/>
- <col ref="disccd"/>
- <col ref="discnm" style="text-align:center; "/>
- <col ref="pid"/>
- <col ref="name"/>
- <col ref="famyrelnm"/>
- <col ref="fromdd" format="yyyy-mm-dd"/>
- <col ref="todd" format="yyyy-mm-dd"/>
- <col ref="fstrgstrnm"/>
- <col ref="fstrgstdt" format="yyyy-mm-dd hh:nn:ss"/>
- <col ref="lastupdtrnm"/>
- <col ref="lastupdtdt" format="yyyy-mm-dd hh:nn:ss"/>
- </datagrid>
- <button id="btn_excel" class="btn2_letter4" style="left:1131px; top:65px; width:64px; height:19px; ">
- <caption>엑셀저장</caption>
- <script type="javascript" ev:event="DOMActivate">
- <![CDATA[
- var filename = window.fileDialog("save", ",", false, "감면 이력", "xls", "Excel Files(*.xls)|*.xls|All Files (*.*)|*.*");
- grd_fmly.saveExcel(filename, "sheetname:" + "감면 이력" + ";colhiddenextend:true;rowhiddenextend:false;");
- messageBox("엑셀 저장이 완료되었습니다.", "I999");
- ]]>
- </script>
- </button>
- </xhtml:body>
- </xhtml:html>
|