...
|
...
|
@@ -42,8 +42,8 @@ class StudyScoreLog extends Model |
|
|
//判断当前项目是否在学生所属场次内
|
|
|
$item_ids = explode(',',$ronda['item_ids']);
|
|
|
$is = in_array($id,$item_ids);
|
|
|
if ($is === false){
|
|
|
return null;
|
|
|
if (in_array($id,$item_ids) === false){
|
|
|
return 111;
|
|
|
}
|
|
|
foreach ($score as $k) {
|
|
|
$sum_score += $k;
|
...
|
...
|
|