SPZUM02000_청탁금지서약서확인팝업.xfdl 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FDL version="1.5">
  3. <TypeDefinition url="..\..\..\default_typedef.xml"/>
  4. <Form id="SPZUM02000" classname="SPZUM02000_청탁금지서약서확인팝업" inheritanceid="" position="absolute 0 0 530 170" titletext="청탁금지서약서확인팝업" class="frm_POP" oninit="SPZUM02000_oninit" onload="SPZUM02000_onload" ontimer="SPZUM02000_ontimer">
  5. <Layouts>
  6. <Layout>
  7. <Button id="btn_close" taborder="0" class="btn_POP_cls" position="absolute 506 11 520 24" anchor="top right" onclick="btn_close_onclick"/>
  8. <Static id="st_noticeSubject" class="sta_LoginNotice_tit" transparenthittest="true" position="absolute 8 5 498 30" anchor="left top right" text="청탁금지 서약서 확인"/>
  9. <Static id="stt_contents" position="absolute 18 57 514 149" style="align:left top;font:Dotum,12;"/>
  10. <Button id="btn_open" taborder="1" text="청탁금지 서약서 제출 화면으로 이동" onclick="btn_open_onclick" class="btn4" visible="false" position="absolute 278 134 518 154"/>
  11. </Layout>
  12. </Layouts>
  13. <Script type="xscript4.0"><![CDATA[include "com_commonxp::comm_main.xjs"
  14. function SPZUM02000_oninit(obj:Form, e:InitEventInfo)
  15. {
  16. frmf_initForm(obj);
  17. }
  18. function SPZUM02000_onload(obj:Form, e:LoadEventInfo)
  19. {
  20. var msg = "";
  21. var systemcd = sysf_getSystemInfo("systemcd");
  22. switch(systemcd) {
  23. case "HIS031" :
  24. case "HIS032" :
  25. msg = "'부정청탁 및 금품등 수수의 금지에 관한 법률 시행령' 제 42조에 의거\n\n" +
  26. " 청탁금지 서약서를 반드시 제출하여 주시기 바랍니다.\n\n" +
  27. "(제출방법 : MIS 접속-> 청탁금지 서약서 제출)";
  28. btn_open.visible = false;
  29. break;
  30. case "MIS030" :
  31. msg = "'부정청탁 및 금품등 수수의 금지에 관한 법률 시행령' 제 42조에 의거\n\n" +
  32. " 청탁금지 서약서를 반드시 제출하여 주시기 바랍니다.";
  33. btn_open.visible = true;
  34. break;
  35. }
  36. stt_contents.text = msg;
  37. this.setTimer(1, 300);
  38. }
  39. function btn_close_onclick(obj:Button, e:ClickEventInfo)
  40. {
  41. this.close();
  42. }
  43. function btn_open_onclick(obj:Button, e:ClickEventInfo)
  44. {
  45. frmf_open("SMRPD13020", "SMRPD13020", null, null, null, null, null, null, null, null, null, null, "M");
  46. this.close();
  47. }
  48. function SPZUM02000_ontimer(obj:Form, e:TimerEventInfo)
  49. {
  50. if(e.timerid == 1) {
  51. this.killTimer(e.timerid);
  52. this.frmf_setFocus();
  53. }
  54. }
  55. ]]></Script>
  56. </Form>
  57. </FDL>