修改答案
continuous-integration/drone/push Build is passing Details

Test_IRC_Net8
he 2025-10-24 14:19:04 +08:00
parent 1031222e47
commit 91b66660a6
1 changed files with 3 additions and 1 deletions

View File

@ -291,12 +291,14 @@ namespace IRaCIS.Core.Application.Service
public async Task<IResponseOutput> AddNoneDicomMark(AddNoneDicomMarkInDto inDto) public async Task<IResponseOutput> AddNoneDicomMark(AddNoneDicomMarkInDto inDto)
{ {
var entity = await _readingNoneDicomMarkRepository.InsertOrUpdateAsync(inDto, true); var entity = await _readingNoneDicomMarkRepository.InsertOrUpdateAsync(inDto,true);
if (inDto.Proportion != null) if (inDto.Proportion != null)
{ {
await this.ChangePlottingScale(entity.Id, inDto.Proportion.Value); await this.ChangePlottingScale(entity.Id, inDto.Proportion.Value);
} }
await _visitTaskRepository.SaveChangesAsync();
return ResponseOutput.Ok(entity.Id); return ResponseOutput.Ok(entity.Id);
} }