Merge branch 'master' of http://192.168.1.2:8033/IRaCIS_Core_Api
commit
83bd026c4e
|
@ -280,11 +280,12 @@ namespace IRaCIS.Application.Services
|
||||||
|
|
||||||
var data = await _readingClinicalDataRepository.FirstOrDefaultAsync(t => t.Id == inDto.ReadingClinicalDataId);
|
var data = await _readingClinicalDataRepository.FirstOrDefaultAsync(t => t.Id == inDto.ReadingClinicalDataId);
|
||||||
|
|
||||||
if (data.ReadingClinicalDataState != ReadingClinicalDataStatus.HaveChecked)
|
//if (data.ReadingClinicalDataState != ReadingClinicalDataStatus.HaveChecked)
|
||||||
{
|
//{
|
||||||
//---当前临床数据状态不是已核查状态,不允许签名!
|
// //---当前临床数据状态不是已核查状态,不允许签名!
|
||||||
throw new BusinessValidationFailedException(_localizer["ReadingClinicalData_Unchecked"]);
|
// throw new BusinessValidationFailedException(_localizer["ReadingClinicalData_Unchecked"]);
|
||||||
}
|
//}
|
||||||
|
|
||||||
data.IsBlind = inDto.IsBlind;
|
data.IsBlind = inDto.IsBlind;
|
||||||
data.IsComplete=inDto.IsComplete;
|
data.IsComplete=inDto.IsComplete;
|
||||||
data.IsSign = true;
|
data.IsSign = true;
|
||||||
|
|
Loading…
Reference in New Issue