123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPPMO01358" position="absolute 0 0 967 372" titletext="자격조회내역" oninit="SPPMO01358_oninit" onload="SPPMO01358_onload">
- <Layouts>
- <Layout>
- <Div position="absolute 0 0 663 316" id="group3" scrollbars="autoboth">
- <Layouts>
- <Layout>
- <Div position="absolute 0 0 662 35" align="align:center top;" id="group2" visible="false">
- <Layouts>
- <Layout>
- <Shape position="absolute 0 0 662 35" id="roundrect1" class="roundrect_search" type="roundrectangle"/>
- <Static text="등록번호 :" position="absolute 15 8 101 25" id="caption2" class="search_name"/>
- <Button position="absolute 590 7 646 29" id="btn_search" class="btn1" text="조회" onclick="group3_group2_btn_search_onclick"/>
- <Shape position="absolute 571 7 577 29" linetype="vertical" id="line13" class="line_4"/>
- <Edit position="absolute 106 8 191 27" id="input3" class="input_search"/>
- </Layout>
- </Layouts>
- </Div>
- <Static text="자격조회내역" position="absolute 5 45 100 60" id="caption1" class="tit_2" visible="false"/>
- <Shape position="absolute 0 57 662 63" linetype="vertical" id="line1" class="line_1" visible="false"/>
- <Grid position="absolute 0 65 662 314" align="align:center middle;" id="grd_emrcnstinfo" visible="false" binddataset="ds_grd_emrcnstinfo">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="68"/>
- <Column size="100"/>
- <Column size="120"/>
- <Column size="336"/>
- </Columns>
- <Rows>
- <Row size="24" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="등록번호"/>
- <Cell col="1" text="환자명"/>
- <Cell col="2" text="자격조회일자"/>
- <Cell col="3" text="자격조회메시지"/>
- </Band>
- <Band id="body">
- <Cell text="bind:pid"/>
- <Cell col="1" text="bind:hngnm"/>
- <Cell col="2" text="bind:workdd" mask="yyyy-mm-dd"/>
- <Cell col="3" text="bind:msg"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- </Layout>
- </Layouts>
- </Div>
- <Button position="absolute 907 345 963 367" id="button1" class="btn4" text="확인" onclick="button1_onclick"/>
- <TextArea position="absolute 4 4 963 341" align="align:center middle;" id="textarea1"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_grd_emrcnstinfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="pid" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="workdd" type="STRING"/>
- <Column id="msg" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- </Objects>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2014-11-07
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2014-11-07 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- function fmerschk(worktype, pid){
- dsf_createDsRow("ds_send",
- [{col:"pid", val:pid}
- ,{col:"worktype", val:worktype}
- ]);
-
- var ev = new ClickEventInfo;
- frmf_inputEnterKey("group3.group2.btn_search", "onclick", ev );
-
- return ds_grd_emrcnstinfo.rowcount;
- }
-
- function SPPMO01358_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj); // 화면공통
- }
- function SPPMO01358_onload(obj:Form, e:LoadEventInfo)
- {
- dsf_createDsRow("ds_send",
- [{col:"pid", val:opener.frmf_getParameter("SPPMO01358_pid")}
- ,{col:"worktype", val:opener.frmf_getParameter("SPPMO01358_worktype")}
- ]);
- var ev = new ClickEventInfo;
- frmf_inputEnterKey("group3.group2.btn_search", "onclick", ev );
-
- if(ds_grd_emrcnstinfo.rowcount>0){
- this.position.height = 430;
- this.position.width = 1010;
- textarea1.visible=true;
- opener.frmf_setParameter("sRtn", "Y");
- }else{
- opener.frmf_setParameter("sRtn", "N");
- this.close();
- }
- }
- function group3_group2_btn_search_onclick(obj:Button, e:ClickEventInfo)
- {
- var oParam = {};
- oParam.id = "TRPAO02408";
- oParam.service = "pamcomnapp.PamComn";
- oParam.method = "reqGetMersPatInfo";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_grd_emrcnstinfo=item";
- oParam.async = false;
- oParam.callback = "cf_TRPAO02408";
- tranf_submit(oParam);
-
-
- }
- function cf_TRPAO02408(sSvcId, nErrorCode, sErrorMsg) {
- if(nErrorCode < 0) {
- this.close();
- return;
- }
- }
- function button1_onclick(obj:Button, e:ClickEventInfo)
- {
- this.close();
- }
- ]]></Script>
- </Form>
- </FDL>
|