Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.145.166.223
<?php
$main_src=substr($_SERVER['SCRIPT_FILENAME'],0,strlen($_SERVER['SCRIPT_FILENAME'])-7);
$pdf_writer_class =$main_src."/tarka_pdf_latest/fpdf.php";
require_once($pdf_writer_class);
ini_set('max_execution_time', 0);
class GenerateFeeSummaryReport extends FPDF
{
function DefaultConstructor($aobj_context)
{
include_once($aobj_context->main_src."/src/format.php");
$this->aobj_context=$aobj_context;
$this->pdf= new FPDF();
$this->pdf=$this;
session_start();
$this->ip=$_SERVER["REMOTE_ADDR"];
$get_date="select date_add(date_add(now(),INTERVAL 13 hour),interval 30 minute) as now_date";
$obj=$this->aobj_context->mobj_db->GetRow($get_date);
$this->current_date=$obj['now_date'];
$this->cntr_from = substr("0000000000".$aobj_context->mobj_data["cntr_from"],-4);
$this->cntr_to =substr("ZZZZZZZZZZ".$aobj_context->mobj_data["cntr_end"],-4);
$this->degree_from = substr("0000000000".$aobj_context->mobj_data["degree_from"],-5);
$this->degree_to = substr("ZZZZZZZZZZ".$aobj_context->mobj_data["degree_to"],-5);
$this->examno_from = $aobj_context->mobj_data["examno_from"];
$this->exam_type = $aobj_context->mobj_data["exam_type"];
$this->exam_year = $aobj_context->mobj_data["exam_year"];
// var_dump($this->exam_type, $this->exam_year);
//var_dump($this->degree_to);
$this->Degree = $aobj_context->mobj_data["Degree"];
$this->Screentype = $aobj_context->mobj_data["Screentype"];
// var_dump($this->Screentype);
$this->ReportType = $aobj_context->mobj_data["ReportType"];
//var_dump($this->ReportType);
if($this->Screentype=="Exam Application Fee Summary")
$this->Screentype="Exam Application Fee Summary";
if($this->Screentype=="Admission Apllication Fee Summary")
$this->Screentype="Admission Apllication Fee Summary";
/*
if($this->ReportType=="Summary")
$this->ReportType="Summary";
if($this->ReportType=="Detail")
$this->ReportType="Detail";*/
}
function Header()
{
if($this->Screentype=='Exam Application Fee Summary')
{
$img_path=$this->aobj_context->main_src."/".$this->aobj_context->mobj_data["db"]."/".$this->pdf_logo_path;
if(!empty($this->pdf_logo_path) && file_exists($img_path))
{
$this->pdf->Image($img_path,70,20,20);
}
}
else if($this->Screentype=="Admission Apllication Fee Summary"){
$img_path=$this->aobj_context->main_src."/".$this->aobj_context->mobj_data["db"]."/".$this->pdf_logo_path;
if(!empty($this->pdf_logo_path) && file_exists($img_path))
{
$this->pdf->Image($img_path,10,10,20);
}
}else if($this->Screentype=="EFCW"){
$img_path=$this->aobj_context->main_src."/".$this->aobj_context->mobj_data["db"]."/".$this->pdf_logo_path;
if(!empty($this->pdf_logo_path) && file_exists($img_path))
{
$this->pdf->Image($img_path,10,10,20);
}
}
else if($this->Screentype=="Duplicate Payment Report"){
if(!empty($this->pdf_logo_path) && file_exists($img_path))
{
$this->pdf->Image($img_path,10,10,20);
}// $this->pdf->Image($img_path,10,10,20);
}
$this->pdf->SetFont('Times','B',15);
$this->pdf->cell(0,7,"".$this->FUNIVNAME,"0",1,"C");
$this->pdf->SetFont('Times','',8);
$this->pdf->cell(0,4, $this->s_state,"0",0,"C");
$this->pdf->SetFont('Times','',10);
$this->pdf->Cell(-20,4,"Page {$this->pdf->PageNo()}/{nb}",0,1,'C');
$this->pdf->SetFont('Times','B',10);
if($this->Screentype=='Duplicate Payment Report')
$this->pdf->cell(0,5,"Multiple Payment Report","0",1,"C");
else
$this->pdf->cell(0,5,$this->Screentype,"0",1,"C");
//$this->pdf->cell(0,5,$this->ReportType,"0",1,"C");
$this->pdf->cell(0,5,"Degree Group:" ." ".$this->Degree,"0",1,"C");
$this->pdf->cell(0,5,"College Code Range :" ." ".$this->cntr_from." "."to"." ".$this->cntr_to,"0",1,"C");
$this->pdf->cell(0,5,"Degree Range :" ." ".$this->degree_from." "."to"." ".$this->degree_to,"0",1,"C");
if($this->Screentype=='Duplicate Payment Report'){
$this->pdf->cell(0,5,"Exam Year/ Type:" ." ".$this->exam_year.'/'.$this->exam_type,"0",1,"C");
if($this->exam_year == '2018' && $this->exam_type == '2')
$this->pdf->cell(0,5,"Exam : I Semester","0",1,"C");
}else{
$this->pdf->cell(0,5,"Exam No. :" ." ".$this->examno_from,"0",1,"C");
}
}
function Footer()
{
if($this->Screentype=="Exam Application Fee Summary"){
$this->SetY(-15);
$this->pdf->SetFont('Times','B',8);
$new_y=$this->pdf->GetY();
$this->pdf->Line(8,$new_y, 290,$new_y);
$this->pdf->Ln(2);
$this->Cell(180,6,'Printed : IP Address : '.$this->ip." Date ".$this->current_date,'0',0,'L');
}
else if($this->Screentype=="Admission Apllication Fee Summary")
{
$this->SetY(-15);
$this->pdf->SetFont('Times','B',8);
$new_y=$this->pdf->GetY();
$this->pdf->Line(5,$new_y, 203,$new_y);
$this->pdf->Ln(2);
$this->Cell(140,6,'Printed : IP Address : '.$this->ip." Date ".$this->current_date,'0',0,'L');
}
}
function formcolldata()
{
$get_coll_name="select FUNIVNAME as 'FUNIVNAME',
FUNIVADD1 as 'state', pdf_logo_path From control";
$lobj_get_coll_name=$this->aobj_context->mobj_db->GetRow($get_coll_name);
$this->FUNIVNAME=$lobj_get_coll_name['FUNIVNAME'];
$this->s_state=$lobj_get_coll_name['state'];
$this->f_year=$lobj_get_coll_name['f_year'];
$this->pdf_logo_path=$lobj_get_coll_name['pdf_logo_path'];
}
function tableHeader(){
$this->pdf->SetFont('Times','B',8);
$this->pdf->Cell(5,6,"Sl.","LRT",0);
$this->pdf->Cell(10,6,"Deg","LRT",0,"C");
$this->pdf->Cell(10,6,"Exam","LRT",0,"C");
$this->pdf->Cell(28,6,"GM","LRT",0,"C");
$this->pdf->Cell(28,6,"CAT-I","LRT",0,"C");
$this->pdf->Cell(28,6,"ST","LRT",0,"C");
$this->pdf->Cell(28,6,"SC","LRT",0,"C");
$this->pdf->Cell(28,6,"IIA","LRT",0,"C");
$this->pdf->Cell(28,6,"IIIA","LRT",0,"C");
$this->pdf->Cell(28,6,"IIB","LRT",0,"C");
$this->pdf->Cell(28,6,"IIIB","LRT",0,"C");
$this->pdf->Cell(28,6,"App no.","LRT",1,"C");
$this->pdf->Cell(5,6,"No","LRB",0,"C");
$this->pdf->Cell(10,6,"Code","LRB",0,"C"); //w h txt brd pos align
$this->pdf->Cell(10,6,"no.","LBR",0,"C");
$this->pdf->Cell(10,6,"Count","1",0,"C");
$this->pdf->Cell(18,6,"Amount","1",0,"C");
$this->pdf->Cell(10,6,"Count","1",0,"C");
$this->pdf->Cell(18,6,"Amount","1",0,"C");
$this->pdf->Cell(10,6,"Count","1",0,"C");
$this->pdf->Cell(18,6,"Amount","1",0,"C");
$this->pdf->Cell(10,6,"Count","1",0,"C");
$this->pdf->Cell(18,6,"Amount","1",0,"C");
$this->pdf->Cell(10,6,"Count","1",0,"C");
$this->pdf->Cell(18,6,"Amount","1",0,"C");
$this->pdf->Cell(10,6,"Count","1",0,"C");
$this->pdf->Cell(18,6,"Amount","1",0,"C");
$this->pdf->Cell(10,6,"Count","1",0,"C");
$this->pdf->Cell(18,6,"Amount","1",0,"C");
$this->pdf->Cell(10,6,"Count","1",0,"C");
$this->pdf->Cell(18,6,"Amount","1",0,"C");
$this->pdf->Cell(10,6,"Count","1",0,"C");
$this->pdf->Cell(18,6,"Total Fee","1",1,"C");
}
function dupTblHeader(){
$this->pdf->SetFont('Times','B',10);
$this->pdf->Cell(8,5,"Sl.","LRT",0,"C");
$this->pdf->Cell(15,5,"College","LRT",0,"C");
$this->pdf->Cell(15,5,"Degree","LRT",0,"C");
$this->pdf->Cell(20,5,"Reg No.","LRT",0,"C");
$this->pdf->Cell(60,5,"Student","LRT",0,"C");
$this->pdf->Cell(25,5,"Application","LRT",0,"C");
$this->pdf->Cell(15,5,"Amount","LRT",0,"C");
$this->pdf->Cell(25,5,"Payment","LRT",0,"C");
$this->pdf->Cell(20,5,'Ack',"LRT",0,"L");
$this->pdf->Cell(80,5,"Payment","LRT",1,"C");
// $this->pdf->SetFont('Times','B',10);
$this->pdf->Cell(8,5,"No.","LRB",0,"C");
$this->pdf->Cell(15,5,"Code","LRB",0,"C");
$this->pdf->Cell(15,5,"","LRB",0,"C");
$this->pdf->Cell(20,5,"","LRB",0,"R");
$this->pdf->Cell(60,5,"Name","LRB",0,"C");
$this->pdf->Cell(25,5,"No.","LRB",0,"C");
$this->pdf->Cell(15,5,"Paid","LRB",0,"C");
$this->pdf->Cell(25,5,"Type","LRB",0,"C");
$this->pdf->Cell(20,5,'Date',"LBR",0,"L");
$this->pdf->Cell(80,5,"Remarks","LRB",1,"C");
}
function formdata(){
//==queries for particular screen type==//
if($this->Screentype=='Exam Application Fee Summary' && $this->ReportType=='Summary')
{
$lobj_fee_data="SELECT cs.fcollcode,d.fdegree,CONCAT(cs.fcollcode,'-',fcollname,', ',ftown)
AS college_name,d.fdeggrp,SUM( cs.ftotalfee ) AS amount,
SUM(CASE WHEN ca.fconstype='0123456789' THEN ca.ftotalfee ELSE 0 END) AS normal_income,
SUM(CASE WHEN ca.fconstype!='0123456789' THEN ca.ftotalfee ELSE 0 END) AS low_income,
SUM(CASE WHEN ca.fconstype='0123456789' THEN 1 ELSE 0 END) AS normal_app ,
SUM(CASE WHEN ca.fconstype !='0123456789' THEN 1 ELSE 0 END) AS low_app
FROM appcandsum cs INNER JOIN college c ON cs.fcollcode = c.fcollcode
INNER JOIN degree d ON d.fdegree=cs.fdegree AND d.fexamno=cs.fexamno
INNER JOIN candsum ca ON cs.fcollcode = ca.fcollcode AND cs.fdegree=ca.fdegree AND cs.fregno=ca.fregno
AND cs.fexamno=ca.fexamno
WHERE IFNULL(fackdate,'') <> '' and cs.fcollcode>='{$this->cntr_from}' and
cs.fcollcode<='{$this->cntr_to}' and d.fdegree>='{$this->degree_from}' and
d.fdegree<='{$this->degree_to}' and d.fdeggrp='{$this->Degree}'
GROUP BY fcollcode order by fcollcode";
//var_dump($lobj_fee_data);
}else if($this->Screentype=='Exam Application Fee Summary' && $this->ReportType=='Detail')
{
$lobj_fee_data="SELECT cs.fcollcode,IF(cs.fpaymentype = 'Other Banks', ucase(cs.fpaygateway), ucase(cs.fpaymentype)) AS fpaymentype ,d.fdegree,
CONCAT(cs.fcollcode,'-',fcollname,', ',ftown) AS college_name,d.fdeggrp,
SUM( cs.ftotalfee ) AS amount,
SUM(CASE WHEN fconstype='0123456789' THEN ca.ftotalfee ELSE 0 END) AS normal_income,
SUM(CASE WHEN ca.fconstype!='0123456789' THEN ca.ftotalfee ELSE 0 END) AS low_income,
COUNT(CASE WHEN ca.fconstype='0123456789' THEN ca.fregno ELSE NULL END) AS normal_app ,
COUNT(CASE WHEN ca.fconstype !='0123456789' THEN ca.fregno ELSE NULL END) AS low_app FROM appcandsum cs
INNER JOIN college c ON cs.fcollcode = c.fcollcode
INNER JOIN degree d ON d.fdegree=cs.fdegree AND d.fexamno=cs.fexamno
INNER JOIN candsum ca ON ca.fcollcode = cs.fcollcode AND ca.fdegree=cs.fdegree AND ca.fregno=cs.fregno AND cs.fexamno=ca.fexamno WHERE IFNULL(fackdate,'') <> '' and cs.fcollcode>='{$this->cntr_from}' and
cs.fcollcode<='{$this->cntr_to}' and d.fdegree>='{$this->degree_from}' and
d.fdegree<='{$this->degree_to}' and d.fdeggrp='{$this->Degree}'
GROUP BY fcollcode,fpaymentype order by fcollcode";
}
else if($this->Screentype=='Admission Apllication Fee Summary')
{
$lobj_fee_data="select s.fcollcode, CONCAT(s.fcollcode,'-',fcollname,', ',ftown) as college_name ,
SUM(ftotfee) as amount,d.fdeggrp,d.fdegree from studadm s
inner join college c on s.fcollcode = c.fcollcode INNER JOIN degree d
ON d.fexamno=s.fexamno AND d.fdegree=s.fdegree
where IFNULL(fapprstatus,'') = 'APPROVED' and d.fdegree like 'b%'
and s.fcollcode>='{$this->cntr_from}' and
s.fcollcode<='{$this->cntr_to}' and d.fdegree>='{$this->degree_from}' and
d.fdegree<='{$this->degree_to}' and d.fdeggrp='{$this->Degree}'
group by s.fcollcode order by fcollcode";
//var_dump($lobj_get_fee_data);
}
else if($this->Screentype=='EFCW')
{
//arr of ffreshexam A to H
$examnoarr = "ABCDEFGH";
$examnoStr = strtoupper($this->examno_from);
$splitexamno = str_split($examnoStr);
// var_dump($splitexamno);
$examno = implode("','",$splitexamno);
//var_dump($examno);
$lobj_fee_data = "SELECT a.fdegree, ffreshexam, SUM(IF(fcategory = 'GM',1,0)) AS `GM APP Count`,
SUM(IF(fcategory = 'GM',ftotalfee,0)) AS `GM Amount`, SUM(IF(fcategory = 'CAT-I',1,0)) AS `CAT-I APP Count`,
SUM(IF(fcategory = 'CAT-I',ftotalfee,0)) AS `CAT-I Amount`, SUM(IF(fcategory = 'ST',1,0)) AS `ST APP Count`,
SUM(IF(fcategory = 'ST',ftotalfee,0)) AS `ST Amount`, SUM(IF(fcategory = 'SC',1,0)) AS `SC APP Count`,
SUM(IF(fcategory = 'SC',ftotalfee,0)) AS `SC Amount`, SUM(IF(fcategory = 'IIA',1,0)) AS `IIA APP Count`,
SUM(IF(fcategory = 'IIA',ftotalfee,0)) AS `IIA Amount`, SUM(IF(fcategory = 'IIIA',1,0)) AS `IIIA APP Count`,
SUM(IF(fcategory = 'IIIA',ftotalfee,0)) AS `IIIA Amount`, SUM(IF(fcategory = 'IIB',1,0)) AS `IIB APP Count`,
SUM(IF(fcategory = 'IIB',ftotalfee,0)) AS `IIB Amount`, SUM(IF(fcategory = 'IIIB',1,0)) AS `IIIB APP Count`,
SUM(IF(fcategory = 'IIIB',ftotalfee,0)) AS `IIIB Amount`, COUNT(appno) AS appno, SUM(ftotalfee) AS ftotalfee
FROM `appcandsum` a INNER JOIN `degree` d
ON a.fdegree = d.fdegree AND a.fexamno = d.fexamno
AND IFNULL(fackdate,'') <> '' AND ffreshexam <> '' AND ffreshexam IN ('{$examno}') AND fdeggrp = '{$this->Degree}'
AND d.fdegree BETWEEN '{$this->degree_from}' AND '{$this->degree_to}'
GROUP BY a.fdegree, ffreshexam
ORDER BY a.fdegree, ffreshexam";
//var_dump($lobj_fee_data);
// $lobj_get_fee_data = $this->aobj_context->mobj_db->GetAll($lobj_fee_data);
}else if($this->Screentype=='Duplicate Payment Report')
{
if($this->exam_type=='2' && $this->exam_year == '2018')
{
$tbl = 'appcandsum_'.$this->exam_year.$this->exam_type;
// var_dump($tbl);
$lobj_fee_data = "select a.fcollcode, a.fdegree, a.fregno, s.fname, a.appno,date_format(a.fackdate, '%d/%m/%Y') as fackdate,
if(a.fpaymentype= 'Other Banks',a.fpaygateway,a.fpaymentype) as paymentType, a.fpaymentremarks, a.ftotalfee from $tbl a
inner join degree d on a.fdegree=d.fdegree and a.fexamno=d.fexamno inner join student s on a.fregno = s.fregno and a.fdegree = s.fdegree
where a.fpaymentstatus='success' and
a.fregno in (select fregno from $tbl where fpaymentstatus='success' and fpaymentype != 'college bank' group by fregno having count(fregno) > 1)
and a.fpaymentype != 'college bank'
and a.fdegree between '{$this->degree_from}' and '{$this->degree_to}' and a.fdegree in (select distinct fdegree from degree where
fdeggrp = '{$this->Degree}')
and a.fcollcode between '{$this->cntr_from}' and '{$this->cntr_to}' order by a.fcollcode, a.fdegree, a.fregno";
}else
{
$lobj_fee_data = "select a.fcollcode, a.fdegree, a.fregno, s.fname, a.appno,date_format(a.fackdate, '%d/%m/%Y') as fackdate,
if(a.fpaymentype= 'Other Banks',a.fpaygateway,a.fpaymentype) as paymentType, a.fpaymentremarks,a.ftotalfee from appcandsum a
inner join degree d on a.fdegree=d.fdegree and a.fexamno=d.fexamno inner join student s on a.fregno = s.fregno and a.fdegree = s.fdegree
where a.fpaymentstatus='success' and
a.fregno in (select fregno from appcandsum where fpaymentstatus='success' group by fregno having count(fregno) > 1)
and a.fpaymentype != 'college bank'
and a.fdegree between '{$this->degree_from}' and '{$this->degree_to}' and a.fdegree in (select distinct fdegree from degree where
fdeggrp = '{$this->Degree}')
and a.fcollcode between '{$this->cntr_from}' and '{$this->cntr_to}' order by a.fcollcode, a.fdegree, a.fregno";
}
}
// var_dump($lobj_fee_data);
//==build report==//
$lobj_get_fee_data = $this->aobj_context->mobj_db->GetAll($lobj_fee_data);
if($this->Screentype=='Exam Application Fee Summary' && $this->ReportType=='Summary')
{
//$this->pdf->SetMargins(6,13);
$this->pdf->AddPage('L');
//$this->pdf->SetFillColor(248, 248 ,255);
$this->pdf->SetFont('Times','B',10);
$this->pdf->Cell(10,6,"Sl.","LRT",0,"C");
$this->pdf->Cell(160,6,"College Name","LRT",0,"C");
$this->pdf->Cell(20,6,"Total App.","LRT",0,"C");
$this->pdf->Cell(20,6,"Normal Fee","LRT",0,"R");
$this->pdf->Cell(20,6,"Total App.","LRT",0,"C");
$this->pdf->Cell(20,6,"Low Fee","LRT",0,"R");
$this->pdf->Cell(20,6,"Total","LRT",1,"R");
$this->pdf->SetFont('Times','B',10);
$this->pdf->Cell(10,6,"No.","LRB",0,"C");
$this->pdf->Cell(160,6,"College Name","LRB",0,"C");
$this->pdf->Cell(20,6,"Normal Fee","LRB",0,"C");
$this->pdf->Cell(20,6,"Amount","LRB",0,"R");
$this->pdf->Cell(20,6,"Low Fee","LRB",0,"C");
$this->pdf->Cell(20,6,"Amount","LRB",0,"R");
$this->pdf->Cell(20,6,"Amount","LRB",1,"R");
$sl_no=0;
$total=0;
$normal_income_total=0;
$low_income_total=0;
$normal_app=0;
$low_app=0;
foreach ($lobj_get_fee_data as $key => $value)
{
$sl_no++;
$name1=substr($value['college_name'],0,100);
//var_dump($name1);
$name2=substr($value['college_name'],100);
//var_dump($name2);
$amount=moneyFormatIndia((int)$value['amount']);
$normal_income=moneyFormatIndia((int)$value['normal_income']);
$low_income=moneyFormatIndia((int)$value['low_income']);
$this->pdf->SetFont('Times','',10);
if(empty($name2))
{
$this->pdf->Cell(10,6,$sl_no,"1",0,"C");
$this->pdf->Cell(160,6,$name1,"1",0,"L");
$this->pdf->Cell(20,6,$value['normal_app'],"1",0,"R");
$this->pdf->Cell(20,6,$normal_income,"1",0,"R");
$this->pdf->Cell(20,6,$value['low_app'],"1",0,"R");
$this->pdf->Cell(20,6,$low_income,"1",0,"R");
$this->pdf->Cell(20,6,$amount,"1",1,"R");
}else
{
$this->pdf->Cell(10,6,$sl_no,"LRT",0,"C");
$this->pdf->Cell(160,6,$name1,"LRT",0,"L");
$this->pdf->Cell(20,6,$value['normal_app'],"LRT",0,"R");
$this->pdf->Cell(20,6,$normal_income,"LRT",0,"R");
$this->pdf->Cell(20,6,$value['low_app'],"LRT",0,"R");
$this->pdf->Cell(20,6,$low_income,"LRT",0,"R");
$this->pdf->Cell(20,6,$amount,"LRT",1,"R");
$this->pdf->Cell(10,6,"","LRB",0,"C");
$this->pdf->Cell(160,6,$name2,"LRB",0,"L");
$this->pdf->Cell(20,6,"","LRB",0,"L");
$this->pdf->Cell(20,6,"","LRB",0,"L");
$this->pdf->Cell(20,6,"","LRB",0,"L");
$this->pdf->Cell(20,6,"","LRB",0,"L");
$this->pdf->Cell(20,6,"","LRB",1,"L");
}
$total =$total+$value['amount'];
$total1=moneyFormatIndia((int)$total);
$normal_income_total =$normal_income_total+$value['normal_income'];
$normal_income_total1=moneyFormatIndia((int)$normal_income_total);
$normal_app=$normal_app+$value['normal_app'];
$low_income_total =$low_income_total+$value['low_income'];
$low_income_total1 =moneyFormatIndia((int)$low_income_total);
$low_app=$low_app+$value['low_app'];
if($this->pdf->getY() > 180)
{
$this->pdf->AddPage('L');
$this->pdf->SetFont('Times','B',10);
/*$this->pdf->Cell(10,6,"Sl. No","1",0,"C");
$this->pdf->Cell(160,6,"College Name","1",0,"C");
$this->pdf->Cell(20,6,"N.F.Tot.App","1",0,"C");
$this->pdf->Cell(20,6,"Normal Fee","1",0,"R");
$this->pdf->Cell(20,6,"L.F.Tot.App","1",0,"R");
$this->pdf->Cell(20,6,"Low Fee","1",0,"R");
$this->pdf->Cell(20,6,"Amount","1",1,"R");*/
$this->pdf->SetFont('Times','B',10);
$this->pdf->Cell(10,6,"Sl.","LRT",0,"C");
$this->pdf->Cell(160,6,"College Name","LRT",0,"C");
$this->pdf->Cell(20,6,"Total App.","LRT",0,"C");
$this->pdf->Cell(20,6,"Normal Fee","LRT",0,"R");
$this->pdf->Cell(20,6,"Total App.","LRT",0,"C");
$this->pdf->Cell(20,6,"Low Fee","LRT",0,"R");
$this->pdf->Cell(20,6,"Total","LRT",1,"R");
$this->pdf->SetFont('Times','B',10);
$this->pdf->Cell(10,6,"No.","LRB",0,"C");
$this->pdf->Cell(160,6,"","LRB",0,"C");
$this->pdf->Cell(20,6,"","LRB",0,"C");
$this->pdf->Cell(20,6,"Amount","LRB",0,"R");
$this->pdf->Cell(20,6,"Low Fee","LRB",0,"C");
$this->pdf->Cell(20,6,"Amount","LRB",0,"R");
$this->pdf->Cell(20,6,"Amount","LRB",1,"R");
}
}
$this->pdf->SetFont('Times','B',10);
$this->pdf->Cell(10,6,"","1",0,"C");
$this->pdf->Cell(160,6,"Grand Total","1",0,"C");
$this->pdf->Cell(20,6,$normal_app,"1",0,"R");
$this->pdf->Cell(20,6,$normal_income_total1,"1",0,"R");
$this->pdf->Cell(20,6,$low_app,"1",0,"R");
$this->pdf->Cell(20,6,$low_income_total1,"1",0,"R");
$this->pdf->Cell(20,6,$total1,"1",1,"C");
}
else if($this->Screentype=='Exam Application Fee Summary' && $this->ReportType=='Detail')
{
$this->pdf->AddPage('L');
//$this->pdf->SetFillColor(248, 248 ,255);
$this->pdf->SetFont('Times','B',10);
$this->pdf->Cell(10,6,"Sl.","LRT",0,"C");
$this->pdf->Cell(130,6,"College Name","LRT",0,"C");
$this->pdf->Cell(30,6,"Payment","LRT",0,"C");
$this->pdf->Cell(22,6,"Total App.","LRT",0,"C");
$this->pdf->Cell(22,6,"Amount Paid","LRT",0,"R");
$this->pdf->Cell(22,6,"Total App.","LRT",0,"C");
$this->pdf->Cell(22,6,"Amount Paid","LRT",0,"R");
$this->pdf->Cell(22,6,"Total Amount","LRT",1,"R");
$this->pdf->SetFont('Times','B',10);
$this->pdf->Cell(10,6,"No.","LRB",0,"C");
$this->pdf->Cell(130,6,"","LRB",0,"C");
$this->pdf->Cell(30,6,"","LRB",0,"C");
$this->pdf->Cell(22,6,"(Normal Fee)","LRB",0,"C");
$this->pdf->Cell(22,6,"(Normal Fee)","LRB",0,"C");
$this->pdf->Cell(22,6,"(Low Fee)","LRB",0,"C");
$this->pdf->Cell(22,6,"(Low Fee)","LRB",0,"C");
$this->pdf->Cell(22,6,"Paid","LRB",1,"C");
$new_name="";
$old_name="";
$sl_no=0;
$total=0;
$normal_income_total=0;
$low_income_total=0;
$normal_app=0;
$low_app=0;
foreach ($lobj_get_fee_data as $key => $value)
{
$amount=moneyFormatIndia((int)$value['amount']);
$normal_income=moneyFormatIndia((int)$value['normal_income']);
$low_income=moneyFormatIndia((int)$value['low_income']);
$this->pdf->SetFont('Times','',10);
$new_name=$value['college_name'];
if($new_name!=$old_name)
{
$sl_no++;
$name1=substr($value['college_name'],0,70);
$name2=substr($value['college_name'],70);
if(empty($name2))
{
$this->pdf->Cell(10,6,$sl_no,"LRT",0,"C");
$this->pdf->Cell(130,6,$name1,"LRT",0,"L");
$this->pdf->Cell(30,6,$value['fpaymentype'],"1",0,"C");
$this->pdf->Cell(22,6,$value['normal_app'],"1",0,"R");
$this->pdf->Cell(22,6,$normal_income,"1",0,"R");
$this->pdf->Cell(22,6,$value['low_app'],"1",0,"R");
$this->pdf->Cell(22,6,$low_income,"1",0,"R");
$this->pdf->Cell(22,6,$amount,"1",1,"R");
}
else
{
$this->pdf->Cell(10,6,$sl_no,"LRT",0,"C");
$this->pdf->Cell(130,6,$name1,"LRT",0,"L");
$this->pdf->Cell(30,6,strtoupper($value['fpaymentype']),"LRT",0,"C");
$this->pdf->Cell(22,6,$value['normal_app'],"LRT",0,"R");
$this->pdf->Cell(22,6,$normal_income,"LRT",0,"R");
$this->pdf->Cell(22,6,$value['low_app'],"LRT",0,"R");
$this->pdf->Cell(22,6,$low_income,"LRT",0,"R");
$this->pdf->Cell(22,6,$amount,"LRT",1,"R");
$this->pdf->Cell(10,4,"","LR",0,"C");
$this->pdf->Cell(130,4,$name2,"LR",0,"L");
$this->pdf->Cell(30,4,"","LRB",0,"L");
$this->pdf->Cell(22,4,"","LRB",0,"L");
$this->pdf->Cell(22,4,"","LRB",0,"L");
$this->pdf->Cell(22,4,"","LRB",0,"L");
$this->pdf->Cell(22,4,"","LRB",0,"L");
$this->pdf->Cell(22,4,"","LRB",1,"L");
}
$old_name=$value['college_name'];
}
else
{
$this->pdf->Cell(10,6,"","LR",0,"C");
$this->pdf->Cell(130,6,"","LR",0,"L");
$this->pdf->Cell(30,6,strtoupper($value['fpaymentype']),"1",0,"C");
$this->pdf->Cell(22,6,$value['normal_app'],"1",0,"R");
$this->pdf->Cell(22,6,$normal_income,"1",0,"R");
$this->pdf->Cell(22,6,$value['low_app'],"1",0,"R");
$this->pdf->Cell(22,6,$low_income,"1",0,"R");
$this->pdf->Cell(22,6,$amount,"1",1,"R");
}
if($this->pdf->getY() > 180)
{
$this->pdf->Cell(10,0,"","LRB",0,"C");
$this->pdf->Cell(130,0,"","LRB",0,"L");
}
$total =$total+$value['amount'];
$total1=moneyFormatIndia((int)$total);
$normal_income_total =$normal_income_total+$value['normal_income'];
$normal_income_total1=moneyFormatIndia($normal_income_total);
$normal_app=$normal_app+$value['normal_app'];
$low_income_total =$low_income_total+$value['low_income'];
$low_income_total1 =moneyFormatIndia((int)$low_income_total);
$low_app=$low_app+$value['low_app'];
if($this->pdf->getY() > 180)
{
$this->pdf->AddPage('L');
$this->pdf->SetFont('Times','B',10);
/*$this->pdf->Cell(10,6,"Sl. No","1",0,"C");
$this->pdf->Cell(130,6,"College Name","1",0,"C");
$this->pdf->Cell(30,6,"Paymentype","1",0,"C");
$this->pdf->Cell(20,6,"N.F.Tot.App","1",0,"C");
$this->pdf->Cell(20,6,"Normal Fee","1",0,"R");
$this->pdf->Cell(20,6,"L.F.Tot.App","1",0,"R");
$this->pdf->Cell(20,6,"Low Fee","1",0,"R");
$this->pdf->Cell(20,6,"Amount","1",1,"R");*/
$this->pdf->Cell(10,6,"Sl.","LRT",0,"C");
$this->pdf->Cell(130,6,"College Name","LRT",0,"C");
$this->pdf->Cell(30,6,"Payment","LRT",0,"C");
$this->pdf->Cell(22,6,"Total App.","LRT",0,"C");
$this->pdf->Cell(22,6,"Amount Paid","LRT",0,"R");
$this->pdf->Cell(22,6,"Total App.","LRT",0,"C");
$this->pdf->Cell(22,6,"Amount Paid","LRT",0,"R");
$this->pdf->Cell(22,6,"Total Amount","LRT",1,"R");
$this->pdf->SetFont('Times','B',10);
$this->pdf->Cell(10,6,"No.","LRB",0,"C");
$this->pdf->Cell(130,6,"","LRB",0,"C");
$this->pdf->Cell(30,6,"","LRB",0,"C");
$this->pdf->Cell(22,6,"(Normal Fee)","LRB",0,"C");
$this->pdf->Cell(22,6,"(Normal Fee)","LRB",0,"C");
$this->pdf->Cell(22,6,"(Low Fee)","LRB",0,"C");
$this->pdf->Cell(22,6,"(Low Fee)","LRB",0,"C");
$this->pdf->Cell(22,6,"Paid","LRB",1,"C");
}
}
$this->pdf->SetFont('Times','B',10);
$this->pdf->Cell(10,6,"","1",0,"C");
$this->pdf->Cell(130,6,"Grand Total","1",0,"C");
$this->pdf->Cell(30,6,"","1",0,"R");
$this->pdf->Cell(22,6,$normal_app,"1",0,"R");
$this->pdf->Cell(22,6,$normal_income_total1,"1",0,"R");
$this->pdf->Cell(22,6,$low_app,"1",0,"R");
$this->pdf->Cell(22,6,$low_income_total1,"1",0,"R");
$this->pdf->Cell(22,6,$total1,"1",1,"C");
}
else if($this->Screentype=='Admission Apllication Fee Summary'){
$this->pdf->AddPage();
$this->pdf->SetFont('Times','B',10);
$this->pdf->Cell(20,6,"Sl. No","1",0,"C");
$this->pdf->Cell(130,6,"College Name","1",0,"C");
$this->pdf->Cell(30,6,"Amount","1",1,"R");
$sl_no=0;
$total=0;
foreach ($lobj_get_fee_data as $key => $value)
{
$sl_no++;
$name1=substr($value['college_name'],0,70);
//var_dump($name1);
$name2=substr($value['college_name'],70);
//var_dump($name2);
$amount=moneyFormatIndia((int)$value['amount']);
$this->pdf->SetFont('Times','',10);
if(empty($name2))
{
$this->pdf->Cell(20,6,$sl_no,"1",0,"C");
$this->pdf->Cell(130,6,$name1,"1",0,"L");
$this->pdf->Cell(30,6,$amount,"1",1,"R");
}else
{
$this->pdf->Cell(20,5,$sl_no,"LRT",0,"C");
$this->pdf->Cell(130,5,$name1,"LRT",0,"L");
$this->pdf->Cell(30,5,$amount,"LRT",1,"R");
$this->pdf->Cell(20,5,"","LRB",0,"C");
$this->pdf->Cell(130,5,$name2,"LRB",0,"L");
$this->pdf->Cell(30,5,"","LRB",1,"C");
}
$total =$total+$value['amount'];
$total1=moneyFormatIndia((int)$total);
if($this->pdf->getY() > 260)
{
$this->pdf->AddPage();
$this->pdf->SetFont('Times','B',10);
$this->pdf->Cell(20,6,"Sl. No","1",0,"C");
$this->pdf->Cell(130,6,"College Name","1",0,"C");
$this->pdf->Cell(30,6,"Amount","1",1,"R");
}
}
$this->pdf->SetFont('Times','B',12);
$this->pdf->Cell(20,6,"","1",0,"C");
$this->pdf->Cell(130,6,"Total Amount","1",0,"C");
$this->pdf->Cell(30,6,$total1,"1",1,"R");
}else if($this->Screentype=='EFCW'){
$this->pdf->AddPage('L');
//$this->pdf->SetFillColor(248, 248 ,255);
$this->tableHeader();
$sl_no=0;
$GMCnt = $CAT_ICnt = $STCnt = $SCCnt = $IIACnt = $IIIACnt = $IIBCnt = $IIIBCnt = $appCnt = 0;
$GMTotal = $CAT_ITotal = $STTotal = $SCTotal = $IIATotal =$IIIATotal = $IIBTotal = $IIIBTotal = $ttlamt = 0;
foreach ($lobj_get_fee_data as $key => $value)
{
$sl_no++;
$this->pdf->SetFont('Times','',8);
$this->pdf->Cell(5,6,$sl_no,"1",0,"C");
$this->pdf->Cell(10,6,$value['fdegree'],"1",0,"C");
$this->pdf->Cell(10,6,$value['ffreshexam'],"1",0,"R");
$this->pdf->Cell(10,6,$value['GM APP Count'],"1",0,"R");
$this->pdf->Cell(18,6,moneyFormatIndia((int)$value['GM Amount']),"1",0,"R");
$this->pdf->Cell(10,6,$value['CAT-I APP Count'],"1",0,"R");
$this->pdf->Cell(18,6,moneyFormatIndia((int)$value['CAT-I Amount']),"1",0,"R");
$this->pdf->Cell(10,6,$value['ST APP Count'],"1",0,"R");
$this->pdf->Cell(18,6,moneyFormatIndia((int)$value['ST Amount']),"1",0,"R");
$this->pdf->Cell(10,6,$value['SC APP Count'],"1",0,"R");
$this->pdf->Cell(18,6,moneyFormatIndia((int)$value['SC Amount']),"1",0,"R");
$this->pdf->Cell(10,6,$value['IIA APP Count'],"1",0,"R");
$this->pdf->Cell(18,6,moneyFormatIndia((int)$value['IIA Amount']),"1",0,"R");
$this->pdf->Cell(10,6,$value['IIIA APP Count'],"1",0,"R");
$this->pdf->Cell(18,6,moneyFormatIndia((int)$value['IIIA Amount']),"1",0,"R");
$this->pdf->Cell(10,6,$value['IIB APP Count'],"1",0,"R");
$this->pdf->Cell(18,6,moneyFormatIndia((int)$value['IIB Amount']),"1",0,"R");
$this->pdf->Cell(10,6,$value['IIIB APP Count'],"1",0,"R");
$this->pdf->Cell(18,6,moneyFormatIndia((int)$value['IIIB Amount']),"1",0,"R");
$this->pdf->SetFont('Times','B',8);
$this->pdf->Cell(10,6,$value['appno'],"1",0,"R");
$this->pdf->Cell(18,6,moneyFormatIndia((int)$value['ftotalfee']),"1",1,"R");
$this->pdf->SetFont('Times','',8);
$GMCnt += $value['GM APP Count'];
$CAT_ICnt += $value['CAT-I APP Count'];
$STCnt += $value['ST APP Count'];
$SCCnt += $value['SC APP Count'];
$IIACnt += $value['IIA APP Count'];
$IIIACnt += $value['IIIA APP Count'];
$IIBCnt += $value['IIB APP Count'];
$IIIBCnt += $value['IIIB APP Count'];
$appCnt += $value['appno'];
$GMTotal += $value['GM Amount'];
$CAT_ITotal +=$value['CAT-I Amount'];
$STTotal += $value['ST Amount'];
$SCTotal +=$value['SC Amount'];
$IIATotal +=$value['IIA Amount'];
$IIIATotal += $value['IIIA Amount'];
$IIBTotal += $value['IIB Amount'];
$IIIBTotal +=$value['IIIB Amount'];
$ttlamt += $value['ftotalfee'];
}
$this->pdf->SetFont('Times','B',8);
$this->pdf->Cell(25,6,"","LRB",0,"");
$this->pdf->Cell(10,6,"$GMCnt","LRB",0,"R");
$this->pdf->Cell(18,6,moneyFormatIndia((int)$GMTotal),"1",0,"R");
$this->pdf->Cell(10,6,"$CAT_ICnt","LRB",0,"R");
$this->pdf->Cell(18,6,moneyFormatIndia((int)$CAT_ITotal),"1",0,"R");
$this->pdf->Cell(10,6,"$STCnt","LRB",0,"R");
$this->pdf->Cell(18,6,moneyFormatIndia((int)$STTotal),"1",0,"R");
$this->pdf->Cell(10,6,"$SCCnt","LRB",0,"R");
$this->pdf->Cell(18,6,moneyFormatIndia((int)$SCTotal),"1",0,"R");
$this->pdf->Cell(10,6,"$IIACnt","LRB",0,"R");
$this->pdf->Cell(18,6,moneyFormatIndia((int)$IIATotal),"1",0,"R");
$this->pdf->Cell(10,6,"$IIIACnt","LRB",0,"R");
$this->pdf->Cell(18,6,moneyFormatIndia((int)$IIIATotal),"1",0,"R");
$this->pdf->Cell(10,6,"$IIBCnt","LRB",0,"R");
$this->pdf->Cell(18,6,moneyFormatIndia((int)$IIBTotal),"1",0,"R");
$this->pdf->Cell(10,6,"$IIIBCnt","LRB",0,"R");
$this->pdf->Cell(18,6,moneyFormatIndia((int)$IIIBTotal),"1",0,"R");
$this->pdf->Cell(10,6,"$appCnt","LRB",0,"R");
$this->pdf->Cell(18,6,moneyFormatIndia((int)$ttlamt),"1",1,"R");
}
else if($this->Screentype=='Duplicate Payment Report'){
$this->pdf->SetMargins(8,13);
$this->pdf->SetFont('Times','B',10);
$this->pdf->AddPage('L');
$this->dupTblHeader();
$oldcode='';
$count =0;
$nxt=0;
// $newcode=$lobj_get_fee_data[0]['fregno'];
foreach ($lobj_get_fee_data as $key => $value)
{
$newcode=$value['fregno'];
$this->pdf->SetFont('Times','',10);
$x = $this->pdf->GetX();
$y = $this->pdf->GetY();
$this->pdf->SetX($x + 203);
$this->pdf->MultiCell(80,6,$value['fpaymentremarks']."\n","1","L");
$y1 = $this->pdf->GetY();
if($y>179)
$this->dupTblHeader();
$h = $y1 - $y;
$this->pdf->SetXY($x,$y);
if($newcode !== $oldcode ){
$sl_no++;
$this->pdf->SetFont('Times','',10);
$this->pdf->Cell(8,$h,$sl_no,"LRT",0,"C");
$this->pdf->Cell(15,$h,$value['fcollcode'],"LRT",0,"C");
$this->pdf->Cell(15,$h,$value['fdegree'],"LRT",0,"C");
$this->pdf->Cell(20,$h,$value['fregno'],"LRT",0,"C");
$this->pdf->Cell(60,$h,ucwords(strtolower($value['fname'])),"LRT",0,"L");
$this->pdf->Cell(25,$h,$value['appno'],"1",0,"C");
$this->pdf->Cell(15,$h,$value['ftotalfee'],"1",0,"C");
$this->pdf->Cell(25,$h,$value['paymentType'],"1",0,"L");
$this->pdf->Cell(20,$h,$value['fackdate'],"1",1,"L");
$oldcode=$value['fregno'];
if($this->pdf->getY() > 179)
{
$this->pdf->Cell(170,1," ","T",1,"C");
$this->pdf->SetFont('Times','B',10);
$this->dupTblHeader();
}
// var_dump($oldcode);
}
else{
$this->pdf->SetFont('Times','',10);
$this->pdf->Cell(8,$h,"","LR",0,"C");
$this->pdf->Cell(15,$h,"","LR",0,"C");
$this->pdf->Cell(15,$h,"","LR",0,"C");
$this->pdf->Cell(20,$h,"","LR",0,"C");
// $this->pdf->Cell(120,6,"","LBR",0,"C");
$this->pdf->Cell(60,$h,"","LR",0,"L");
$this->pdf->Cell(25,$h,$value['appno'],"1",0,"C");
$this->pdf->Cell(15,$h,$value['ftotalfee'],"1",0,"C");
$this->pdf->Cell(25,$h,$value['paymentType'],"1",0,"L");
$this->pdf->Cell(20,$h,$value['fackdate'],"1",1,"L");
if($this->pdf->getY() > 179)
{
$this->pdf->Cell(170,1," ","T",1,"C");
$this->pdf->SetFont('Times','B',10);
$this->dupTblHeader();
}
}
if($this->pdf->getY() > 179)
{
$this->pdf->SetFont('Times','B',10);
$this->dupTblHeader();
}
}
$this->pdf->Cell(170,1," ","T",1,"C");
}
}
function SendOutput()
{
$this->pdf->Output("fee_summary.pdf","D");
}
}
function generateFeeSummaryReport($aobj_context)
{
$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);
$class_obj=new GenerateFeeSummaryReport();
$class_obj->AliasNbPages();
$class_obj->DefaultConstructor($aobj_context);
$class_obj->Header();
$class_obj->formcolldata();
$class_obj->formdata();
$class_obj->SendOutput();
}
function moneyFormatIndia($num) {
$explrestunits = "" ;
if(strlen($num)>3) {
$lastthree = substr($num, strlen($num)-3, strlen($num));
$restunits = substr($num, 0, strlen($num)-3); // extracts the last three digits
$restunits = (strlen($restunits)%2 == 1)?"0".$restunits:$restunits; // explodes the remaining digits in 2's formats, adds a zero in the beginning to maintain the 2's grouping.
$expunit = str_split($restunits, 2);
for($i=0; $i<sizeof($expunit); $i++) {
// creates each of the 2's group and adds a comma to the end
if($i==0) {
$explrestunits .= (int)$expunit[$i].","; // if is first value , convert into integer
} else {
$explrestunits .= $expunit[$i].",";
}
}
$thecash = $explrestunits.$lastthree;
} else {
$thecash = $num;
}
return $thecash; // writes the final format where $currency is the currency symbol.
}
?>
|