SPMNP00702_회복간호기록아이템조회.xfdl 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SPMNP00702" position="absolute 0 0 480 600" titletext="회복간호 Item 추가 화면" oninit="SPMNP00702_oninit" onload="SPMNP00702_onload">
  5. <Layouts>
  6. <Layout>
  7. <Static text="항목정보" position="absolute 5 24 100 40" id="caption1" class="tit_2"/>
  8. <Shape position="absolute 5 40 477 46" linetype="horizontal" id="line1" class="line_10"/>
  9. <Static text="회복간호 Item 추가 등록" position="absolute 0 0 179 20" id="caption6" class="tit_1"/>
  10. <Grid position="absolute 3 45 478 590" id="datagrid1" binddataset="ds_main_itemlist" cellsizingtype="col" scrollpixel="all" cellclickbound="cell" selecttype="multirow">
  11. <Formats>
  12. <Format id="default">
  13. <Columns>
  14. <Column size="0"/>
  15. <Column size="209"/>
  16. <Column size="0"/>
  17. <Column size="215"/>
  18. <Column size="0"/>
  19. <Column size="0"/>
  20. <Column size="31"/>
  21. </Columns>
  22. <Rows>
  23. <Row size="24" band="head"/>
  24. <Row size="24"/>
  25. </Rows>
  26. <Band id="head">
  27. <Cell text="분류코드"/>
  28. <Cell col="1" text="분류명"/>
  29. <Cell col="2" text="항목코드"/>
  30. <Cell col="3" text="항목명"/>
  31. <Cell col="4" text="recflag"/>
  32. <Cell col="5" text="ioflag"/>
  33. <Cell col="6" text="V"/>
  34. </Band>
  35. <Band id="body">
  36. <Cell edittype="none" text="bind:lrgcd" suppress="1" suppressalign="middle"/>
  37. <Cell col="1" edittype="none" style="align:left;" text="bind:lrgnm" suppress="1" suppressalign="middle"/>
  38. <Cell col="2" displaytype="none" edittype="none" style="align:left;" text="bind:vsitemcd"/>
  39. <Cell col="3" edittype="none" style="align:left;" text="bind:vsitemnm"/>
  40. <Cell col="4" text="bind:recflag"/>
  41. <Cell col="5" text="bind:ioflag"/>
  42. <Cell col="6" displaytype="checkbox" edittype="checkbox" text="bind:v"/>
  43. </Band>
  44. </Format>
  45. </Formats>
  46. </Grid>
  47. <Button position="absolute 421 18 477 40" id="btn_cancel" class="btn4" text="취소" onclick="btn_cancel_onclick"/>
  48. <Button position="absolute 362 18 418 40" id="btn_confirm" class="btn4" text="선택" onclick="btn_confirm_onclick"/>
  49. </Layout>
  50. </Layouts>
  51. <Objects>
  52. <Dataset id="ds_main_itemlist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" reversesubsum="false">
  53. <ColumnInfo>
  54. <Column id="lrgcd" type="STRING"/>
  55. <Column id="lrgnm" type="STRING"/>
  56. <Column id="vsitemcd" type="STRING"/>
  57. <Column id="vsitemnm" type="STRING"/>
  58. <Column id="recflag" type="STRING"/>
  59. <Column id="ioflag" type="STRING"/>
  60. <Column id="v" type="STRING"/>
  61. </ColumnInfo>
  62. </Dataset>
  63. <Dataset id="ds_send" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  64. <ColumnInfo>
  65. <Column id="searchdd" type="STRING" size="256"/>
  66. </ColumnInfo>
  67. <Rows>
  68. <Row/>
  69. </Rows>
  70. </Dataset>
  71. </Objects>
  72. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  73. * System Name : 경대 의료정보시스템
  74. * Job Name : emr_opanstxp -> SPMNP00702
  75. * Creator : yjh
  76. * Make Date : 2017-03-08
  77. * Description :
  78. *---------------------------------------------------------------------------------------
  79. * Modify Date Modifier Modify Description
  80. *---------------------------------------------------------------------------------------
  81. * 2017-03-08 yjh TF->XP
  82. *
  83. *---------------------------------------------------------------------------------------
  84. ****************************************************************************************/
  85. //=======================================================================================
  86. // Lib Include
  87. //---------------------------------------------------------------------------------------
  88. include "com_commonxp::comm_main.xjs";
  89. include "emr_opanstxp::SPMNP00702.xjs";
  90. //=======================================================================================
  91. // Global Form Variable
  92. //---------------------------------------------------------------------------------------
  93. var arErrorCode = new HashArray();
  94. //=======================================================================================
  95. // Function
  96. //---------------------------------------------------------------------------------------
  97. //=======================================================================================
  98. // Event
  99. //---------------------------------------------------------------------------------------
  100. /****************************************************************************************
  101. * Components : Form
  102. * Components ID : SPMNP00702
  103. * Event : oninit
  104. * Argument : 01.obj : Object Event has occurred
  105. * : 02.e : Event Object
  106. * Description : 화면 처음 초기화시
  107. ****************************************************************************************/
  108. function SPMNP00702_oninit(obj:Form, e:InitEventInfo)
  109. {
  110. frmf_initForm(obj); //폼 초기화
  111. }
  112. /****************************************************************************************
  113. * Components : Form
  114. * Components ID : SPMNP00702
  115. * Event : onload
  116. * Argument : 01.obj : Object Event has occurred
  117. * : 02.e : Event Object
  118. * Description : 화면 로딩 완료시
  119. ****************************************************************************************/
  120. function SPMNP00702_onload(obj:Form, e:LoadEventInfo)
  121. {
  122. fInit();
  123. }
  124. /****************************************************************************************
  125. * Components : Button
  126. * Components ID : btn_confirm
  127. * Event : onclick
  128. * Argument : 01.obj : Object Event has occurred
  129. * : 02.e : Event Object
  130. * Description : 선택버튼 클릭시
  131. ****************************************************************************************/
  132. function btn_confirm_onclick(obj:Button, e:ClickEventInfo)
  133. {
  134. fClickOkBtn();
  135. }
  136. /****************************************************************************************
  137. * Components : Button
  138. * Components ID : btn_cancel
  139. * Event : onclick
  140. * Argument : 01.obj : Object Event has occurred
  141. * : 02.e : Event Object
  142. * Description : 취소버튼 클릭시
  143. ****************************************************************************************/
  144. function btn_cancel_onclick(obj:Button, e:ClickEventInfo)
  145. {
  146. this.close();
  147. }
  148. ]]></Script>
  149. </Form>
  150. </FDL>