12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMRSO21401" position="absolute 0 0 820 813" titletext="출고등록(부서) 도움말" oninit="SMRSO21401_oninit" onload="SMRSO21401_onload">
- <Layouts>
- <Layout>
- <Div position="absolute 1 48 811 812" id="group2" scrollbars="autoboth">
- <Layouts>
- <Layout>
- <ImageViewer position="absolute 0 1 794 1069" id="img1" image="URL('IMG::mis/out001.png')" anchor="default" imagealign="center top"/>
- <ImageViewer position="absolute 0 1068 794 2186" id="img2" image="URL('IMG::mis/out002.png')" anchor="default" imagealign="center top"/>
- <ImageViewer position="absolute 0 2185 794 3037" id="img3" image="URL('IMG::mis/out003.png')" anchor="default" imagealign="center top"/>
- <ImageViewer position="absolute 0 3036 794 4157" id="img4" image="URL('IMG::mis/out004.png')" anchor="default" imagealign="center top"/>
- <ImageViewer position="absolute 0 4156 794 5279" id="img5" image="URL('IMG::mis/out005.png')" anchor="default" imagealign="center top"/>
- <ImageViewer position="absolute 0 5278 794 6052" id="img6" image="URL('IMG::mis/out006.png')" anchor="default" imagealign="center top"/>
- <ImageViewer position="absolute 0 6051 794 7134" id="img7" image="URL('IMG::mis/out007.png')" anchor="default" imagealign="center top"/>
- <ImageViewer position="absolute 0 7133 794 7856" id="img8" image="URL('IMG::mis/out008.png')" anchor="default" imagealign="center top"/>
- <ImageViewer position="absolute 0 7855 794 8938" id="img9" image="URL('IMG::mis/out009.png')" anchor="default" imagealign="center top"/>
- </Layout>
- </Layouts>
- </Div>
- <Static id="caption6" text="출고등록(부서) 도움말" class="tit_1" position="absolute 0 0 256 23"/>
- <Button id="btn_help" taborder="1" text="도움말다운로드" class="btn4" position="absolute 0 25 120 47" onclick="btn_help_onclick"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_filepath" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="filepath" type="STRING" size="256"/>
- </ColumnInfo>
- <Rows>
- <Row/>
- </Rows>
- </Dataset>
- <Dataset id="ds_filelist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false"/>
- </Objects>
- <Script type="xscript4.0"><![CDATA[/***************************************************************************************
- * System Name :
- * Job Name :
- * Creator :
- * Make Date : 2017-06-19
- * Description :
- *---------------------------------------------------------------------------------------
- * Modify Date Modifier Modify Description
- *---------------------------------------------------------------------------------------
- * 2017-06-19 Live Converter TF->XP
- *
- *---------------------------------------------------------------------------------------
- ****************************************************************************************/
- include "com_commonxp::comm_main.xjs";
- include "mis_miscommonxp::MIS.xjs";
- function SMRSO21401_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SMRSO21401_onload(obj:Form, e:LoadEventInfo)
- {
-
- }
- function btn_help_onclick(obj:Button, e:ClickEventInfo)
- {
- var fd = new FileDialog;
- var filepath = "mis/rpv/req//20130104/20130104103314832222_MIS"; //운영
- var filenm = "출고등록 도움말.hwp";
- var objVFile = fd.open("FileSave", FileDialog.SAVE, "%MYDOCUMENT%", filenm);
- ds_filepath.setColumn(0, "filepath", filepath);
- var oParam = {};
- oParam.id = "TRRWC03003";
- oParam.service = "paybaseinfomngtapp.PayBaseInfoMngt";
- oParam.method = "reqGetManualAtt";
- oParam.inds = "req=ds_filepath";
- oParam.outds = "ds_filelist=attachfile";
- oParam.async = false;
- //oParam.callback = "cf_TRRWC03003";
- tranf_submit(oParam);
- dsf_readFileFromDs(objVFile.fullpath, ds_filelist, 0, "filedata"); // 파일저장
- if (sysf_messageBox("파일을", "Q004") == "6")
- {
- system.execShell("\"" + fileObj.fullpath + "\"");
- }
-
- }
- ]]></Script>
- </Form>
- </FDL>
|