123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPMNP01804" position="absolute 0 0 300 150" titletext="급비변경" oninit="SPMNP01804_oninit" onload="SPMNP01804_onload">
- <Layouts>
- <Layout>
- <Div position="absolute 0 0 280 130" id="grp_data" scrollbars="autoboth">
- <Layouts>
- <Layout>
- <Shape position="absolute 0 24 280 30" linetype="horizontal" id="line24" class="line_1"/>
- <Static text="급비변경 // fSetLargeGrid(1, 3); // 3 처치처방 " position="absolute 0 9 134 25" id="caption14" class="tit_2"/>
- <Button position="absolute 238 6 280 25" id="bbt_other" class="btn5" text="저장" onclick="grp_data_bbt_other_onclick"/>
- <Radio position="absolute 5 40 280 130" id="radio1" columncount="1" innerdataset="@ds_init_M0029list_M0029" datacolumn="cdnm" codecolumn="cdid" style="align:left middle;"/>
- </Layout>
- </Layouts>
- </Div>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_init_M0029list_M0029" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cdnm" type="STRING"/>
- <Column id="cdid" type="STRING"/>
- </ColumnInfo>
- </Dataset>
- <Dataset id="ds_main_CartOrdData_ChngInfo" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="payflagcd" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="grp_data.radio1" propid="value" datasetid="ds_main_CartOrdData_ChngInfo" columnid="payflagcd"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name : 경대 의료정보시스템
- * Job Name : emr_opanstxp -> SPMNP01804
- * Creator : yjh
- * Make Date : 2016-06-22
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2016-06-22 yjh TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- //=======================================================================================
- // Lib Include
- //---------------------------------------------------------------------------------------
- include "com_commonxp::comm_main.xjs";
- //=======================================================================================
- // Global Form Variable
- //---------------------------------------------------------------------------------------
- //=======================================================================================
- // Function
- //---------------------------------------------------------------------------------------
- //=======================================================================================
- // Event
- //---------------------------------------------------------------------------------------
- /****************************************************************************************
- * Components : Form
- * Components ID : SPMNP01804
- * Event : oninit
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 화면 처음 초기화시
- ****************************************************************************************/
- function SPMNP01804_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj); //폼 초기화
- }
- /****************************************************************************************
- * Components : Form
- * Components ID : SPMNP01804
- * Event : onload
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 화면 로딩 완료시
- ****************************************************************************************/
- function SPMNP01804_onload(obj:Form, e:LoadEventInfo)
- {
- ds_init_M0029list_M0029.copyData(opener.ds_init_M0029list_M0029);
-
- try{
- ds_main_CartOrdData_ChngInfo.copyData(arg_ds_main_CartOrdData_ChngInfo);
- }catch(e){
-
- }
- }
- /****************************************************************************************
- * Components : Button
- * Components ID : bbt_other
- * Event : onload
- * Argument : 01.obj : Object Event has occurred
- * : 02.e : Event Object
- * Description : 저장버튼 클릭시
- ****************************************************************************************/
- function grp_data_bbt_other_onclick(obj:Button, e:ClickEventInfo)
- {
- if( frmf_checkOpener() ){
- opener.frmf_setParameter("SPMNP01804_Return", grp_data.radio1.value );
- close();
- } else {
- alert("상위화면이 변경되어 데이터를 전달할 수 없습니다.");
- }
- }
- ]]></Script>
- </Form>
- </FDL>
|