模板代码修改
parent
68fa7ce02e
commit
07d4df81f6
Binary file not shown.
Binary file not shown.
|
|
@ -181,6 +181,8 @@ 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;
|
||||
|
|
@ -200,6 +202,8 @@ 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;
|
||||
|
|
@ -217,6 +221,8 @@ 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,11 +233,28 @@ 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
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue