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 : 18.217.26.8
<?php
$main_src=substr($_SERVER['SCRIPT_FILENAME'],0,strlen($_SERVER['SCRIPT_FILENAME'])-7);
$pdf_writer_class =$main_src."/tarka_pdf/fpdf.php";
require_once($pdf_writer_class);
class RVApplicationsReport extends FPDF
{
function DefaultConstructor($aobj_context)
{
$this->aobj_context=$aobj_context;
$this->pdf= new FPDF();
$this->pdf=$this;
session_start();
$this->ip=$_SERVER["REMOTE_ADDR"];
$this->collcode=$_SESSION['collcode'];
$this->app_no_from = ($this->aobj_context->mobj_data["app_start"]);
$this->app_no_to = ($this->aobj_context->mobj_data["app_end"]);
$this->reg_start = ($this->aobj_context->mobj_data["reg_start"]);
$this->reg_end = ($this->aobj_context->mobj_data["reg_end"]);
$this->ack_type = ($this->aobj_context->mobj_data["ack_type"]);
$this->degree_code = ($this->aobj_context->mobj_data["fdegree"]);
$this->rtype = ($this->aobj_context->mobj_data["rtype"]);
$this->sem = ($this->aobj_context->mobj_data["sem"]);
$this->semname = ($this->aobj_context->mobj_data["semname"]);
//$this->pay_mode = "All";
$get_date="select date_format(now(),'%d/%m/%Y') as now_date";
$obj=$this->aobj_context->mobj_db->GetRow($get_date);
$this->current_date=$obj[now_date];
}
function Header()
{
}
function Footer()
{
$this->SetY(-15);
$this->pdf->SetFont('Times','B',8);
$this->Cell(140,6,'Printed : IP Address : '.$this->ip." Date: ".date('d/m/Y h:i:s A'),'0',0,'L');
$this->Cell(130,6,'Page '.$this->PageNo().' of {nb}',0,1,'R');
}
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'];
$get_coll_name="SELECT FCOLLCODE,FCOLLNAME,FTOWN
FROM college where FCOLLCODE='{$this->collcode}'";
$lobj_get_coll_name=$this->aobj_context->mobj_db->GetRow($get_coll_name);
$this->FCOLLCODE=$lobj_get_coll_name['FCOLLCODE'];
$this->FCOLLNAME=$lobj_get_coll_name['FCOLLNAME'];
$this->FCOLLTOWN=$lobj_get_coll_name['FTOWN'];
$get_degree_name="SELECT FDEGREE,FDESCPN
FROM degree where fdegree='{$this->degree_code}'";
$lobj_get_degree_name=$this->aobj_context->mobj_db->GetRow($get_degree_name);
$this->FDEGREE=$lobj_get_degree_name['FDEGREE'];
$this->FDESCPN=$lobj_get_degree_name['FDESCPN'];
}
function formData()
{
$this->pdf->SetMargins(10,12,10);
$this->pdf->AddPage('L');
$img_path=$this->aobj_context->main_src.$this->pdf_logo_path;
if(!empty($this->pdf_logo_path) && file_exists($img_path))
{
$this->pdf->Image($img_path,20,6,25);
}
$this->pdf->SetFont('Times','B',16);
$this->pdf->cell(0,7,"".$this->FUNIVNAME,"0",1,"C");
$this->pdf->SetFont('Times','B',13);
$this->pdf->cell(0,7, "College: ". $this->FCOLLCODE." - ".$this->FCOLLNAME.", ".$this->FCOLLTOWN,"0",1,"C");
$this->pdf->SetFont('Times','B',12);
$this->pdf->Cell(0,7,"Degree: ".$this->degree_code." - ".$this->FDESCPN,"0",1,"C");
$this->pdf->Cell(0,7,"[Exam Range: ".$this->semname."] [Report Type: ".$this->rtype."] [Payment Status: ".$this->ack_type."]","0",1,"C");
$this->pdf->SetFont('Times','B',15);
}
function GetFullQry()
{
//var_dump($this->ack_type);
if($this->ack_type == 'pending')
{
$ref = "AND (FACKDATE IS NULL)";
}
else if($this->ack_type == 'success')
{
$ref = "AND (ifnull(FACKDATE,'') <> '' OR date_format(FACKDATE,'%d/%m/%Y') <> '00/00/0000')";
}
else
{
$ref = "";
}
$cnd = "AND r.fexamno = '{$this->sem}'";
if($this->sem == 'All')
{
$cnd = "";
}
$get_data = "SELECT DISTINCT r.APPNO, r.FDEGREE,d.FEXAMNO, d.FEXAMNAME, r.FREGNO,s.FNAME,
DATE_FORMAT(r.FAPPDATE,'%d/%m/%Y') AS FAPPDATE,`FCORRTYPE`,
r.FAMOUNT AS FAMOUNT,r.fsubcode AS FSUBCODE,left(su.fsubname,30) AS FSUBNAME,
IF(r.FPAYMENTTYPE = 'Other Banks', r.FPAYGATEWAY,r.FPAYMENTTYPE) AS FPAYMENTTYPE,
IFNULL(DATE_FORMAT(FACKDATE,'%d/%m/%Y'),'') AS FSETDATE,
UCASE(IFNULL(r.FPAYMENTSTATUS, 'Pending')) AS FPAYMENTSTATUS
FROM res_stud r INNER JOIN degree d ON r.fdegree = d.fdegree
AND d.fexamno = r.fexamno
INNER JOIN student s ON s.FREGNO=r.FREGNO
inner join subject su on d.fdegree = su.fdegree
and d.fexamno = su.fexamno
and r.fsubcode = su.fcsubcode
WHERE r.FCOLLCODE='{$this->FCOLLCODE}' and r.fdegree = '{$this->degree_code}'
AND r.APPNO BETWEEN '0' AND 'zzzz'
AND r.fregno BETWEEN '0' AND 'zzz' {$ref}
{$cnd}
ORDER BY r.FDEGREE, r.FREGNO, r.APPNO, d.FEXAMNAME, r.fsubcode";
//var_dump($get_data);
$this->lobj_get_get_data= $this->aobj_context->mobj_db->GetAll($get_data);
}
function GetQry()
{
$i=0;
$this->SetFillColor(219,217,217);
if($this->pdf->GetY() >280)
$this->pdf->AddPage('L');
//$this->SetDrawColor(255,2,195);
$this->pdf->SetFont('Times','B',10);
$this->pdf->cell(15,7, "Sl. No.","1",0,"C",true);
$this->pdf->cell(20,7, "Reg. No.","1",0,"C",true);
$this->pdf->cell(15,7, "Exam","1",0,"C",true);
$this->pdf->cell(15,7, "Code","1",0,"C",true);
$this->pdf->cell(65,7, "Subject Name","1",0,"C",true);
$this->pdf->cell(15,7, "Cr. Type","1",0,"C",true);
$this->pdf->cell(25,7, "Appl. No.","1",0,"C",true);
$this->pdf->cell(20,7, "Appl. Date","1",0,"C",true);
$this->pdf->cell(25,7, "Pay. Type","1",0,"C",true);
$this->pdf->cell(20,7, "Pay. Date","1",0,"C",true);
$this->pdf->cell(20,7, "Amount","1",0,"C",true);
$this->pdf->cell(22,7, "Status","1",1,"C",true);
$height=6;
$sl_no=1;
if($this->pdf->GetY() >280)
$totfee = 0;
foreach($this->lobj_get_get_data as $ak=>$av)
{
$sub_code=$ak;
$this->pdf->SetFont('Times','',10);
$this->pdf->cell(15,$height, $sl_no,"1",0,"C");
$this->pdf->cell(20,$height, $av['FREGNO'],"1",0,"C");
$this->pdf->cell(15,$height, $av['FEXAMNO'],"1",0,"C");
$this->pdf->cell(15,$height, $av['FSUBCODE'],"1",0,"C");
$this->pdf->cell(65,$height, $av['FSUBNAME'],"1",0,"L");
$this->pdf->cell(15,$height, $av['FCORRTYPE'],"1",0,"C");
$this->pdf->cell(25,$height, $av['APPNO'],"1",0,"C");
$this->pdf->cell(20,$height, $av['FAPPDATE'],"1",0,"C");
$this->pdf->cell(25,$height, $av['FPAYMENTTYPE'],"1",0,"C");
$this->pdf->cell(20,$height, $av['FSETDATE'],"1",0,"C");
$this->pdf->cell(20,$height, $av['FAMOUNT'],"1",0,"R");
$totfee += $av['FAMOUNT'];
$this->pdf->cell(22,$height, $av['FPAYMENTSTATUS'],"1",1,"C");
$sl_no++;
if($this->pdf->GetY() >180)
{
$this->pdf->AddPage('L');
// $this->formData();
$this->pdf->SetFont('Times','B',10);
$this->pdf->cell(15,7, "Sl. No.","1",0,"C",true);
$this->pdf->cell(20,7, "Reg. No.","1",0,"C",true);
$this->pdf->cell(15,7, "Exam","1",0,"C",true);
$this->pdf->cell(15,7, "Sub. Code","1",0,"C",true);
$this->pdf->cell(65,7, "Subject Name","1",0,"C",true);
$this->pdf->cell(15,7, "Cr. Type","1",0,"C",true);
$this->pdf->cell(25,7, "Appl. No.","1",0,"C",true);
$this->pdf->cell(20,7, "Appl. Date","1",0,"C",true);
$this->pdf->cell(25,7, "Pay. Type","1",0,"C",true);
$this->pdf->cell(20,7, "Pay. Date","1",0,"C",true);
$this->pdf->cell(20,7, "Amount","1",0,"C",true);
$this->pdf->cell(22,7, "Status","1",1,"C",true);
}
}
$totfee = moneyFormatIndia($totfee);
$this->pdf->SetFont('Times','B',11);
$this->pdf->Cell(0,7,"Total Amount: ".$totfee."/-",'1',1,'R');
}
function SendOutput()
{
$this->pdf->Output("report_rv_rt_pc_{$this->app_no}.pdf","D");
}
}
function RVApplicationsReport($aobj_context)
{
$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);
$class_obj=new RVApplicationsReport();
$class_obj->AliasNbPages();
$class_obj->DefaultConstructor($aobj_context);
$class_obj->formcolldata();
$class_obj->GetFullQry();
$class_obj->formData();
$class_obj->GetQry();
$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.
}
?>
|