Browse Source

Merge branch 'develop' of http://132.232.92.186:3000/XinXiBu/OA2023 into develop

yuanrf 9 months ago
parent
commit
c4cd2cd675
1 changed files with 2 additions and 1 deletions
  1. 2 1
      OASystem/OASystem.Api/Controllers/GroupsController.cs

+ 2 - 1
OASystem/OASystem.Api/Controllers/GroupsController.cs

@@ -6334,11 +6334,12 @@ namespace OASystem.API.Controllers
                 }
             }
             string path = savePath + Find.TeamName + "出访日程.docx";
+            string ftpPath = AppSettingsHelper.Get("WordBaseUrl") + AppSettingsHelper.Get("WordFtpPath") + "Travel/export/" + Find.TeamName + "出访日程.docx";
 
             try
             {
                 doc.Save(path, Aspose.Words.SaveFormat.Doc);
-                jw = JsonView(true, "导出成功", path);
+                jw = JsonView(true, "导出成功", ftpPath);
             }
             catch (Exception)
             {