Compare commits
No commits in common. "450f6c00cea845efe0ab1cebd627cf73a6d891da" and "2b696855cc7b10c77504046c9e49548dd1825c42" have entirely different histories.
450f6c00ce
...
2b696855cc
Binary file not shown.
Binary file not shown.
|
|
@ -181,8 +181,6 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
|
||||
public string OneDoctorSignTime { get; set; } = string.Empty;
|
||||
|
||||
public string OneDoctorSign { get; set; } = string.Empty;
|
||||
|
||||
public string TwoVisitName { get; set; } = string.Empty;
|
||||
|
||||
public string TwoCheckDate { get; set; } = string.Empty;
|
||||
|
|
@ -202,8 +200,6 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
|
||||
public string TwoDoctorSignTime { get; set; } = string.Empty;
|
||||
|
||||
public string TwoDoctorSign { get; set; } = string.Empty;
|
||||
|
||||
public string ThreeVisitName { get; set; } = string.Empty;
|
||||
|
||||
public string ThreeCheckDate { get; set; } = string.Empty;
|
||||
|
|
@ -221,8 +217,6 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
public string ThreeOverallResult { get; set; } = string.Empty;
|
||||
|
||||
public string ThreeDoctorSignTime { get; set; } = string.Empty;
|
||||
|
||||
public string ThreeDoctorSign { get; set; } = string.Empty;
|
||||
}
|
||||
|
||||
public class ExportVisitData
|
||||
|
|
|
|||
|
|
@ -233,29 +233,12 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
if (i >= forCount - 1)
|
||||
{
|
||||
export.IsLastPage = true;
|
||||
// 之后最后一个任务需要签名
|
||||
var thisVisitListNum = export.VisitList.Count();
|
||||
switch (thisVisitListNum)
|
||||
{
|
||||
case 1:
|
||||
export.Lesion.OneDoctorSign = "签字:";
|
||||
break;
|
||||
case 2:
|
||||
export.Lesion.TwoDoctorSign = "签字:";
|
||||
break;
|
||||
case 3:
|
||||
export.Lesion.ThreeDoctorSign = "签字:";
|
||||
break;
|
||||
}
|
||||
|
||||
}
|
||||
resultdata.Add(export);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
var value = new
|
||||
{
|
||||
VisitTaskList = resultdata,
|
||||
|
|
|
|||
Loading…
Reference in New Issue