0xV3NOMx
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 : 13.58.224.40


Current Path : /var/www/html/mcu/Report_details_stop/
Upload File :
Current File : /var/www/html/mcu/Report_details_stop/ack_rv_rt_report.php

<?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 GenerateRvRtReport  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->collcode=$_SESSION['collcode'];

		$this->deg_type = $aobj_context->mobj_data["deg_type"]; 

		$this->degree_from = $aobj_context->mobj_data["degree_from"]; 
		$this->degree_to = $aobj_context->mobj_data["degree_to"];

		$this->exam_from =  $aobj_context->mobj_data["exam_from"];
		$this->exam_to =$aobj_context->mobj_data["exam_to"];

		$this->app_from =  $aobj_context->mobj_data["app_from"];
		$this->app_to =$aobj_context->mobj_data["app_to"];
		
		$this->payment_type = $aobj_context->mobj_data["payment_type"];
		$this->payment_status_type = $aobj_context->mobj_data["payment_status_type"];
		if($this->payment_status_type=='success')
			$this->payment_status_type='Success';
		if($this->payment_status_type=='pending')
			$this->payment_status_type='Pending';
		
	}
	 
	function Header()
	{
			

			$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,70,20,30);
			}

			$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',12);
			$this->pdf->cell(0,5,"RV/RT Application Report","0",1,"C");
			$this->pdf->SetFont('Times','B',10);
			$this->pdf->cell(0,5,"Degree Group:" ." ".$this->deg_type,"0",1,"C");
			$this->pdf->cell(0,5,"Degree Range :" ." ".$this->degree_from." "."to"." ".$this->degree_to,"0",1,"C");

			$this->pdf->cell(0,5,"Exam No Range :"  ." ".$this->exam_from." "."to"." ".$this->exam_to,"0",1,"C");
			
			$this->pdf->cell(0,5,"Application No Range :"  ." ".$this->app_from." "."to"." ".$this->app_to,"0",1,"C");

			$this->pdf->cell(0,5,"Payment Type :" ." ".$this->payment_type,"0",1,"C");
			$this->pdf->cell(0,5,"Payment Status :" ." ".$this->payment_status_type,"0",1,"C");
				
	}	

	function Footer()
	{
		 
			$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');
			
	}
	
	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 formdata()
	{
	if($this->payment_type =="All")
	$cnd = "";
	else
		$cnd = "and r.fpaymentype='{$this->payment_type}'";

	if($this->payment_status_type =="All")
	$cnd1 = "";
	else
		$cnd1 = "and IFNULL(r.fpaymentstatus,'Pending')='{$this->payment_status_type}'";


		$get_data="SELECT r.appno,DATE_FORMAT(r.fappdate,'%d/%m/%Y')AS appdate,
				r.fdegree,r.fexamno,d.fdeggrp,r.fregno,s.fname,CAST(r.ftotal AS INT) AS amount,
				r.fpaymentype,IFNULL(r.fpaymentstatus,'Pending') AS paymentstatus,r.fcorrtype,
				concat(r.fsubcode,'-',sub.fsubname) as fsubname FROM res_stud r INNER JOIN student s ON s.fdegree=r.fdegree
				AND s.fregno=r.fregno AND s.fcollcode=r.fcollcode INNER JOIN degree d ON 
				d.fdegree=r.fdegree AND d.fexamno=r.fexamno INNER JOIN SUBJECT sub ON 
				sub.fexamno=r.fexamno AND sub.fdegree=r.fdegree and sub.fcsubcode=r.fsubcode WHERE d.fdeggrp='{$this->deg_type}' 
				AND r.fdegree>='{$this->degree_from}' AND r.fdegree<='{$this->degree_to}' 
			 	AND r.fexamno>='{$this->exam_from}' AND r.fexamno<='{$this->exam_to}' AND 
			 	r.appno>='{$this->app_from}' 
			 	AND r.appno<='{$this->app_to}' AND r.FCOLLCODE='{$this->collcode}'  
			 	{$cnd} {$cnd1} ORDER BY appno,fregno";
			 	//var_dump($get_data);

		$lobj_get_data = $this->aobj_context->mobj_db->GetAll($get_data);

		$this->pdf->AddPage('L');
		//$this->pdf->SetFillColor(248, 248 ,255);
		$this->pdf->Ln(2);
		$this->pdf->SetFont('Times','B',10);
		$this->pdf->Cell(10,6,"Sl. No","1",0,"C");
		$this->pdf->Cell(25,6,"App.No","1",0,"C");
		$this->pdf->Cell(20,6,"AppliedDate","1",0,"C");
		$this->pdf->Cell(20,6,"Reg.No","1",0,"C");
		$this->pdf->Cell(20,6,"Degree","1",0,"C");
		$this->pdf->Cell(20,6,"Corr.Type","1",0,"C");
		//$this->pdf->Cell(20,6,"Sub.Code","1",0,"C");
		$this->pdf->Cell(90,6,"Subject Name","1",0,"C");
		$this->pdf->Cell(15,6,"Amount","1",0,"C");
		$this->pdf->Cell(30,6,"Payment Type","1",0,"L");
		$this->pdf->Cell(25,6,"Payment Status","1",1,"L");
		$sl_no=0;
		$total=0;
		foreach ($lobj_get_data as $key => $value) {
			//var_dump($lobj_get_data);
			$sl_no++;
			$payment1=substr($value['fpaymentype'],0,12);
			$payment2=substr($value['fpaymentype'],12);

			$fsubname1=substr($value['fsubname'],0,45);
			$fsubname2=substr($value['fsubname'],45);
			$amount=$value['amount'];
			$amount1=moneyFormatIndia($amount);
			if(empty($payment2) && empty($fsubname2))
			{
			$this->pdf->SetFont('Times','',10);

			$this->pdf->Cell(10,6,$sl_no,"1",0,"C");
			$this->pdf->Cell(25,6,$value['appno'],"1",0,"C");
			$this->pdf->Cell(20,6,$value['appdate'],"1",0,"C");
			$this->pdf->Cell(20,6,$value['fregno'],"1",0,"C");
			$this->pdf->Cell(20,6,$value['fdegree'],"1",0,"C");
			$this->pdf->Cell(20,6,$value['fcorrtype'],"1",0,"C");
			//$this->pdf->Cell(20,6,$value['fsubcode'],"1",0,"C");
			$this->pdf->Cell(90,6,$fsubname1,"1",0,"L");
			$this->pdf->Cell(15,6,$amount1,"1",0,"R");
			$this->pdf->Cell(30,6,$payment1,"1",0,"L");
			$this->pdf->Cell(25,6,$value['paymentstatus'],"1",1,"C");
			}
			else{

			$this->pdf->SetFont('Times','',10);

			$this->pdf->Cell(10,6,$sl_no,"LRT",0,"C");
			$this->pdf->Cell(25,6,$value['appno'],"LRT",0,"C");
			$this->pdf->Cell(20,6,$value['appdate'],"LRT",0,"C");
			$this->pdf->Cell(20,6,$value['fregno'],"LRT",0,"C");
			$this->pdf->Cell(20,6,$value['fdegree'],"LRT",0,"C");
			$this->pdf->Cell(20,6,$value['fcorrtype'],"LRT",0,"C");
			//$this->pdf->Cell(20,6,$value['fsubcode'],"LRT",0,"C");
			$this->pdf->Cell(90,6,$fsubname1,"LRT",0,"L");
			$this->pdf->Cell(15,6,$amount1,"LRT",0,"R");
			$this->pdf->Cell(30,6,$payment1,"LRT",0,"L");
			$this->pdf->Cell(25,6,$value['paymentstatus'],"LRT",1,"C");


			$this->pdf->Cell(10,3,"","LRB",0,"C");
			$this->pdf->Cell(25,3,"","LRB",0,"C");
			$this->pdf->Cell(20,3,"","LRB",0,"C");
			$this->pdf->Cell(20,3,"","LRB",0,"C");
			$this->pdf->Cell(20,3,"","LRB",0,"C");
			$this->pdf->Cell(20,3,"","LRB",0,"C");
			//$this->pdf->Cell(20,6,"","LRB",0,"C");
			$this->pdf->Cell(90,3,$fsubname2,"LRB",0,"L");
			$this->pdf->Cell(15,3,"","LRB",0,"R");
			$this->pdf->Cell(30,3,$payment2,"LRB",0,"L");
			$this->pdf->Cell(25,3,"","LRB",1,"C");

			}
			$total+=$value['amount'];
			$total1=moneyFormatIndia($total);
			//var_dump($total);
			if($this->pdf->getY() > 180)
			{
					$this->pdf->AddPage('L');
					$this->pdf->Ln(2);
					$this->pdf->SetFont('Times','B',10);
					$this->pdf->Cell(10,6,"Sl. No","1",0,"C");
					$this->pdf->Cell(25,6,"App.No","1",0,"C");
					$this->pdf->Cell(20,6,"AppliedDate","1",0,"C");
					$this->pdf->Cell(20,6,"Reg.No","1",0,"C");
					$this->pdf->Cell(20,6,"Degree","1",0,"C");
					$this->pdf->Cell(20,6,"Corr.Type","1",0,"C");
					//$this->pdf->Cell(20,6,"Sub.Code","1",0,"C");
					$this->pdf->Cell(90,6,"Subject Name","1",0,"C");
					$this->pdf->Cell(15,6,"Amount","1",0,"C");
					$this->pdf->Cell(30,6,"Payment Type","1",0,"L");
					$this->pdf->Cell(25,6,"Payment Status","1",1,"L");
			}
		
		}
		$this->pdf->SetFont('Times','B',10);
		$this->pdf->Cell(10,6,"","LBT",0,"C");
		$this->pdf->Cell(25,6,"","B",0,"C");
		$this->pdf->Cell(20,6,"","B",0,"C");
		$this->pdf->Cell(20,6,"","B",0,"C");
		$this->pdf->Cell(20,6,"","B",0,"C");
		$this->pdf->Cell(20,6,"","B",0,"C");
		//$this->pdf->Cell(20,6,"Sub.Code","1",0,"C");
		$this->pdf->Cell(90,6,"Total","1",0,"C");
		$this->pdf->Cell(15,6,$total1,"1",0,"R");
		$this->pdf->Cell(30,6,"","0",0,"C");
		$this->pdf->Cell(25,6,"","0",1,"C");
	
	}

	function SendOutput()
	{
		$this->pdf->Output("ack_rv_rt_report.pdf","D");
	}
		
		 
}
function generateRvRtReport($aobj_context)
{
	$aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);

	$class_obj=new GenerateRvRtReport();
	$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.
}

?>