1导出文件项目名称带"/"

This commit is contained in:
2025-10-01 17:41:43 +08:00
parent 69aacade7c
commit 0feb29f088
7 changed files with 7 additions and 7 deletions
@@ -446,7 +446,7 @@ namespace FineUIPro.Web.CQMS.ProcessControl
if (StatisticsList != null)
{
string projectName = BLL.ProjectService.GetShortNameByProjectId(this.CurrUser.LoginProjectId);
newUrl = uploadfilepath.Replace("控制点检查检测合格率统计模板", "控制点检查检测合格率统计(" + projectName + DateTime.Now.ToString("yyyyMMdd") + "");
newUrl = uploadfilepath.Replace("控制点检查检测合格率统计模板", "控制点检查检测合格率统计(" + projectName.Replace("/", "") + DateTime.Now.ToString("yyyyMMdd") + "");
if (File.Exists(newUrl))
{
File.Delete(newUrl);