xiaochanghai 2 months ago
parent f4ba01a27b
commit c74bf486f8
  1. 10945
      Model/Tiobon.Web.pdm
  2. 3
      Tiobon.Core.Services/Ghre/Ghre_ExamRecordServices.cs

File diff suppressed because it is too large Load Diff

@ -364,7 +364,8 @@ public class Ghre_ExamRecordServices : BaseServices<Ghre_ExamRecord, Ghre_ExamRe
WHERE StaffID = {record.StaffId}";
extend.StaffInfo = await Db.Ado.SqlQuerySingleAsync<StaffInfo>(sql);
extend.StaffInfo.StaffScore = record.Score != null ? record.Score.Value : 0;
extend.StaffInfo.StaffScore = details.Sum(x => x.Score) ?? 0;
sql = @$"SELECT A.StaffNo,
A.StaffName,

Loading…
Cancel
Save