修改提交
parent
ab4847b510
commit
6d27341365
|
@ -421,6 +421,7 @@ namespace IRaCIS.Core.API.Controllers
|
||||||
public async Task<IResponseOutput> CRCRequestToQC(DataInspectionDto<CRCRequestToQCCommand> opt)
|
public async Task<IResponseOutput> CRCRequestToQC(DataInspectionDto<CRCRequestToQCCommand> opt)
|
||||||
{
|
{
|
||||||
var fun = _qCOperationService.CRCRequestToQC;
|
var fun = _qCOperationService.CRCRequestToQC;
|
||||||
|
opt.AuditInfo.NeedSava = false;
|
||||||
return await _inspectionService.Enforcement(opt.OptCommand, opt.AuditInfo, opt.SignInfo, fun);
|
return await _inspectionService.Enforcement(opt.OptCommand, opt.AuditInfo, opt.SignInfo, fun);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1422,24 +1422,24 @@ namespace IRaCIS.Core.Application.Image.QA
|
||||||
|
|
||||||
var success = await _repository.SaveChangesAsync();
|
var success = await _repository.SaveChangesAsync();
|
||||||
List<DataInspection> datas = new List<DataInspection>();
|
List<DataInspection> datas = new List<DataInspection>();
|
||||||
dbSubjectVisitList.ForEach(x =>
|
//dbSubjectVisitList.ForEach(x =>
|
||||||
{
|
//{
|
||||||
datas.Add(new DataInspection()
|
// datas.Add(new DataInspection()
|
||||||
{
|
// {
|
||||||
|
|
||||||
SiteId = x.SiteId,
|
// SiteId = x.SiteId,
|
||||||
SubjectId = x.SubjectId,
|
// SubjectId = x.SubjectId,
|
||||||
TrialId = x.TrialId,
|
// TrialId = x.TrialId,
|
||||||
SubjectVisitId = x.Id,
|
// SubjectVisitId = x.Id,
|
||||||
Identification= "Edit|Visit|Status|Visit-Image Upload",
|
// Identification= "Edit|Visit|Status|Visit-Image Upload",
|
||||||
JsonDetail = JsonConvert.SerializeObject(new
|
// JsonDetail = JsonConvert.SerializeObject(new
|
||||||
{
|
// {
|
||||||
SubmitState = "已提交",
|
// SubmitState = "已提交",
|
||||||
|
|
||||||
|
|
||||||
})
|
// })
|
||||||
});
|
// });
|
||||||
});
|
//});
|
||||||
|
|
||||||
dbSubjectVisitList.ForEach(x =>
|
dbSubjectVisitList.ForEach(x =>
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue