Commit 06ffa7cd authored by 黄奎's avatar 黄奎

教师统计修改

parent 63cd059a
......@@ -587,6 +587,10 @@ namespace Edu.Module.User
{
var tempAssessment = teacherAssessmentList?.Where(qitem => qitem.TeacherId == item.TeacherId)?.FirstOrDefault();
item.AssessmentScore = tempAssessment?.TotalScore ?? 0;
if (item.FinishFollow > item.TotalFollow)
{
item.FinishFollow = item.TotalFollow;
}
item.OnLineInteractiveScore = GetTeacherAndStudentScore(item.FinishFollow, item.TotalFollow);
item.TotalScore = (item.StudentCount + item.RenewScore
+ item.UpgradeScore + item.TransScore + item.TrialSpeakScore - item.TruancyScore - item.WithdrawsScore - item.ComplaintScore
......@@ -742,6 +746,10 @@ namespace Edu.Module.User
if (TotalFollow > 0)
{
decimal stepScore = 2;
if (FinishFollow > TotalFollow)
{
FinishFollow = TotalFollow;
}
if (TotalFollow > 20 && TotalFollow < 40)
{
stepScore = 5;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment