123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- <?xml version="1.0" encoding="utf-8"?>
- <FDL version="1.5">
- <TypeDefinition url="..\..\..\default_typedef.xml"/>
- <Form id="SMRSO22601" position="absolute 0 0 822 796" titletext="재고조회(부서) 도움말" oninit="SMRSO22601_oninit" onload="SMRSO22601_onload">
- <Layouts>
- <Layout>
- <Div position="absolute 1 51 811 791" id="group2" scrollbars="autoboth">
- <Layouts>
- <Layout>
- <ImageViewer position="absolute 0 0 794 1087" id="img1" image="URL('IMG::mis/jeago001.png')" anchor="default" imagealign="center top"/>
- <ImageViewer position="absolute 0 1086 794 1697" id="img2" image="URL('IMG::mis/jeago002.png')" anchor="default" imagealign="center top"/>
- </Layout>
- </Layouts>
- </Div>
- <Static id="caption6" text="재고조회(부서) 도움말" class="tit_1" position="absolute 0 0 248 23"/>
- <Button id="btn_help" taborder="1" text="도움말다운로드" class="btn4" position="absolute 0 26 120 48" onclick="btn_help_onclick"/>
- </Layout>
- </Layouts>
- <Objects>
- <Dataset id="ds_filelist" firefirstcount="0" firenextcount="0" useclientlayout="false" updatecontrol="true" enableevent="true" loadkeymode="keep" loadfiltermode="keep" reversesubsum="false">
- <ColumnInfo>
- <Column id="filedata" type="STRING" size="256"/>
- </ColumnInfo>
- </Dataset>
- <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>
- </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 SMRSO22601_oninit(obj:Form, e:InitEventInfo)
- {
- frmf_initForm(obj);
- }
- function SMRSO22601_onload(obj:Form, e:LoadEventInfo)
- {
-
- }
- function btn_help_onclick(obj:Button, e:ClickEventInfo)
- {
- var fd = new FileDialog;
- var filepath = "mis/rpv/req//20130104/20130104103314833333_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>
|