From c2412bfb4bce55c65a6111d87e76b0226fdb373d Mon Sep 17 00:00:00 2001 From: he <109787524@qq.com> Date: Mon, 24 Feb 2025 16:54:05 +0800 Subject: [PATCH] =?UTF-8?q?=E5=A4=8D=E5=88=B6=E7=B3=BB=E7=BB=9F=E5=88=B0?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../Service/Document/TrialFileTypeService.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/IRaCIS.Core.Application/Service/Document/TrialFileTypeService.cs b/IRaCIS.Core.Application/Service/Document/TrialFileTypeService.cs index 6e7e1644c..a460a3fea 100644 --- a/IRaCIS.Core.Application/Service/Document/TrialFileTypeService.cs +++ b/IRaCIS.Core.Application/Service/Document/TrialFileTypeService.cs @@ -132,7 +132,10 @@ public class TrialFileTypeService(IRepository _trialFileTypeRepos /// public async Task GetTrialFileTypeData(GetTrialFileTypeDataInDto inDto) { - + await this.CopySystemFileTypeToTrial(new CopySystemFileTypeToTrialInDto() + { + TrialId = inDto.TrialId + }); var trialFileTypeList = await _trialFileTypeRepository.Where(x=>x.TrialId==inDto.TrialId) .WhereIf(inDto.IsCheck, x => x.IsEnable) .OrderBy(x=>x.ShowOrder)