12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <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">
- <Layouts>
- <Layout>
- <Button id="btn_close" taborder="0" class="btn_POP_cls" position="absolute 506 11 520 24" anchor="top right" onclick="btn_close_onclick"/>
- <Static id="st_noticeSubject" class="sta_LoginNotice_tit" transparenthittest="true" position="absolute 8 5 498 30" anchor="left top right" text="청탁금지 서약서 확인"/>
- <Static id="stt_contents" position="absolute 18 57 514 149" style="align:left top;font:Dotum,12;"/>
- <Button id="btn_open" taborder="1" text="청탁금지 서약서 제출 화면으로 이동" onclick="btn_open_onclick" class="btn4" visible="false" position="absolute 278 134 518 154"/>
- </Layout>
- </Layouts>
- <Script type="xscript4.0"><![CDATA[include "com_commonxp::comm_main.xjs"
- function SPZUM02000_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SPZUM02000_onload(obj:Form, e:LoadEventInfo)
- {
- var msg = "";
- var systemcd = sysf_getSystemInfo("systemcd");
-
- switch(systemcd) {
- case "HIS031" :
- case "HIS032" :
- msg = "'부정청탁 및 금품등 수수의 금지에 관한 법률 시행령' 제 42조에 의거\n\n" +
- " 청탁금지 서약서를 반드시 제출하여 주시기 바랍니다.\n\n" +
- "(제출방법 : MIS 접속-> 청탁금지 서약서 제출)";
- btn_open.visible = false;
- break;
- case "MIS030" :
- msg = "'부정청탁 및 금품등 수수의 금지에 관한 법률 시행령' 제 42조에 의거\n\n" +
- " 청탁금지 서약서를 반드시 제출하여 주시기 바랍니다.";
- btn_open.visible = true;
- break;
- }
-
- stt_contents.text = msg;
-
- this.setTimer(1, 300);
- }
- function btn_close_onclick(obj:Button, e:ClickEventInfo)
- {
- this.close();
- }
- function btn_open_onclick(obj:Button, e:ClickEventInfo)
- {
- frmf_open("SMRPD13020", "SMRPD13020", null, null, null, null, null, null, null, null, null, null, "M");
- this.close();
- }
- function SPZUM02000_ontimer(obj:Form, e:TimerEventInfo)
- {
- if(e.timerid == 1) {
- this.killTimer(e.timerid);
-
- this.frmf_setFocus();
- }
- }
- ]]></Script>
- </Form>
- </FDL>
|