SPMMO14101_주의요망처방체크.xfdl 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.4">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SPMMO14101" position="absolute 0 0 787 361" titletext="주의요망 처방리스트" oninit="SPMMO14101_oninit" onload="SPMMO14101_onload">
  5. <Layouts>
  6. <Layout>
  7. <Button position="absolute 623 340 703 361" id="button1" class="btn4" text="계속저장" onclick="button1_onclick"/>
  8. <Static text="주의요망 처방리스트" position="absolute 0 0 171 20" id="caption1" class="tit_2"/>
  9. <Static text="* 주의요망 처방이 있습니다. 저장하시겠습니까 ?" position="absolute 349 342 615 362" id="caption2" style="color:red;"/>
  10. <Grid position="absolute 0 20 787 335" id="grd_prcperrlist" binddataset="ds_result_warnprcplist" autofittype="col">
  11. <Formats>
  12. <Format id="default">
  13. <Columns>
  14. <Column size="70"/>
  15. <Column size="200"/>
  16. <Column size="340"/>
  17. <Column size="75"/>
  18. <Column size="90"/>
  19. </Columns>
  20. <Rows>
  21. <Row size="24" band="head"/>
  22. <Row size="24"/>
  23. </Rows>
  24. <Band id="head">
  25. <Cell text="처방코드"/>
  26. <Cell col="1" text="처방명"/>
  27. <Cell col="2" text="주의사항"/>
  28. <Cell col="3" text="문의"/>
  29. <Cell col="4" text="등록부서"/>
  30. </Band>
  31. <Band id="body">
  32. <Cell style="align:left middle;" text="bind:prcpcd" suppress="1" suppressalign="middle,over"/>
  33. <Cell col="1" style="align:left middle;" text="bind:prcpnm"/>
  34. <Cell col="2" style="align:left middle;" text="bind:errmsg"/>
  35. <Cell col="3" text="bind:telno"/>
  36. <Cell col="4" text="bind:authdeptnm"/>
  37. </Band>
  38. </Format>
  39. </Formats>
  40. </Grid>
  41. <Button position="absolute 707 340 787 361" id="button2" class="btn3" text="처방취소" onclick="button2_onclick"/>
  42. </Layout>
  43. </Layouts>
  44. <Objects>
  45. <Dataset id="ds_result_warnprcplist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  46. <ColumnInfo>
  47. <Column id="prcpcd" type="STRING" size="256"/>
  48. <Column id="prcpnm" type="STRING" size="256"/>
  49. <Column id="errmsg" type="STRING" size="256"/>
  50. <Column id="telno" type="STRING" size="256"/>
  51. <Column id="authdeptcd" type="STRING" size="256"/>
  52. <Column id="authdeptnm" type="STRING" size="256"/>
  53. <Column id="fstrgstrnm" type="STRING" size="256"/>
  54. <Column id="fstrgstdt" type="STRING" size="256"/>
  55. </ColumnInfo>
  56. </Dataset>
  57. </Objects>
  58. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  59. * System Name :
  60. * Job Name :
  61. * Creator :
  62. * Make Date : 2014-12-10
  63. * Description :
  64. *---------------------------------------------------------------------------------------
  65. * Modify Date Modifier Modify Description
  66. *---------------------------------------------------------------------------------------
  67. * 2014-12-10 Live Converter TF->XP
  68. *
  69. *---------------------------------------------------------------------------------------
  70. ****************************************************************************************/
  71. include "com_commonxp::comm_main.xjs";
  72. function SPMMO14101_oninit(obj:Form, e:InitEventInfo)
  73. {
  74. frmf_initForm(obj);
  75. try {
  76. ds_result_warnprcplist.copyData(arg_ds_result_warnprcplist);
  77. } catch(e) {}
  78. }
  79. function SPMMO14101_onload(obj:Form, e:LoadEventInfo)
  80. {
  81. grdf_setToolTipBind(grd_prcperrlist);
  82. }
  83. function button1_onclick(obj:Button, e:ClickEventInfo)
  84. {
  85. opener.frmf_setParameter ( "SPMMO14101_rtn1", "Y" );
  86. close();
  87. }
  88. function button2_onclick(obj:Button, e:ClickEventInfo)
  89. {
  90. opener.setParameter ( "SPMMO14101_rtn1", "N" );
  91. close();
  92. }
  93. ]]></Script>
  94. </Form>
  95. </FDL>