Viewing file: reportDataRQTeach_excel2.php (6.75 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?
header('Content-type: application/xls');
header('Content-Disposition: attachment; filename="testing.xls"');
//include_once "template.php";
//showHeader();
include_once "../../class/clsDB.php";
include_once "../../class/clsConnection.php";
include_once "../global.php";
include_once "../link/function.php";
include_once "../class/clsReg_SysSemesterDes.php";
include_once "../class/clsOfficerAssess.php";
include_once "../class/clsDefineAssessment.php";
include_once "../class/clsAssessForm.php";
include_once "../class/clsDoAssessmentTeach.php";
include_once "../class/clsResultRQTeach.php";
include_once "../class/clsSectionAll.php";
include_once "../class/clsSectionRQ.php";
include_once "../class/clsHeaderQuestion.php";
include_once "../class/clsHeaderScore.php";
include_once "../class/clsDetailScore.php";
include_once "../class/clsRadioQuestion.php";
include_once "../class/clsSectionAll.php";
tabChoose();
confirmSubmit();
openWindow();
$oCR = new clsConnection($GLOBALS['HOST'], $GLOBALS['DB_REG'], $GLOBALS['USER_REG'], $GLOBALS['PASSWORD_REG']);
$oCA = new clsConnection($GLOBALS['HOST'], $GLOBALS['DB_EASS'], $GLOBALS['USER_EASS'], $GLOBALS['PASSWORD_EASS']);
$oSse = new SysSemesterDes($oCR);
$oSse->SearchByKey($semester);
$oSse->GetRecord();
$oDA = new DefineAssessment($oCA);
$oDA->SearchByDefineid($defineid);
$oDA->GetRecord();
$numTeachDoAss = 0;
$oDoTe = new DoAssessmentTeach($oCA);
$oDoTe->SearchByDefineid($defineid);
while($oDoTe->GetRecord()){
$numTeachDoAss++;
}
$oAF = new AssessForm($oCA);
$oAF->RSAssessFormByAssid($assid);
$oAF->GetRecord();
$oOFA = new OfficerAssess($oCA);
$numTeachAll = $oOFA->CountTeacherAll();
//ค้นหาคำถามปลายเปิดในแบบประเมินนี้ sectionTQid = 1
$oSA = new SectionAll($oCA);
$CntSRQid = $oSA->RSCountSectionRQid($assid);
$oRRQ = new ResultRQTeach($oCA);
?>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<br>
<table width="83%" align="center" border="0" cellpadding="0" cellspacing="1">
<tr>
<td>
<?
if($CntSRQid > 0){
/*------------------------หาจำนวนของส่วนว่ามีกี่ส่วน และจำนวนของข้อคำถามที่มีตัวเลือก----------------------------*/
$numSection = 0;
$ocSA = new SectionAll($oCA);
//$numSection = $oSA->RSCountSectionRQid($assid);
$ocSA->RSByKeyAss($assid);
while($ocSA->GetRecord()){
if($ocSA->sectionRQid != '0'){
$ocRQ = new RadioQuestion($oCA);
$ocRQ->RSRadioQByKey($assid,$ocSA->sectionRQid,1);
while($ocRQ->GetRecord()){
$ocCntRQ = new RadioQuestion($oCA);
$cCntSubQ = $ocCntRQ->RSCountSubRQid($assid,$ocRQ->RQid,'2');
if($cCntSubQ == 0){
$mergeRQ[$numSection]++;
} //end if CntSubQ
$oscRQ = new RadioQuestion($oCA);
$oscRQ->RSCheckLevel($assid,$ocRQ->RQid);
while($oscRQ->GetRecord()){
$mergeRQ[$numSection]++;
} //end while oscRQ
} // end while ocRQ
$numSection++;
} // end if ocSA
} // end while ocSA
?>
<table width="100%" border="1" align="center">
<tr bgcolor="#CFCFCF">
<td width="13%" rowspan="2" align="center"><font size="2"><b>ลำดับที่ประเมิน</b></font></td>
<?
$oSA1= new SectionAll($oCA);
$i = 0;
$indexSection_head = 1;
$oSA1->RSByKeyAss($assid);
while ($oSA1->GetRecord()){
/*---------------- กรณีที่เลือกเป็นคำถามชนิดปลายปิด------------------*/
if($oSA1->sectionRQid != '0'){
?>
<td width="87%" height="25%" colspan="<? echo $mergeRQ[$i] ?>" align="center"><font size="2"><b>คะแนนรายข้อคำถาม ส่วนที่ <? echo $indexSection_head; ?> </b></font></td>
<?
$mergeAll += $mergeRQ[$i];
$i++;
} // end if oSA
$indexSection_head++;
} //end while oSA
?>
</tr>
<tr bgcolor="<?php echo $GLOBALS["COLOR_BG_TD_7"];?>">
<? /*--------------------------------------- สร้างส่วนหัวของตาราง ข้อคำถามของแบบประเมินที่มีตัวเลือก-------------------------------*/
$oSA = new SectionAll($oCA);
$oSA->RSByKeyAss($assid);
while($oSA->GetRecord()){
if($oSA->sectionRQid != '0'){
$index1=1;
$oRQ = new RadioQuestion($oCA);
$oRQ->RSRadioQByKey($assid,$oSA->sectionRQid,1);
while($oRQ->GetRecord()){
$oCntRQ = new RadioQuestion($oCA);
$CntSubQ = $oCntRQ->RSCountSubRQid($assid,$oRQ->RQid,'2');
if($CntSubQ == 0){
?>
<td width="3%" height="22" align="center" bgcolor="#CFCFCF"><font size="2"><? echo $index1; ?></font></td>
<?
} //end if CntSubQ
$index2=1;
$osRQ = new RadioQuestion($oCA);
$osRQ->RSCheckLevel($assid,$oRQ->RQid);
while($osRQ->GetRecord()){
?>
<td width="3%" height="22" align="center" bgcolor="#CFCFCF"><font size="2"><? echo $index1.".".$index2; ?></font></td>
<?
$index2++;
} //end while osRQ
$index1++;
} // end while oRQ
} //end while oSA
} //end if sectionRQ
?>
</tr>
<?
$indexDoAss = 1;
$oDoTe = new DoAssessmentTeach($oCA);
$oDoTe->SearchByDefineid($defineid);
while($oDoTe->GetRecord()){
?>
<tr bgcolor="<?php echo $GLOBALS['COLOR_BG_TD_5'];?>">
<td align="center"><font size="2"><? echo $indexDoAss; ?></font></td>
<?
$orSA = new SectionAll($oCA);
$orSA->RSByKeyAss($assid);
while($orSA->GetRecord()){
if($orSA->sectionRQid != '0'){
$oRRQ->SearchPointByDoTeachidSectionRQid($oDoTe->doTeachid,$orSA->sectionRQid);
while($oRRQ->GetRecord()){
?>
<td align="center"><font size="2"><? echo $oRRQ->point; ?></font></td>
<?
} // end while oRRQ
} // end if orSA
} // end while orSA
?> </tr>
<? $indexDoAss++;
} // end while oDoTe
if(($indexDoAss-1) == 0){ ?>
<tr bgcolor="<?php echo $GLOBALS['COLOR_BG_TD_5'];?>">
<td colspan="<? echo $mergeAll+1?>" align="center">
<font size="2" color="<?php echo $GLOBALS["COLOR_FONT_3"];?>">** ไม่พบข้อมูล **</font>
</td>
</tr>
<? } ?>
</table>
<? } else { ?>
<table width="100%">
<tr bgcolor="<?php echo $GLOBALS['COLOR_BG_TD_5'];?>">
<td align="center"> <font size="2" color="<?php echo $GLOBALS["COLOR_FONT_3"];?>">** ไม่พบข้อมูลเนื่องจากแบบประเมินที่สร้างไม่มีส่วนของคำถามปลายปิด **</font>
</td>
</tr>
</table>
<? } ?>
</td>
</tr>
</table>
</div>
</body>
|