SPMMO05500_수술전달사항조회.xfdl 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SPMMO05500" position="absolute 0 0 335 227" titletext="수술/마취 전달사항" oninit="SPMMO05500_oninit" onload="SPMMO05500_onload">
  5. <Layouts>
  6. <Layout>
  7. <Static text="전달사항" position="absolute 0 5 134 25" id="caption7" class="tit_2"/>
  8. <Shape position="absolute 5 18 331 24" linetype="vertical" id="line9" class="line_1"/>
  9. <Static text="내용" position="absolute 6 29 45 195" align="align:center middle;" id="cap_cnts" class="cell_1"/>
  10. <Button position="absolute 276 202 332 224" id="btn_wndclose" class="btn4" text="닫기" onclick="btn_wndclose_onclick"/>
  11. <TextArea position="absolute 50 30 331 195" id="tar_opdelivefact"/>
  12. </Layout>
  13. </Layouts>
  14. <Objects>
  15. <Dataset id="ds_init" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
  16. <ColumnInfo>
  17. <Column id="opdelivefact" type="STRING" size="256"/>
  18. </ColumnInfo>
  19. <Rows>
  20. <Row/>
  21. </Rows>
  22. </Dataset>
  23. </Objects>
  24. <Bind>
  25. <BindItem id="item0" compid="tar_opdelivefact" propid="value" datasetid="ds_init" columnid="opdelivefact"/>
  26. </Bind>
  27. <Script type="xscript4.0"><![CDATA[/***************************************************************************************
  28. * System Name :
  29. * Job Name :
  30. * Creator :
  31. * Make Date : 2014-12-10
  32. * Description :
  33. *---------------------------------------------------------------------------------------
  34. * Modify Date Modifier Modify Description
  35. *---------------------------------------------------------------------------------------
  36. * 2014-12-10 Live Converter TF->XP
  37. *
  38. *---------------------------------------------------------------------------------------
  39. ****************************************************************************************/
  40. include "com_commonxp::comm_main.xjs";
  41. include "emr_prcpmngtxp::MMO001.xjs";
  42. function SPMMO05500_oninit(obj:Form, e:InitEventInfo)
  43. {
  44. frmf_initForm(obj);
  45. }
  46. function SPMMO05500_onload(obj:Form, e:LoadEventInfo)
  47. {
  48. var opdelivefact = opener.frmf_getParameter("SPMMO05500_param");
  49. if( opdelivefact == null || opdelivefact == ""){
  50. alert("opdelivefact 정보가 없습니다.");
  51. close();
  52. } else {
  53. ds_init.setColumn(0, "opdelivefact", opdelivefact); //model.setValue("/root/init/opdelivefact", opdelivefact);
  54. //tar_opdelivefact.refresh();
  55. }
  56. }
  57. function btn_wndclose_onclick(obj:Button, e:ClickEventInfo)
  58. {
  59. close();
  60. }
  61. ]]></Script>
  62. </Form>
  63. </FDL>