SPLPR01800_CF조회.xfdl 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SPLPR01800" position="absolute 0 0 1108 560" titletext="CF조회" class="frm_POP" onload="SPLPR01800_onload">
  5. <Layouts>
  6. <Layout>
  7. <Static id="caption1" text="CF 목록" class="tit_2" position="absolute 12 46 228 66"/>
  8. <Static id="stt_titleText" text="CF조회" class="sta_POP_title" position="absolute 12 8 192 28"/>
  9. <Button id="Button00" taborder="2" class="btn_POP_cls" position="absolute 1082 11 1096 25" style="color:#333333ff;" onlbuttonup="Button00_onlbuttonup"/>
  10. <Grid id="grd_cflist" class="datagrid2" taborder="3" useinputpanel="false" position="absolute 12 66 1096 548" cellmovingtype="col" cellsizingtype="col">
  11. <Formats>
  12. <Format id="default">
  13. <Columns>
  14. <Column size="0"/>
  15. <Column size="80"/>
  16. <Column size="0"/>
  17. <Column size="80"/>
  18. <Column size="236"/>
  19. <Column size="250"/>
  20. <Column size="250"/>
  21. <Column size="90"/>
  22. <Column size="80"/>
  23. </Columns>
  24. <Rows>
  25. <Row size="22" band="head"/>
  26. <Row size="20"/>
  27. </Rows>
  28. <Band id="head">
  29. <Cell text="기관코드"/>
  30. <Cell col="1" text="등록번호"/>
  31. <Cell col="2" text="caption1"/>
  32. <Cell col="3" text="병리번호"/>
  33. <Cell col="4" text="T"/>
  34. <Cell col="5" text="P"/>
  35. <Cell col="6" text="M"/>
  36. <Cell col="7" text="접수일자"/>
  37. <Cell col="8" text="판독의"/>
  38. </Band>
  39. <Band id="body">
  40. <Cell/>
  41. <Cell col="1" text="bind:pid"/>
  42. <Cell col="2"/>
  43. <Cell col="3" text="bind:ptno"/>
  44. <Cell col="4" style="align:left middle;padding:0 0 0 5;" text="bind:extrpartcd"/>
  45. <Cell col="5" style="align:left middle;padding:0 0 0 5;" text="bind:extrmthdcd"/>
  46. <Cell col="6" style="align:left middle;padding:0 0 0 5;" text="bind:diagcd"/>
  47. <Cell col="7" text="bind:acptdd"/>
  48. <Cell col="8" text="bind:readdrnm"/>
  49. </Band>
  50. </Format>
  51. </Formats>
  52. </Grid>
  53. </Layout>
  54. </Layouts>
  55. <Objects/>
  56. <Style url="CSS::lis.css"/>
  57. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  58. * System Name : KU2.0
  59. * Job Name :
  60. * File Name : SMLPR00400_세포결과일괄등록.xfdl
  61. * Creator :
  62. * Make Date : 2015-12-10
  63. *
  64. * Description :
  65. *---------------------------------------------------------------------------------------
  66. * Modify Date Modifier Modify Description
  67. *---------------------------------------------------------------------------------------
  68. *
  69. *--------------------------------------------------------------------------------------*/
  70. // ==========================================================================================================================================================
  71. // [ xjs include ] [ xjs include ] [ xjs include ] [ xjs include ]
  72. // ==========================================================================================================================================================
  73. include "com_commonxp::comm_main.xjs";
  74. include "lis_commonxp::LPZ001.xjs";
  75. include "lis_commonxp::LLZ001.xjs";
  76. function SPLPR01800_onload(obj:Form, e:LoadEventInfo)
  77. {
  78. frmf_initForm(obj);
  79. lf_ExeInitialize();
  80. // 그리드 헤더 클릭시 Sorting 기능 구현
  81. grdf_setGridSort(grd_cflist);
  82. //lf_search();
  83. }
  84. function lf_ExeInitialize(){
  85. dsf_createDsRow("ds_send"
  86. , [{col: "instcd", val: opener.frmf_getParameter("SPLPR00400_instcd") }
  87. , {col: "pid", val: opener.frmf_getParameter("SPLPR00400_pid")}
  88. ]);
  89. ]);
  90. dsf_createDs("ds_cflist");
  91. var oParam = {};
  92. oParam.id = "TRLPZ00108";
  93. oParam.service = "plgycomnusemngtapp.BaseInfoCode";
  94. oParam.method = "reqGetBfPtNoList";
  95. oParam.inds = "refdata=ds_send";
  96. oParam.outds = "ds_cflist=rsltlist";
  97. oParam.async = false;
  98. oParam.callback = "cf_TRLPZ00108";
  99. tranf_submit(oParam);
  100. }
  101. function cf_TRLPZ00108(strSvcID, nErrorCode, strErrorMag)
  102. {
  103. if(nErrorCode != 0){
  104. sysf_messageBox("ID: " + strSvcID + " Error: " + strErrorMag, "E009", "");
  105. } else {
  106. grd_cflist.binddataset = ds_cflist;
  107. }
  108. }
  109. function Button00_onlbuttonup(obj:Button, e:MouseEventInfo)
  110. {
  111. this.close();
  112. }
  113. ]]></Script>
  114. </Form>
  115. </FDL>