SPMNP03000_Case Cart Label 출력.xfdl 4.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SPMNP03000" position="absolute 0 0 319 120" titletext="Case Cart Label 출력" oninit="SPMNP03000_oninit" onload="SPMNP03000_onload">
  5. <Layouts>
  6. <Layout>
  7. <Div position="absolute 0 0 310 85" id="grp_biz" scrollbars="autoboth">
  8. <Layouts>
  9. <Layout>
  10. <Radio position="absolute 10 48 310 68" id="radio1" columncount="2" innerdataset="@ds_init_rdoinfo_item" datacolumn="nm" codecolumn="cd"/>
  11. <Static text="해당 환자의 임시Cart의 'Label'을 출력합니다." position="absolute 6 17 303 33" id="caption1" class="tit_2"/>
  12. </Layout>
  13. </Layouts>
  14. </Div>
  15. <Div position="absolute 0 90 310 117" id="group1" scrollbars="autoboth">
  16. <Layouts>
  17. <Layout>
  18. <Button position="absolute 191 2 247 24" id="btn_ok" class="btn4" text="확인" onclick="group1_btn_ok_onclick"/>
  19. <Button position="absolute 249 2 305 24" id="button1" class="btn4" text="취소" onclick="group1_button1_onclick"/>
  20. </Layout>
  21. </Layouts>
  22. </Div>
  23. </Layout>
  24. </Layouts>
  25. <Objects>
  26. <Dataset id="ds_main_cond" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  27. <ColumnInfo>
  28. <Column id="printflag" type="STRING" size="256"/>
  29. </ColumnInfo>
  30. <Rows>
  31. <Row>
  32. <Col id="printflag">1</Col>
  33. </Row>
  34. </Rows>
  35. </Dataset>
  36. <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  37. <Dataset id="ds_hidden" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  38. <Dataset id="ds_init_rdoinfo_item" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  39. <ColumnInfo>
  40. <Column id="cd" type="STRING" size="256"/>
  41. <Column id="nm" type="STRING" size="256"/>
  42. </ColumnInfo>
  43. <Rows>
  44. <Row>
  45. <Col id="cd">1</Col>
  46. <Col id="nm">선택한 환자만 출력</Col>
  47. </Row>
  48. <Row>
  49. <Col id="cd">2</Col>
  50. <Col id="nm">해당일의 전체 환자 출력</Col>
  51. </Row>
  52. </Rows>
  53. </Dataset>
  54. </Objects>
  55. <Bind>
  56. <BindItem id="item0" compid="grp_biz.radio1" propid="value" datasetid="ds_main_cond" columnid="printflag"/>
  57. </Bind>
  58. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  59. * System Name :
  60. * Job Name :
  61. * Creator :
  62. * Make Date : 2016-10-12
  63. * Description :
  64. *---------------------------------------------------------------------------------------
  65. * Modify Date Modifier Modify Description
  66. *---------------------------------------------------------------------------------------
  67. * 2016-10-12 Live Converter TF->XP
  68. *
  69. *---------------------------------------------------------------------------------------
  70. ****************************************************************************************/
  71. include "com_commonxp::comm_main.xjs";
  72. function SPMNP03000_oninit(obj:Form, e:InitEventInfo)
  73. {
  74. frmf_initForm(obj);
  75. }
  76. function SPMNP03000_onload(obj:Form, e:LoadEventInfo)
  77. {
  78. opener.frmf_setParameter("SPMNP03000_Param","");
  79. }
  80. function group1_btn_ok_onclick(obj:Button, e:ClickEventInfo)
  81. {
  82. opener.frmf_setParameter("SPMNP03000_Param",ds_main_cond.getColumn(0, "printflag"));
  83. this.close();
  84. }
  85. function group1_button1_onclick(obj:Button, e:ClickEventInfo)
  86. {
  87. this.close();
  88. }]]></Script>
  89. </Form>
  90. </FDL>