mirror of
https://github.com/moodle/moodle.git
synced 2025-05-07 00:36:01 +02:00
Merge branch 'MDL-47704-master' of git://github.com/damyon/moodle
This commit is contained in:
commit
05599c47cb
@ -779,6 +779,24 @@ class grade_category extends grade_object {
|
||||
private function set_usedinaggregation($userid, $usedweights, $novalue, $dropped, $extracredit) {
|
||||
global $DB;
|
||||
|
||||
// First set them all to weight null and status = 'unknown'.
|
||||
if ($allitems = grade_item::fetch_all(array('categoryid'=>$this->id))) {
|
||||
list($itemsql, $itemlist) = $DB->get_in_or_equal(array_keys($allitems), SQL_PARAMS_NAMED, 'g');
|
||||
|
||||
$itemlist['userid'] = $userid;
|
||||
|
||||
$DB->set_field_select('grade_grades',
|
||||
'aggregationstatus',
|
||||
'unknown',
|
||||
"itemid $itemsql AND userid = :userid",
|
||||
$itemlist);
|
||||
$DB->set_field_select('grade_grades',
|
||||
'aggregationweight',
|
||||
0,
|
||||
"itemid $itemsql AND userid = :userid",
|
||||
$itemlist);
|
||||
}
|
||||
|
||||
// Included.
|
||||
if (!empty($usedweights)) {
|
||||
// The usedweights items are updated individually to record the weights.
|
||||
|
Loading…
x
Reference in New Issue
Block a user