修改一版
parent
9a8265af3d
commit
ea625726ad
|
@ -98,18 +98,7 @@ namespace IRaCIS.Core.API.Controllers
|
|||
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 配置 基础逻辑信息
|
||||
/// </summary>
|
||||
/// <param name="opt"></param>
|
||||
/// <returns></returns>
|
||||
[HttpPost, Route("Inspection/configTrialBasicInfo/configTrialBasicInfo")]
|
||||
[UnitOfWork]
|
||||
public async Task<IResponseOutput> ConfigTrialBasicInfo(DataInspectionDto<BasicTrialConfig> opt)
|
||||
{
|
||||
await _inspectionService.RecordSing(opt.SignInfo);
|
||||
return await _trialConfigService.ConfigTrialBasicInfo(opt.Data);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 配置 基础逻辑信息并确认
|
||||
|
@ -131,7 +120,7 @@ namespace IRaCIS.Core.API.Controllers
|
|||
return await _trialConfigService.TrialConfigSignatureConfirm(new SignConfirmDTO()
|
||||
{
|
||||
TrialId = opt.Data.TrialId,
|
||||
SignCode = opt.Data.SignCode
|
||||
SignCode = opt.SignInfo.SignCode
|
||||
});
|
||||
|
||||
|
||||
|
@ -150,19 +139,7 @@ namespace IRaCIS.Core.API.Controllers
|
|||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 配置流程
|
||||
/// </summary>
|
||||
/// <param name="opt"></param>
|
||||
/// <returns></returns>
|
||||
[HttpPost, Route("Inspection/configTrialBasicInfo/configTrialProcessInfo")]
|
||||
[UnitOfWork]
|
||||
public async Task<IResponseOutput> ConfigTrialProcessInfo(DataInspectionDto<TrialProcessConfig> opt)
|
||||
{
|
||||
|
||||
await _inspectionService.RecordSing(opt.SignInfo);
|
||||
return await _trialConfigService.ConfigTrialProcessInfo(opt.Data);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
|
@ -183,25 +160,13 @@ namespace IRaCIS.Core.API.Controllers
|
|||
return await _trialConfigService.TrialConfigSignatureConfirm(new SignConfirmDTO()
|
||||
{
|
||||
TrialId = opt.Data.TrialId,
|
||||
SignCode = opt.Data.SignCode
|
||||
SignCode = opt.SignInfo.SignCode
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// 配置加急信息
|
||||
/// </summary>
|
||||
/// <param name="opt"></param>
|
||||
/// <returns></returns>
|
||||
[HttpPost, Route("Inspection/configTrialBasicInfo/ConfigTrialUrgentInfo")]
|
||||
[UnitOfWork]
|
||||
public async Task<IResponseOutput> ConfigTrialUrgentInfo(DataInspectionDto<TrialUrgentConfig> opt)
|
||||
{
|
||||
|
||||
await _inspectionService.RecordSing(opt.SignInfo);
|
||||
return await _trialConfigService.ConfigTrialUrgentInfo(opt.Data);
|
||||
}
|
||||
|
||||
|
||||
|
||||
/// <summary>
|
||||
|
@ -224,7 +189,7 @@ namespace IRaCIS.Core.API.Controllers
|
|||
return await _trialConfigService.TrialConfigSignatureConfirm(new SignConfirmDTO()
|
||||
{
|
||||
TrialId = opt.Data.TrialId,
|
||||
SignCode = opt.Data.SignCode
|
||||
SignCode = opt.SignInfo.SignCode
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -62,13 +62,6 @@
|
|||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IRaCIS.Core.API.Controllers.InspectionController.ConfigTrialBasicInfo(IRaCIS.Core.Application.Service.Inspection.DTO.DataInspectionDto{IRaCIS.Core.Application.Contracts.BasicTrialConfig})">
|
||||
<summary>
|
||||
配置 基础逻辑信息
|
||||
</summary>
|
||||
<param name="opt"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IRaCIS.Core.API.Controllers.InspectionController.ConfigTrialBasicInfoConfirm(IRaCIS.Core.Application.Service.Inspection.DTO.DataInspectionDto{IRaCIS.Core.Application.Contracts.BasicTrialConfig})">
|
||||
<summary>
|
||||
配置 基础逻辑信息并确认
|
||||
|
@ -82,13 +75,6 @@
|
|||
</summary>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IRaCIS.Core.API.Controllers.InspectionController.ConfigTrialProcessInfo(IRaCIS.Core.Application.Service.Inspection.DTO.DataInspectionDto{IRaCIS.Core.Application.Contracts.TrialProcessConfig})">
|
||||
<summary>
|
||||
配置流程
|
||||
</summary>
|
||||
<param name="opt"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IRaCIS.Core.API.Controllers.InspectionController.ConfigTrialProcessInfoConfirm(IRaCIS.Core.Application.Service.Inspection.DTO.DataInspectionDto{IRaCIS.Core.Application.Contracts.TrialProcessConfig})">
|
||||
<summary>
|
||||
配置流程并确认
|
||||
|
@ -96,13 +82,6 @@
|
|||
<param name="opt"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IRaCIS.Core.API.Controllers.InspectionController.ConfigTrialUrgentInfo(IRaCIS.Core.Application.Service.Inspection.DTO.DataInspectionDto{IRaCIS.Core.Application.Contracts.TrialUrgentConfig})">
|
||||
<summary>
|
||||
配置加急信息
|
||||
</summary>
|
||||
<param name="opt"></param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="M:IRaCIS.Core.API.Controllers.InspectionController.ConfigTrialUrgentInfoConfirm(IRaCIS.Core.Application.Service.Inspection.DTO.DataInspectionDto{IRaCIS.Core.Application.Contracts.TrialUrgentConfig})">
|
||||
<summary>
|
||||
配置加急信息并确认
|
||||
|
|
|
@ -66,7 +66,7 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
|
||||
public string Modalitys { get; set; } = string.Empty;
|
||||
|
||||
public string SignCode { get; set; } = string.Empty;
|
||||
|
||||
}
|
||||
|
||||
public class TrialProcessConfig
|
||||
|
@ -111,7 +111,6 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
|
||||
public int? DigitPlaces { get; set; }
|
||||
|
||||
public string SignCode { get; set; } = string.Empty;
|
||||
|
||||
}
|
||||
|
||||
|
@ -130,7 +129,6 @@ namespace IRaCIS.Core.Application.Contracts
|
|||
|
||||
public bool IsPDProgressView { get; set; }
|
||||
|
||||
public string SignCode { get; set; } = string.Empty;
|
||||
}
|
||||
|
||||
public class TrialStateChangeDTO
|
||||
|
|
|
@ -37,8 +37,7 @@ namespace IRaCIS.Core.Domain.Models
|
|||
/// <summary>
|
||||
/// SubjectVisitId
|
||||
/// </summary>
|
||||
[Required]
|
||||
public Guid SubjectVisitId { get; set; }
|
||||
public Guid? SubjectVisitId { get; set; }
|
||||
|
||||
|
||||
//关联基础数据
|
||||
|
|
Loading…
Reference in New Issue