<< Back
Message for this thread
Posted by Messages text
W&dy

Noavatar
Total post : 4
> Profile
Written on : 23/04/2009 16:34 ( more than one month )
Object : Final score not visible on report card
Hi,

When I look at my report card I can see al the scores of my tests. But the final score is saying 'no score'.

report card
On the certificate is no final score visible either. Show to user is set to YES.
In the datadase ( table learning_coursereport_score ) the score is 0. It seems like the score is not saved in the database.

Any help please,

W&dy
 
W&dy

Noavatar
Total post : 4
> Profile
Written on : 04/05/2009 15:02 ( more than one month )
Object : Re: Final score not visible on report card
You can see the final score by pressing re-calculate under final score in teacher area --> gradebook
 
W&dy

Noavatar
Total post : 4
> Profile
Written on : 13/05/2009 12:21 ( more than one month )
Object : Re: Final score not visible on report card
You can see the total final score on the certificate by changing lines 144, 145

$subs['[course_score_final]'] = ( isset($score_course[$this->id_course][$this->id_user]) ? $score_course[$this->id_course][$this->id_user]['score'] :' ' );
$subs['[course_score_final_max]'] = ( isset($score_course[$this->id_course][$this->id_user]) ? $score_course[$this->id_course][$this->id_user]['max_score'] :' ' );

into
$subs['[course_score_final]'] = ( isset($score_course[$this->id_user][$this->id_course]) ? $score_course[$this->id_user][$this->id_course]['score'] : ' ' );
$subs['[course_score_final_max]'] = ( isset($score_course[$this->id_user][$this->id_course]) ? $score_course[$this->id_user][$this->id_course]['max_score'] :' ' );

doceboLms/lib/certificate/certificate.userstat.php
           
 
<< Back