123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPZCS00601" position="absolute 0 0 766 300" titletext="진단정보" oninit="SPZCS00601_oninit" onload="SPZCS00601_onload">
- <Layouts>
- <Layout>
- <Grid position="absolute 0 29 765 299" id="grd_resultlist" binddataset="ds_grd_resultlist">
- <Formats>
- <Format id="default">
- <Columns>
- <Column size="132"/>
- <Column size="136"/>
- <Column size="363"/>
- <Column size="128"/>
- </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:rgstdepthngnm"/>
- <Cell col="1" text="bind:diseasecd"/>
- <Cell col="2" text="bind:diseasenm"/>
- <Cell col="3" text="bind:diagdd"/>
- </Band>
- </Format>
- </Formats>
- </Grid>
- <Shape position="absolute 0 24 765 30" id="line8" class="line_10"/>
- <Static text="진단정보" position="absolute 0 8 94 25" id="caption12" class="tit_2"/>
- <Button position="absolute 709 2 765 24" id="button1" class="btn4" text="닫기" onclick="button1_onclick"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_init" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_hidden" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_temp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- <Dataset id="ds_screenMessageList_patientInfoList" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="patientid" type="STRING" size="256"/>
- <Column id="gender" type="STRING" size="256"/>
- <Column id="age" type="STRING" size="256"/>
- <Column id="brthdd" type="STRING" size="256"/>
- <Column id="diseasecd" type="STRING" size="256"/>
- <Column id="diseasenm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="patientid"/>
- <Col id="gender"/>
- <Col id="age"/>
- <Col id="brthdd"/>
- <Col id="diseasecd"/>
- <Col id="diseasenm"/>
- </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
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- //=======================================================================================
- // Lib Include
- //---------------------------------------------------------------------------------------
- include "com_commonxp::comm_main.xjs";
- //=======================================================================================
- // Global Form Variable
- //---------------------------------------------------------------------------------------
- var arErrorCode = new HashArray();
- //=======================================================================================
- // Function
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Argument : N/A
- * Description :
- ****************************************************************************************/
- function fInitialize(){
- /*
- model.removeNodeset("/root/screenMessageList");
- grd_resultlist.refresh();
- */
- }
- function fGetValue(node, row, element) {
- var rtnValue = eval(node).getColumn(row,element);
- return rtnValue;
- }
- //=======================================================================================
- // Event
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Components : Form
- * Components ID : SPZCS00601
- * Event : oninit
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 화면 처음 초기화시 폼초기화
- ****************************************************************************************/
- function SPZCS00601_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj); // 폼 초기화
-
- try{
- ds_screenMessageList_patientInfoList.copyData(arg_ds_screenMessageList_patientInfoList);
- }catch(e){}
- }
- /****************************************************************************************
- * Components : Form
- * Components ID : SPZCS00601
- * Event : onload
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 화면 처음 초기화시 폼초기화
- ****************************************************************************************/
- function SPZCS00601_onload(obj:Form, e:LoadEventInfo)
- {
- // fInitialize();
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : button1
- * Event : onload
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 닫기
- ****************************************************************************************/
- function button1_onclick(obj:Button, e:ClickEventInfo)
- {
- this.close();
- }
- ]]></Script>
- </Form>
- </FDL>
|