fix bugs ค่าคะแนนเป็น string ต้อง convert เป็นตัวเลข
This commit is contained in:
parent
4c1c3f5da8
commit
4a0f02f145
1 changed files with 1 additions and 1 deletions
|
|
@ -475,7 +475,7 @@ namespace BMA.EHR.Report.Service.Controllers
|
||||||
SumB = p.PointB,
|
SumB = p.PointB,
|
||||||
FullC = p.PointTotalC,
|
FullC = p.PointTotalC,
|
||||||
SumC = p.PointC,
|
SumC = p.PointC,
|
||||||
SumScore = p.PointB + p.PointC,
|
SumScore = Convert.ToInt32(p.PointB ?? "0") + Convert.ToInt32(p.PointC ?? "0"),
|
||||||
ExamResult = p.Pass
|
ExamResult = p.Pass
|
||||||
|
|
||||||
})
|
})
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue