diff --git a/WebContent/Tenwa/Core/FlowManager/CopyFileToOther.jsp b/WebContent/Tenwa/Core/FlowManager/CopyFileToOther.jsp index e3130c789..de634a814 100644 --- a/WebContent/Tenwa/Core/FlowManager/CopyFileToOther.jsp +++ b/WebContent/Tenwa/Core/FlowManager/CopyFileToOther.jsp @@ -79,7 +79,9 @@ zdo.toZip(fileSavePath_temp, fos1, true); //删除原文件 File f = new File(fileSavePath_temp); - zdo.deleteFile(f); + if(f.length()!=0){ + zdo.deleteFile(f); + } out.print("SUCCESS"); %><%@ include file="/IncludeEndAJAX.jsp"%> diff --git a/WebContent/Tenwa/Lease/Flow/Comm/LBAssetTransferRegistration/FileDownloadImportList.jsp b/WebContent/Tenwa/Lease/Flow/Comm/LBAssetTransferRegistration/FileDownloadImportList.jsp index 8ddafc7d3..9bd67547c 100644 --- a/WebContent/Tenwa/Lease/Flow/Comm/LBAssetTransferRegistration/FileDownloadImportList.jsp +++ b/WebContent/Tenwa/Lease/Flow/Comm/LBAssetTransferRegistration/FileDownloadImportList.jsp @@ -59,6 +59,7 @@ }); } function doCopy(sParam){ + alert("开始下载"); var contractNos = contractNoArray.join("@"); contractNos.replace(/\s+/g, ""); var batchNos = batchNoArray.join("@");