/*************************************************************** *

ProName:FinExtractInput.js

*

Title:会计分录提取

*

Description:会计分录提取

*

Copyright:Copyright (c) 2012

*

Company:Sinosoft

* @author : 杨治纲 * @version : 8.0 * @date : 2012-01-01 ****************************************************************/ var showInfo; var turnPage = new turnPageClass(); var turnPage1 = new turnPageClass(); var mOperate = "";//操作状态 var tSQLInfo = new SqlClass(); /** * 提交数据 */ function submitForm() { var showStr = i18nMessage("正在处理数据,请您稍候并且不要修改屏幕上的值或链接其他页面!", "LIS-04535"); var urlStr = "../common/jsp/MessagePage.jsp?picture=C&content="+ encodeURIComponent(showStr); //showInfo = window.showModelessDialog(urlStr,window,"status:no;help:0;close:0;dialogWidth:550px;dialogHeight:250px"); var name='提示'; //网页名称,可为空; var iWidth=550; //弹出窗口的宽度; var iHeight=250; //弹出窗口的高度; var iTop = (window.screen.availHeight - iHeight) / 2; //获得窗口的垂直位置 var iLeft = (window.screen.availWidth - iWidth) / 2; //获得窗口的水平位置 showInfo = window.open (urlStr,name, "status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=0,titlebar=no,height="+ iHeight+",width="+iWidth+",innerHeight="+iHeight+",innerWidth=" +iWidth+",left="+iLeft+",top="+iTop,false); showInfo.focus(); fm.Operate.value = mOperate; fm.action = "../API/grp_account/g_account/FinExtractSave/ADD"; // fm.submit(); ajaxSubmit2(document.getElementById("fm"),resultAfterSubmit); } /** * 提交数据后返回操作 */ function afterSubmit(FlagStr, content, tFilePath, tFileName) { if (typeof(showInfo)=="object" && typeof(showInfo)!="unknown") { showInfo.close(); } while (content.indexOf('[')!=-1){ content=content.replace('[',''); content=content.replace(']',''); } if (FlagStr=="Fail") { var urlStr = "../common/jsp/MessagePage.jsp?picture=C&content="+ encodeURIComponent(content); //showModalDialog(urlStr,window,"status:no;help:0;close:0;dialogWidth:550px;dialogHeight:250px"); var name='提示'; //网页名称,可为空; var iWidth=550; //弹出窗口的宽度; var iHeight=250; //弹出窗口的高度; var iTop = (window.screen.availHeight - iHeight) / 2; //获得窗口的垂直位置 var iLeft = (window.screen.availWidth - iWidth) / 2; //获得窗口的水平位置 showInfo = window.open (urlStr,name, "status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=0,titlebar=no,height="+ iHeight+",width="+iWidth+",innerHeight="+iHeight+",innerWidth=" +iWidth+",left="+iLeft+",top="+iTop,false); showInfo.focus(); } else { var urlStr = "../common/jsp/MessagePage.jsp?picture=S&content="+ encodeURIComponent(content); //showModalDialog(urlStr,window,"status:no;help:0;close:0;dialogWidth:550px;dialogHeight:250px"); var name='提示'; //网页名称,可为空; var iWidth=550; //弹出窗口的宽度; var iHeight=250; //弹出窗口的高度; var iTop = (window.screen.availHeight - iHeight) / 2; //获得窗口的垂直位置 var iLeft = (window.screen.availWidth - iWidth) / 2; //获得窗口的水平位置 showInfo = window.open (urlStr,name, "status=no,toolbar=no,menubar=no,location=no,resizable=no,scrollbars=0,titlebar=no,height="+ iHeight+",width="+iWidth+",innerHeight="+iHeight+",innerWidth=" +iWidth+",left="+iLeft+",top="+iTop,false); showInfo.focus(); if (mOperate=="download") { // window.location = "../API/grp_common/jsp/download/DOWNLOAD?FilePath="+tFilePath+"&FileName="+tFileName downloadFile(tFilePath,tFileName,"../API/grp_common/jsp/download/DOWNLOAD"); } } } /** * 查询会计分录信息 */ function queryData() { if (!verifyInput2()) { return false; } var tStartDate = fm.StartDate.value; var tEndDate = fm.EndDate.value; tSQLInfo = new SqlClass(); tSQLInfo.setModule("grp_account"); tSQLInfo.setResourceName("g_account.FinExtractSql"); tSQLInfo.setSqlId("FinExtractSql1"); tSQLInfo.addSubPara(tStartDate); tSQLInfo.addSubPara(tEndDate); turnPage1.queryModal(tSQLInfo.getString(), FinExtractGrid, 1); if (!turnPage1.strQueryResult) { i18nAlert("没有查询到数据!", "LIS-02444"); return false; } } //数据导出 function exportData() { if (!i18nConfirm("确认要导出数据?", "LIS-00694")) { return false; } if (!verifyInput2()) { return false; } var tStartDate = fm.StartDate.value; var tEndDate = fm.EndDate.value; //报表标题 var tTitle = ""; tTitle = "SourceBatchID^|AccountingDate^|CurrencyCode^|CurrencyConversionDate^|CurrencyConversionRate^|CurrencyConversionType^|EnteredDr^|EnteredCr^|AccountedDr^|AccountedCr^|ActualFlag^|Segment1^|Segment2^|Segment3^|Segment4^|Segment5^|Segment6^|Segment7^|Segment8^|Segment9^|LineDescription^|Attribute1^|Attribute2^|Attribute3^|Attribute4^|Attribute5^|Attribute6^|Attribute7^|Attribute8^|Attribute9^|Attribute10^|Attribute11^|Attribute12^|Attribute13^|Attribute14^|Attribute15"; fm.Title.value = tTitle; //报表提数SQL tSQLInfo = new SqlClass(); tSQLInfo.setModule("g_account"); tSQLInfo.setResourceName("g_account.FinExtractSql"); tSQLInfo.setSqlId("FinExtractSql2"); tSQLInfo.addSubPara(tStartDate); tSQLInfo.addSubPara(tEndDate); var tQuerySQL = tSQLInfo.getString(); fm.action = "../API/grp_common/jsp/QueryDataExport/EXPORT"; ajaxSubmit2(document.getElementById("fm"), null, null, true,tTitle, tQuerySQL); } /** * 提取数据 */ function extractData() { if (!verifyInput2()) { return false; } mOperate = "extract"; fm.action = "../API/grp_common/jsp/QueryDataExport/extract"; submitForm(); } /** * 删除数据 */ function deleteData() { if (!verifyInput2()) { return false; } mOperate = "delete"; fm.action = "../API/grp_common/jsp/QueryDataExport/delete"; submitForm(); } /** * 下载财务接口文件 */ function downloadData() { if (!verifyInput2()) { return false; } mOperate = "download"; fm.action = "../API/grp_common/jsp/QueryDataExport/download"; submitForm(); } function resultAfterSubmit(FlagStr,Content,result) { afterSubmit(FlagStr, Content, result.tFilePath, result.tFileName); }