12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SPMNP03000" position="absolute 0 0 319 120" titletext="Case Cart Label 출력" oninit="SPMNP03000_oninit" onload="SPMNP03000_onload">
- <Layouts>
- <Layout>
- <Div position="absolute 0 0 310 85" id="grp_biz" scrollbars="autoboth">
- <Layouts>
- <Layout>
- <Radio position="absolute 10 48 310 68" id="radio1" columncount="2" innerdataset="@ds_init_rdoinfo_item" datacolumn="nm" codecolumn="cd"/>
- <Static text="해당 환자의 임시Cart의 'Label'을 출력합니다." position="absolute 6 17 303 33" id="caption1" class="tit_2"/>
- </Layout>
- </Layouts>
- </Div>
- <Div position="absolute 0 90 310 117" id="group1" scrollbars="autoboth">
- <Layouts>
- <Layout>
- <Button position="absolute 191 2 247 24" id="btn_ok" class="btn4" text="확인" onclick="group1_btn_ok_onclick"/>
- <Button position="absolute 249 2 305 24" id="button1" class="btn4" text="취소" onclick="group1_button1_onclick"/>
- </Layout>
- </Layouts>
- </Div>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_main_cond" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="printflag" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="printflag">1</Col>
- </Row>
- </Rows>
- </Dataset>
- <Dataset id="ds_send" 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_init_rdoinfo_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="cd" type="STRING" size="256"/>
- <Column id="nm" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row>
- <Col id="cd">1</Col>
- <Col id="nm">선택한 환자만 출력</Col>
- </Row>
- <Row>
- <Col id="cd">2</Col>
- <Col id="nm">해당일의 전체 환자 출력</Col>
- </Row>
- </Rows>
- </Dataset>
- </Objects>
- <Bind>
- <BindItem id="item0" compid="grp_biz.radio1" propid="value" datasetid="ds_main_cond" columnid="printflag"/>
- </Bind>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2016-10-12
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2016-10-12 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- function SPMNP03000_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SPMNP03000_onload(obj:Form, e:LoadEventInfo)
- {
- opener.frmf_setParameter("SPMNP03000_Param","");
- }
- function group1_btn_ok_onclick(obj:Button, e:ClickEventInfo)
- {
- opener.frmf_setParameter("SPMNP03000_Param",ds_main_cond.getColumn(0, "printflag"));
- this.close();
- }
- function group1_button1_onclick(obj:Button, e:ClickEventInfo)
- {
- this.close();
- }]]></Script>
- </Form>
- </FDL>
|