|
@@ -1,4 +1,5 @@
|
|
|
-using DotNetCore.CAP;
|
|
|
+using DocumentFormat.OpenXml.Wordprocessing;
|
|
|
+using DotNetCore.CAP;
|
|
|
using FluentValidation;
|
|
|
using Hotline.Api.Filter;
|
|
|
using Hotline.Application.CallCenter;
|
|
@@ -5712,7 +5713,8 @@ public class OrderController : BaseController
|
|
|
var ids = item.FileJson.Select(x => x.Id).ToList();
|
|
|
item.Files = await _fileRepository.GetFilesAsync(ids, HttpContext.RequestAborted);
|
|
|
}
|
|
|
- }
|
|
|
+ item.Name = item.Name + "(" + item.HandlerOrgName + ")";
|
|
|
+ }
|
|
|
return workflowDto;
|
|
|
}
|
|
|
|