123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPPIJ03900" position="absolute 0 0 830 719" titletext="외래 사전심사 제어코드에 누락된 PET/MRI 신규 수가코드" oninit="SPPIJ03900_oninit" onload="SPPIJ03900_onload">
- <Layouts>
- <Layout>
- <Static id="cap_title" text="PET/MRI 신규 수가 조회" class="tit_1" position="absolute 6 4 222 27"/>
- <Grid id="datagrid1" taborder="1" binddataset="ds_datagrid1" useinputpanel="false" autofittype="col" position="absolute 5 50 824 700" anchor="all" cellsizingtype="col">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="72"/>
- <Column size="72"/>
- <Column size="66"/>
- <Column size="80"/>
- <Column size="207"/>
- <Column size="214"/>
- <Column size="80"/>
- </Columns>
- <Rows>
- <Row size="35" band="head"/>
- <Row size="24"/>
- </Rows>
- <Band id="head">
- <Cell text="수가 중분류"/>
- <Cell col="1" text="수가 소분류"/>
- <Cell col="2" text="수가코드"/>
- <Cell col="3" text="EDI코드"/>
- <Cell col="4" text="수가 한글명"/>
- <Cell col="5" text="수가 영문명"/>
- <Cell col="6" text="적용일자"/>
- </Band>
- <Band id="body">
- <Cell style="align:left middle;" text="bind:earncls2nm"/>
- <Cell col="1" style="align:left middle;" text="bind:earncls3nm"/>
- <Cell col="2" style="align:left middle;" text="bind:calcscorcd"/>
- <Cell col="3" displaytype="normal" edittype="none" style="align:left middle;" text="bind:insuedicd"/>
- <Cell col="4" displaytype="normal" style="align:left middle;" text="bind:hngnm"/>
- <Cell col="5" style="align:left middle;" text="bind:engnm"/>
- <Cell col="6" displaytype="date" edittype="date" text="bind:fromdd" mask="yyyy-MM-dd"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Static id="caption2" text="외래 사전심사 제어코드에 누락된 PET/MRI 신규 수가코드" class="tit_2" position="absolute 7 32 429 50"/>
- <Button id="button1" taborder="2" text="조회" class="btn1" position="absolute 767 26 823 48" onclick="button1_onclick" anchor="top right"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_datagrid1" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="earncls2nm" type="STRING"/>
- <Column id="earncls3nm" type="STRING"/>
- <Column id="calcscorcd" type="STRING"/>
- <Column id="insuedicd" type="STRING"/>
- <Column id="hngnm" type="STRING"/>
- <Column id="engnm" type="STRING"/>
- <Column id="fromdd" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="todd" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- </Objects>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2016-05-24
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2016-05-24 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- function SPPIJ03900_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SPPIJ03900_onload(obj:Form, e:LoadEventInfo)
- {
- fGetList();
- }
- function fGetList()
- {
- ds_send.setColumn(0, "todd", "99991231");
-
- var oParam = {};
- oParam.id = "TRPIJ03900";
- oParam.service = "bfjudgapp.InHospJudg";
- oParam.method = "reqGetNewPetMRIList";
- oParam.inds = "req=ds_send";
- oParam.outds = "ds_datagrid1=rslt";
- oParam.async = false;
- //oParam.callback = "cf_TRPIJ03900";
- tranf_submit(oParam);
- }
- function button1_onclick(obj:Button, e:ClickEventInfo)
- {
- fGetList()
- }
- ]]></Script>
- </Form>
- </FDL>
|