?
Current Path : /home1/savoy/public_html/savoyglobal.net/oscardraft/application/views/report/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/savoyglobal.net/oscardraft/application/views/report/xls_royalty_report.php |
<?php $html = '<html><head><body>'; $html.='<table width="100%" > <tr><td colspan="2"></td><td align="right"><img src="' . base_url() . 'assets/images/logo.gif" style="float:right"/></td> <tr><td colspan="3" style="font-size:16px;" align="center"><b><u>' . $postdata['report_name'] . '</u></b></td></tr> <tr><td colspan="3">Printout Date : ' . date('d-m-Y') . ', ' . date('h:i:s a') . '</td></tr> </table><br><br>'; $html.='<hr>'; $html.='<table cellspacing="-1" style="width:100%;text-align:left" > <thead> <tr><th style="text-align:left" bgcolor="#7FCEFF">Sl No</th>'; $i = 1; $column=array(); while ($i <= $postdata['field_count']) { if (isset($postdata['field_name_' . $i])) { $column_name = explode('~', $postdata['field_name_' . $i]); $html .= '<th style="text-align:left" bgcolor="#7FCEFF">' . str_replace('_', ' ', $column_name[1]) . '</th>'; $column[]=$column_name[1]; } $i++; } $html.='</tr> </thead> <tbody>'; $sl = 1; $i = 1; $j = 1; $rowspan = ""; $total_couse_paid_fee=0; $total_royalty_fee=0; $total_reg_paid_fee=0; foreach ($report as $student => $course) { foreach ($course as $cs => $feeinfo) { $i = 1; $rowspan1 = ""; $rowspan1 = "rowspan='" . count($course[$cs]) . "'"; $colspan=1; $colspan1=0; foreach ($feeinfo as $cs_key => $fee_info) { $rowspan = ""; if ($fee_info['fee_id'] != 0 && $row_span[$fee_info['fee_id']] > 1) $rowspan = "rowspan='" . $row_span[$fee_info['fee_id']] . "'"; $reg_fee = ($fee_info['registration_fee'] > 0) ? $fee_info['registration_fee'] : 0; $reg_fee_paid = $this->studentmodel->get_student_reg_fee_pending($fee_info['student_id'], $fee_info['course_id']); $course_fee = ($fee_info['student_course_fee'] > 0) ? $fee_info['student_course_fee'] : 0; $course_fee_paid = $this->studentmodel->get_student_fee_pending($fee_info['student_id'], $fee_info['course_id']); $html.='<tr>'; if ($i == 1) { $html.='<td ' . $rowspan1 . '>' . $sl++ . '</td>'; if (array_key_exists('field_name_1', $postdata)) { $html.='<td ' . $rowspan1 . '>' . $fee_info['reg_no'] . '</td>'; $colspan++; } if (array_key_exists('field_name_2', $postdata)) { $html.='<td ' . $rowspan1 . '>' . $fee_info['first_name'] . '</td>'; $colspan++; } if (array_key_exists('field_name_3', $postdata)) { $html.='<td ' . $rowspan1 . '>' . $fee_info['last_name'] . '</td>'; $colspan++; } if (array_key_exists('field_name_4', $postdata)) { $html.='<td ' . $rowspan1 . '>' . $fee_info['gender'] . '</td> '; $colspan++; } if (array_key_exists('field_name_5', $postdata)) { $html.='<td ' . $rowspan1 . '>' . $fee_info['nationality'] . '</td> '; $colspan++; } if (array_key_exists('field_name_6', $postdata)) { $html.='<td ' . $rowspan1 . '>' . $fee_info['batch_no'] . '</td> '; $colspan++; } if (array_key_exists('field_name_7', $postdata)) { $html.='<td ' . $rowspan1 . '>' . $this->mastermodel->convertdatenormalformat($fee_info['batch_allocation_date']) . '</td> '; $colspan++; } if (array_key_exists('field_name_8', $postdata)) { $html.='<td ' . $rowspan1 . '>' . ($reg_fee_paid->reg_paid_amount) . '</td>'; $total_reg_paid_fee+=$reg_fee_paid->reg_paid_amount; } if (array_key_exists('field_name_9', $postdata)) { $html.='<td ' . $rowspan1 . '>' . ($reg_fee - $reg_fee_paid->reg_paid_amount) . '</td>'; $colspan2++; } if (array_key_exists('field_name_10', $postdata)) { $html.='<td ' . $rowspan1 . '>' . ($course_fee_paid->paid_amount) . '</td>'; $total_couse_paid_fee+=$course_fee_paid->paid_amount; } if (array_key_exists('field_name_11', $postdata)) { $html.='<td ' . $rowspan1 . '>' . ($course_fee - $course_fee_paid->paid_amount) . '</td>'; } if (array_key_exists('field_name_12', $postdata)) { $royalty=($course_fee_paid->paid_amount)*.25; $html.='<td ' . $rowspan1 . '>' . $royalty . '</td>'; $total_royalty_fee+=$royalty; } if (array_key_exists('field_name_13', $postdata)) { $html.='<td ' . $rowspan1 . '>' . ($fee_info['fee_remarks']) . '</td>'; } } $i++; $html.='</tr>'; } } } $html.='<tr> <td colspan='.$colspan.' style="text-align:right" >Total Amount</td>'; if (array_key_exists('field_name_8', $postdata)) { $html.='<td>' . $total_reg_paid_fee . '</td>'; } if (array_key_exists('field_name_9', $postdata)) { $html.='<td></td>'; } if (array_key_exists('field_name_10', $postdata)) { $html.='<td >' . $total_couse_paid_fee . '</td>'; } if (array_key_exists('field_name_11', $postdata)) { $html.='<td></td>'; } if (array_key_exists('field_name_12', $postdata)) { $html.='<td >' . $total_royalty_fee . '</td>'; } $html.='</tr>'; $html.='</tbody></table>'; $html.='<hr>'; $html.='</body></html>'; $filename = $postdata['report_name']; header("Content-type: application/octet-stream"); header("Content-Disposition: attachment; filename=" . $filename . ".xls"); header("Pragma: no-cache"); header("Expires: 0"); print $html; exit; ?>