SPZCS00601_진단리스트.xfdl 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SPZCS00601" position="absolute 0 0 766 300" titletext="진단정보" oninit="SPZCS00601_oninit" onload="SPZCS00601_onload">
  5. <Layouts>
  6. <Layout>
  7. <Grid position="absolute 0 29 765 299" id="grd_resultlist" binddataset="ds_grd_resultlist">
  8. <Formats>
  9. <Format id="default">
  10. <Columns>
  11. <Column size="132"/>
  12. <Column size="136"/>
  13. <Column size="363"/>
  14. <Column size="128"/>
  15. </Columns>
  16. <Rows>
  17. <Row size="24" band="head"/>
  18. <Row size="24"/>
  19. </Rows>
  20. <Band id="head">
  21. <Cell text="진료과"/>
  22. <Cell col="1" text="진단코드"/>
  23. <Cell col="2" text="진단명"/>
  24. <Cell col="3" text="진단일"/>
  25. </Band>
  26. <Band id="body">
  27. <Cell text="bind:rgstdepthngnm"/>
  28. <Cell col="1" text="bind:diseasecd"/>
  29. <Cell col="2" text="bind:diseasenm"/>
  30. <Cell col="3" text="bind:diagdd"/>
  31. </Band>
  32. </Format>
  33. </Formats>
  34. </Grid>
  35. <Shape position="absolute 0 24 765 30" id="line8" class="line_10"/>
  36. <Static text="진단정보" position="absolute 0 8 94 25" id="caption12" class="tit_2"/>
  37. <Button position="absolute 709 2 765 24" id="button1" class="btn4" text="닫기" onclick="button1_onclick"/>
  38. </Layout>
  39. </Layouts>
  40. <Objects>
  41. <Dataset id="ds_init" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  42. <Dataset id="ds_hidden" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  43. <Dataset id="ds_temp" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
  44. <Dataset id="ds_screenMessageList_patientInfoList" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  45. <ColumnInfo>
  46. <Column id="patientid" type="STRING" size="256"/>
  47. <Column id="gender" type="STRING" size="256"/>
  48. <Column id="age" type="STRING" size="256"/>
  49. <Column id="brthdd" type="STRING" size="256"/>
  50. <Column id="diseasecd" type="STRING" size="256"/>
  51. <Column id="diseasenm" type="STRING" size="256"/>
  52. </ColumnInfo>
  53. <Rows>
  54. <Row>
  55. <Col id="patientid"/>
  56. <Col id="gender"/>
  57. <Col id="age"/>
  58. <Col id="brthdd"/>
  59. <Col id="diseasecd"/>
  60. <Col id="diseasenm"/>
  61. </Row>
  62. </Rows>
  63. </Dataset>
  64. </Objects>
  65. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  66. * System Name :
  67. * Job Name :
  68. * Creator :
  69. * Make Date : 2016-05-24
  70. * Description :
  71. *---------------------------------------------------------------------------------------
  72. * Modify Date Modifier Modify Description
  73. *---------------------------------------------------------------------------------------
  74. * 2016-05-24 Live Converter TF->XP
  75. *
  76. *---------------------------------------------------------------------------------------
  77. ****************************************************************************************/
  78. //=======================================================================================
  79. // Lib Include
  80. //---------------------------------------------------------------------------------------
  81. include "com_commonxp::comm_main.xjs";
  82. //=======================================================================================
  83. // Global Form Variable
  84. //---------------------------------------------------------------------------------------
  85. var arErrorCode = new HashArray();
  86. //=======================================================================================
  87. // Function
  88. //---------------------------------------------------------------------------------------
  89. /****************************************************************************************
  90. * Argument : N/A
  91. * Description :
  92. ****************************************************************************************/
  93. function fInitialize(){
  94. /*
  95. model.removeNodeset("/root/screenMessageList");
  96. grd_resultlist.refresh();
  97. */
  98. }
  99. function fGetValue(node, row, element) {
  100. var rtnValue = eval(node).getColumn(row,element);
  101. return rtnValue;
  102. }
  103. //=======================================================================================
  104. // Event
  105. //---------------------------------------------------------------------------------------
  106. /****************************************************************************************
  107. * Components : Form
  108. * Components ID : SPZCS00601
  109. * Event : oninit
  110. * Argument : 01.obj : Object Event has occurred
  111. * : 02.e : Event Object
  112. * Description : 화면 처음 초기화시 폼초기화
  113. ****************************************************************************************/
  114. function SPZCS00601_oninit(obj:Form, e:InitEventInfo)
  115. {
  116. frmf_initForm(obj); // 폼 초기화
  117. try{
  118. ds_screenMessageList_patientInfoList.copyData(arg_ds_screenMessageList_patientInfoList);
  119. }catch(e){}
  120. }
  121. /****************************************************************************************
  122. * Components : Form
  123. * Components ID : SPZCS00601
  124. * Event : onload
  125. * Argument : 01.obj : Object Event has occurred
  126. * : 02.e : Event Object
  127. * Description : 화면 처음 초기화시 폼초기화
  128. ****************************************************************************************/
  129. function SPZCS00601_onload(obj:Form, e:LoadEventInfo)
  130. {
  131. // fInitialize();
  132. }
  133. /****************************************************************************************
  134. * Components : Button
  135. * Components ID : button1
  136. * Event : onload
  137. * Argument : 01.obj : Object Event has occurred
  138. * : 02.e : Event Object
  139. * Description : 닫기
  140. ****************************************************************************************/
  141. function button1_onclick(obj:Button, e:ClickEventInfo)
  142. {
  143. this.close();
  144. }
  145. ]]></Script>
  146. </Form>
  147. </FDL>