Revert add judge of grade number
This reverts commit 821f4ef2
This commit is contained in:
parent
821f4ef2d4
commit
36d88d52c8
Binary file not shown.
Binary file not shown.
@ -86,7 +86,7 @@ def getGrade(Ip, S):
|
||||
#如果和上一个课程重名
|
||||
if item['LessonInfo']['KCMC'] == last_lesson_name:
|
||||
#判断是否通过
|
||||
if item['YXCJ'] && item['YXCJ'] >= 60:
|
||||
if item['YXCJ'] >= 60:
|
||||
#如果通过贡献1通过
|
||||
last_lesson_kill += 1
|
||||
#贡献总学分绩点
|
||||
@ -122,7 +122,7 @@ def getGrade(Ip, S):
|
||||
last_term_kill, last_term_dead, last_term_credit = 0, 0, item['XF']
|
||||
last_term_grade_list = []
|
||||
#如果通过
|
||||
if item['YXCJ'] && item['YXCJ'] >= 60:
|
||||
if item['YXCJ'] >= 60:
|
||||
#贡献总学分绩点
|
||||
last_term_c_x_g = item['XF'] * (item['YXCJ'] - 50) / 10
|
||||
#贡献通过次数
|
||||
@ -133,7 +133,7 @@ def getGrade(Ip, S):
|
||||
#贡献总学分
|
||||
last_term_credit += item['XF']
|
||||
#如果通过
|
||||
if item['YXCJ'] && item['YXCJ'] >= 60:
|
||||
if item['YXCJ'] >= 60:
|
||||
#贡献通过数
|
||||
last_lesson_kill += 1
|
||||
#贡献学分绩点
|
||||
@ -143,7 +143,7 @@ def getGrade(Ip, S):
|
||||
'title': item['LessonInfo']['KCMC'],
|
||||
'credit': item['XF'],
|
||||
'grade': item['ShowYXCJ'],
|
||||
'kill': 'yes' if (item['YXCJ'] && item['YXCJ'] >= 60) else 'no',
|
||||
'kill': 'yes' if (item['YXCJ'] >= 60) else 'no',
|
||||
'class': item['KSXZ']
|
||||
})
|
||||
#补充最后一次遍历的数据
|
||||
|
Loading…
x
Reference in New Issue
Block a user