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 : 3.144.99.39


Current Path : /var/www/html/rcub/Report_details/
Upload File :
Current File : /var/www/html/rcub/Report_details/approval_report16.02.2021.php

<?php
$main_src = substr($_SERVER['SCRIPT_FILENAME'], 0, strlen($_SERVER['SCRIPT_FILENAME']) - 7);
//$pdf_writer_class =$main_src."/tarka_pdf/fpdf.php";
$pdf_writer_class = $main_src . "/tcpdf/tcpdf.php";
require_once($pdf_writer_class);
// ini_set('memory_limit','900M');
// ini_set('max_execution_time',0);

class MYPDF extends TCPDF
{
    public $aobj_context;

    public function setData($aobj_context)
    {
        $this->aobj_context = $aobj_context;
    }

    public function Header()
    {
        // get the current page break margin
        $bMargin = $this->getBreakMargin();
        // get current auto-page-break mode
        $auto_page_break = $this->AutoPageBreak;
        // disable auto-page-break
        $this->SetAutoPageBreak(false, 0);
        // set bacground image

        $this->SetMargins(12, 35, 20, true);
        $this->SetFillColor(248, 248, 255);
        $img_path = $this->aobj_context->main_src . "/img/logo.jpg";

        if (file_exists($img_path))
            $this->Image($img_path, 6, 6, 20, 20);

        $this->SetFont('Times', 'B', 13);
        $this->SetY(5);
        $this->Cell(0, 4, $this->aobj_context->FUNIVNAME, 0, 1, 'C');
        //state
        $this->SetFont('Times', '', 11);
        $this->Cell(0, 4, $this->aobj_context->s_state, 0, 1, 'C');
        if ($this->aobj_context->firstpage == 'false') {
            $this->SetFont('Times', 'B', 11);
            $this->Cell(0, 4, $this->aobj_context->col_name, 0, 1, 'C');

            $this->SetFont('Times', 'B', 12);
            //$this->Cell(0,5,"Degree : {$this->aobj_context->degree}",'0',1,'C');
            //$this->Ln(1);	
        }
        $cur_year = date("Y");
        $next_year = $cur_year + 1;
        $next_year = substr($next_year, 2);
        $this->SetFont('Times', 'B', 12);
        //		if($this->aobj_context->notappr == 'Not Approved')
        //			$this->Cell(0,5,'Admission Not Approved List ('.$cur_year.'-'.$next_year.')','0',1,'C');
        //		else
        //			$this->Cell(0,5,'Admission Approved List ('.$cur_year.'-'.$next_year.')','0',1,'C');


        if ($this->aobj_context->notappr == 'Not Approved')
            $this->Cell(0, 5, 'Admission Not Approved List (2020)', '0', 1, 'C');
        else
            $this->Cell(0, 5, 'Admission Approved List (2020)', '0', 1, 'C');

        // $examno = $aobj_context->mobj_data["examno"];
        if ($this->aobj_context->examno == 'C') {
            $this->Cell(0, 5, 'Lateral Entry List', '0', 1, 'C');
        }

        //$this->Ln(1);

        // restore auto-page-break status
        $this->SetAutoPageBreak($auto_page_break, $bMargin);
        // set the starting point for the page content    
    }

    public function Footer()
    {
        $this->SetY(-15);
        $this->SetFont('helvetica', 'I', 8);
        $this->Cell(50, 10, 'IP : ' . $_SERVER["REMOTE_ADDR"], 0, 0, 'L');
        $this->Cell(80, 10, 'Date : ' . $this->aobj_context->current_date, 0, 0, 'C');

        $this->Cell(70, 10, 'Page ' . $this->getPageNumGroupAlias() . '/' . $this->getPageGroupAlias(), 0, 1, 'R');
    }
}

class AddmissionApplication
{
    function DefaultConstructor($aobj_context)
    {
        $this->aobj_context = $aobj_context;
        //$this->pdf=  new FPDF();
        $this->collcode = $aobj_context->mobj_data["fcollcode"];;
        $this->degree = $aobj_context->mobj_data["fdegree"];
        $this->examno = $aobj_context->mobj_data["examno"];
        $this->aobj_context->examno = $this->examno;
        // var_dump($this->aobj_context->examno,$this->examno);
        // die();

        $this->ip = $_SERVER["REMOTE_ADDR"];
        $get_date = "select DATE_FORMAT(now(), '%d/%m/%Y') as now_date";
        $obj = $this->aobj_context->mobj_db->GetRow($get_date);

        $get_coll_name = "select FUNIVNAME as 'FUNIVNAME',FUNIVCODE,
		FUNIVADD1 as 'state', pdf_logo_path,
		ifnull(FEXAMAPPREQ,'F') as FEXAMAPPREQ From control";

        $lobj_get_coll_name = $this->aobj_context->mobj_db->GetRow($get_coll_name);

        $aobj_context->FUNIVNAME = $lobj_get_coll_name['FUNIVNAME'];
        $aobj_context->s_state = $lobj_get_coll_name['state'];
        $aobj_context->pdf_logo_path = $lobj_get_coll_name['pdf_logo_path'];
        $aobj_context->FEXAMAPPREQ = $lobj_get_coll_name['FEXAMAPPREQ'];
        $aobj_context->FUNIVCODE = $lobj_get_coll_name['FUNIVCODE'];

        $get_college_name = "select concat(FCOLLCODE,' - ',FCOLLNAME,', ',FTOWN) as col_name from college where FCOLLCODE='{$this->collcode}'";
        $lobj_get_college_name = $this->aobj_context->mobj_db->GetRow($get_college_name);
        $aobj_context->col_name = $lobj_get_college_name['col_name'];
        $this->aobj_context->current_date =  $obj['now_date'];

        $this->current_date = $obj['now_date'];

        $get_degree_name = "select concat(fdegree,'-',fdescpn) as degree from degree where fdegree='{$this->degree}' and fexamno = 'A'";

        $lobj_get_degree_name = $this->aobj_context->mobj_db->GetRow($get_degree_name);
        $aobj_context->degree = $lobj_get_degree_name['degree'];

        $this->pdf = new MYPDF('P');
        $this->pdf->setData($aobj_context);
    }



    function writeReport($apprCollData, $apprColldet, $apprNotCollData)
    {

        $pdf = $this->pdf;
        $this->aobj_context->firstpage = 'true';
        $list = $this->aobj_context->mobj_data["list"];
        $pdf->SetMargins(12, 30, 20, false);
        $pdf->startPageGroup();
        $pdf->AddPage("P");

        $pdf->SetFont('Times', '', 12);

        // var_dump($category);
        // return;
        $pdf->cell('0', 6, 'No. : ACA/ADM/Appl & Reg. No/2020-21', 0, 0, 'L');
        $pdf->cell('0', 6, 'Date :' . $apprColldet['fdate'], 0, 1, 'R');
        $pdf->Ln(5);
        $pdf->cell('0', 5, 'To,', 0, 1, 'L');
        $pdf->cell('0', 5, 'The Principal', 0, 1, 'L');
        $pdf->cell('0', 5, $apprColldet['FCOLLCODE'] . ' - ' . $apprColldet['FCOLLNAME'] . ', ' . $apprColldet['FTOWN'], 0, 1, 'L');
        $pdf->cell('0', 5, ucwords($apprColldet['FCOLLADD1']), 0, 1, 'L');

        if ($apprColldet['FCOLLADD2'] != '' && $apprColldet['FCOLLADD2'] != '.')
            $pdf->cell('0', 5, ucwords($apprColldet['FCOLLADD2']), 0, 1, 'L');

        if ($apprColldet['FCOLLADD3'] != '' && $apprColldet['FCOLLADD3'] != '.')
            $pdf->cell('0', 5, ucwords($apprColldet['FCOLLADD3']), 0, 1, 'L');

        if ($apprColldet['FCOLLADD4'] != '' && $apprColldet['FCOLLADD4'] != '.')
            $pdf->cell('0', 5, ucwords($apprColldet['FCOLLADD4']), 0, 1, 'L');
        $pdf->Ln(3);
        $pdf->cell('0', 5, 'Sir / Madam,', 0, 1, 'L');
        $pdf->Ln(2);

        if ($apprColldet['fdeggrp'] == 'PG')
            $str = "Post graduate";
        else if ($apprColldet['fdeggrp'] == 'UG')
            $str = "Under graduate";
        else
            $str = "MBA / MCA";

        $str = $apprColldet['fdescpn'];
        $pdf->cell('0', 5, 'Sub : Admission approval of ' . $str . ' degree courses for the academic year 2020-21', 0, 1, 'L');

        $pdf->cell('0', 5, '          ', 0, 1, 'L');

        $pdf->cell('0', 5, 'Ref : Your letter of even no. Dated. : ', 0, 1, 'L');
        $pdf->Ln(5);

        if ($list == 2) {
            $list1 = 'second';
        } else {
            $list1 = 'first';
        }
        $pdf->MultiCell('0', 6, "With reference to the subject cited above, I am directed to convey the  {$list1} round  provisional admission approval of the University, to the following candidates admitted to First Semester degree courses in your college, during the academic year 2020-21 as the documents furnished to verification are found to be in order.", 0, 'L');
        $pdf->Ln(10);
        // var_dump($category);
        // return;
        $this->aobj_context->firstpage = 'false';

        // $pdf->AddPage();

        $pdf->SetFont('Times', '', 10);
        $table5 = '<style>
			td, th {
			    border: 0.5px solid black;
			}
		 </style>
		 <table cellpadding="2" cellspacing="0">
			';
        $table5 .= '<thead>';
        /* 		$table5 .='<tr nobr="true">';
		$table5 .= '<th width="100" align="left"><b>Degree</b></th>';
		$table5 .= '<th width="425" align="left"><b>'.$this->aobj_context->degree.'</b></th>';
		$table5 .= '</tr>';
		$table5 .='<tr  nobr="true">';
		$table5 .= '<th width="100" align="left"><b>Specialization</b></th>';
		$table5 .= '<th width="425" align="left"><b>'.$apprCollData[0]['FCOMBDESC'].'</b></th>';
		$table5 .= '</tr><br/>';
 */
        $table5 .= '<tr nobr="true">';
        $table5 .= '<th width="25" align="center"><b>Sl. No.</b></th>';
        $table5 .= '<th width="180" align="center"><b>Name of the Candidate</b></th>';
        $table5 .= '<th width="80" align="center"><b>Register No.</b></th>';
        $table5 .= '<th width="80" align="center"><b>Student ID</b></th>';
        $table5 .= '<th width="80" align="center"><b>Language</b></th>';
        $table5 .= '<th width="80" align="center"><b>Admission ID</b></th>';
        $table5 .= '</tr>';
        $table5 .= '</thead>';

        $i = 0;
        $j = 0;
        $ltmpcombcode = '';
        $ltmpdeg = '';
        $first = 1;
        //var_dump($apprCollData[0]['fapprremarks']);
        foreach ($apprCollData as $key => $value) {
            $lcombcode = $value['fdegree'] . $value['FCOMBDESC'];
            $ldeg = $value['fdegree'];

            if ($lcombcode != $ltmpcombcode) {
                $table5 .= '<br><tr nobr="true">';
                $table5 .= '<th width="100" align="left"><b>Degree</b></th>';
                $table5 .= '<th width="425" align="left"><b>' . $value['fdescpn'] . '</b></th>';
                $table5 .= '</tr>';
                $table5 .= '<tr  nobr="true">';
                $table5 .= '<th width="100" align="left"><b>Specialization</b></th>';
                $table5 .= '<th width="425" align="left"><b>' . $value['FCOMBDESC'] . '</b></th>';
                $table5 .= '</tr>';
                $i = 0;
                $j = $j + 3;
            }

            $ltmpcombcode = $value['fdegree'] . $value['FCOMBDESC'];

            //var_dump($value['fregno']);
            $table5 .= '<tr nobr="true">';
            $table5 .= '<td width="25" align="center">' . ++$i . '</td>';
            $table5 .= '<td width="180" align="left">' . $value['fname'] . '</td>';
            $table5 .= '<td width="80" align="center">' . $value['fregno'] . '</td>';
            $table5 .= '<td width="80" align="center">' . $value['fstudid'] . '</td>';
            $table5 .= '<td width="80" align="center">' . $value['fsubcode'] . '</td>';
            $table5 .= '<td width="80" align="center">' . $value['fappno'] . '</td>';
            $table5 .= '</tr>';

            if ($j >= 35 || ($j == 20 && $first == 1)) {
                $first = 0;
                $table5 .= '</table>';
                $pdf->writeHTML($table5, false, false, true, false, 'L');
                if ($ltmpdeg != $ldeg) {
                    $pdf->AddPage("P");
                }

                $ltmpdeg = $value['fdegree'];

                $pdf->SetFont('Times', '', 10);
                $table5 = '<style>
					td, th {
					    border: 0.5px solid black;
					}
				 </style>
				 <table cellpadding="2" cellspacing="0">
					';
                $table5 .= '<thead>';
                $table5 .= '<tr nobr="true">';
                $table5 .= '<th width="25" align="center"><b>Sl. No.</b></th>';
                $table5 .= '<th width="180" align="center"><b>Name of the Candidate</b></th>';
                $table5 .= '<th width="80" align="center"><b>Register No.</b></th>';
                $table5 .= '<th width="80" align="center"><b>Student ID</b></th>';
                $table5 .= '<th width="80" align="center"><b>Language</b></th>';
                $table5 .= '<th width="80" align="center"><b>Admission ID</b></th>';
                $table5 .= '</tr>';
                $table5 .= '<br><tr nobr="true">';
                $pdf->SetFont('Times', '', 12);
                $table5 .= '<th width="100" align="left"><b>Degree</b></th>';
                $table5 .= '<th width="425" align="left"><b>' . $value['fdescpn'] . '</b></th>';
                $table5 .= '</tr>';
                $table5 .= '<tr  nobr="true">';
                $table5 .= '<th width="100" align="left"><b>Specialization</b></th>';
                $table5 .= '<th width="425" align="left"><b>' . $value['FCOMBDESC'] . '</b></th>';
                $table5 .= '</tr><br/>';
                $pdf->SetFont('Times', '', 10); //style="font-weight:bolder"	
                $table5 .= '</thead>';
                $j = 0;
            }
            $j++;
        }
        if ($j >= 1) {
            $table5 .= '</table>';
            //$pdf->SetX(12);
            // var_dump($table5);
            $pdf->writeHTML($table5, false, false, true, false, 'L');
        }

        $this->aobj_context->notappr = 'Not Approved';
        //	$pdf->AddPage("P");
        $pdf->Ln(5);
        $pdf->SetFont('Times', 'B', 12);
        $pdf->cell(0, 6, 'Admission Not Approved List', 0, 1, 'C');
        $pdf->Ln(5);
        $pdf->SetFont('Times', '', 10);
        $pdf->SetFont('Times', '', 10);
        $table5 = '<style>
			td, th {
			    border: 0.5px solid black;
			}
		 </style>
		 <table cellpadding="2" cellspacing="0">
			';
        $table5 .= '<thead>';
        $table5 .= '<tr nobr="true">';
        $table5 .= '<th width="25" align="center"><b>Sl. No.</b></th>';
        $table5 .= '<th width="140" align="center"><b>Name of the Candidate</b></th>';
        $table5 .= '<th width="70" align="center"><b>Register No.</b></th>';
        $table5 .= '<th width="70" align="center"><b>Student ID</b></th>';
        $table5 .= '<th width="70" align="center"><b>Language</b></th>';
        $table5 .= '<th width="80" align="center"><b>Admission ID</b></th>';
        $table5 .= '<th width="70" align="center"><b>Remarks</b></th>';
        $table5 .= '</tr>';
        $table5 .= '</thead>';

        $i = 0;
        $j = 0;
        $ltmpcombcode = '';
        $ltmpdeg = '';
        $first = 1;
        //var_dump(count($apprNotCollData));
        foreach ($apprNotCollData as $key => $value) {
            $lcombcode = $value['fdegree'] . $value['FCOMBDESC'];
            $ldeg = $value['fdegree'];
            //var_dump($lcombcode);
            //	var_dump($ltmpcombcode);
            if ($lcombcode != $ltmpcombcode) {
                $table5 .= '<br><tr nobr="true">';
                $table5 .= '<th width="100" align="left"><b>Degree</b></th>';
                $table5 .= '<th width="425" align="left"><b>' . $value['fdescpn'] . '</b></th>';
                $table5 .= '</tr>';
                $table5 .= '<tr  nobr="true">';
                $table5 .= '<th width="100" align="left"><b>Specialization</b></th>';
                $table5 .= '<th width="425" align="left"><b>' . $value['FCOMBDESC'] . '</b></th>';
                $table5 .= '</tr>';
                $i = 0;
                $j = $j + 3;
            }

            $ltmpcombcode = $value['fdegree'] . $value['FCOMBDESC'];
            //var_dump($value['fregno']);
            $table5 .= '<tr nobr="true">';
            $table5 .= '<td width="25" align="center">' . ++$i . '</td>';
            $table5 .= '<td width="140" align="left">' . $value['fname'] . '</td>';
            $table5 .= '<td width="70" align="center"></td>';
            $table5 .= '<td width="70" align="center"></td>';
            $table5 .= '<td width="70" align="center">' . $value['fsubcode'] . '</td>';
            $table5 .= '<td width="80" align="center">' . $value['fappno'] . '</td>';
            $table5 .= '<td width="70" align="center">' . $value['fapprremarks'] . '</td>';
            $table5 .= '</tr>';

            if ($j == 35) {
                $first = 0;
                $table5 .= '</table>';
                $pdf->writeHTML($table5, false, false, true, false, 'L');
                if ($ltmpdeg != $ldeg) {
                    $pdf->AddPage("P");
                }

                $ltmpdeg = $value['fdegree'];

                $pdf->SetFont('Times', '', 10);
                $table5 = '<style>
					td, th {
					    border: 0.5px solid black;
					}
				 </style>
				 <table cellpadding="2" cellspacing="0">
					';
                $table5 .= '<thead>';

                $table5 .= '<br><tr nobr="true">';
                $table5 .= '<th width="100" align="left"><b>Degree</b></th>';
                $table5 .= '<th width="425" align="left"><b>' . $value['fdescpn'] . '</b></th>';
                $table5 .= '</tr>';
                $table5 .= '<tr  nobr="true">';
                $table5 .= '<th width="100" align="left"><b>Specialization</b></th>';
                $table5 .= '<th width="425" align="left"><b>' . $value['FCOMBDESC'] . '</b></th>';
                $table5 .= '</tr><br/>';
                $table5 .= '</thead>';
                $j = 0;
            }

            $j++;
        }
        if ($j >= 1) {
            $table5 .= '</table>';
            //$pdf->SetX(12);
            // var_dump($table5);
            $pdf->writeHTML($table5, false, false, true, false, 'L');
        }

        if ($apprCollData[0]['fapprremarks'] != '') {
            $pdf->Ln(10);
            $pdf->SetFont('Times', 'B', 10);
            // $pdf->MultiCell(180,5,'Remarks : '.$apprCollData[0]['fapprremarks'],0,'L');
        }

        if ($pdf->getY() > 250) {
            $pdf->AddPage("P");
        }
        $pdf->Ln(10);
        $pdf->Cell(0, '6', 'Yours faithfully', 0, 1, 'R');
        $pdf->Ln(10);
        $pdf->SetFont('Times', 'B', 10);
        $pdf->Cell(0, '6', 'Registrar', 0, 1, 'R');
        $pdf->SetFont('Times', '', 10);
        $pdf->Ln(10);
        $pdf->Cell(0, '6', 'Copy to: The Registrar (Evaluation), Rani Channamma University, Belagavi for further needful', 0, 1, 'L');
    }

    function SendOutput()
    {
        ob_end_clean();
        $this->pdf->Output("approval_report.pdf", "D");
    }
}

function PrintApprovalList($aobj_context)
{
    $aobj_context->mobj_db->SetFetchMode(ADODB_FETCH_ASSOC);

    $degree = $aobj_context->mobj_data["fdegree"];
    $collcode = $aobj_context->mobj_data["fcollcode"];
    $combcode = $aobj_context->mobj_data["fcombcode"];
    $examno = $aobj_context->mobj_data["examno"];
    $deggrp = $aobj_context->mobj_data["deggrp"];

    $cnd = "AND d.fdeggrp = '{$deggrp}'";

    if ($deggrp == 'MBA/MCA')
        $cnd = "and d.fdegree in ('MBA1', 'MCA1', 'MBE1' )";

    $list = $aobj_context->mobj_data["list"];

    if ($list == 1) {
        $first_list = "and s.fadmrnd <> '2'";
    } else if ($list == 2) {
        $first_list = "and s.fadmrnd = '2'";
    } else {
        $first_list = "";
    }


    $degcond = '';
    if (strtolower($degree) != 'all') {
        $degcond = "and s.fdegree = '{$degree}'";
    }
    $combcond = '';
    if ($combcode != 'all') {
        $combcond = "and s.fcombcode = '{$combcode}'";
    }

    $admCollDataQuery = "select s.fappno, s.fcollcode, s.fdegree, d.fdescpn, s.fcombcode,'{$deggrp}' as fdeggrp,
	m.FCOMBDESC, upper(trim(s.fname)) as fname, ifnull(s.faregno,'') as  fregno,
	ifnull(s.fstudid,'') as fstudid,
	GROUP_CONCAT(DISTINCT ifnull(s.FAPPRREMARKS,'') separator '') AS fapprremarks,
	GROUP_CONCAT(DISTINCT ifnull(su.fsubname,'') separator '') AS fsubcode
	FROM studadm s
	inner join degree d on s.fdegree = d.fdegree and s.fexamno = '{$examno}'
	INNER JOIN options o ON s.fappno = o.fappno AND s.fdegree = o.fdegree 
	AND s.fcollcode = o.fcollcode
	left  join subject su ON s.fdegree = su.fdegree AND o.fexamno = su.fexamno 
	AND o.fsubcode = su.fsubcode AND
	IFNULL(su.fintass,'') <> 'T' AND su.fsubcode BETWEEN 'A002' AND 'A015'
	INNER JOIN mascomb m ON s.fdegree = m.fdegree AND m.fcombcode = s.fcombcode
	WHERE IFNULL(s.FAPPRSTATUS,'') = 'Approved'  {$cnd}
	and s.fcollcode = '{$collcode}' and IFNULL(s.FAPPSTATUS,'') = 'verified'
	and ifnull(s.fdeleted,'') <> 'T' and IFNULL(s.ffinsub,'') = 'T'
	{$first_list} {$degcond} 
	GROUP BY s.fappno 
	ORDER BY s.fdegree,s.fcombcode,s.fname,s.fappno";
    $apprCollData = $aobj_context->mobj_db->GetAll($admCollDataQuery);

    // var_dump($admCollDataQuery);
    // die();

    $admNotCollDataQuery = "select s.fappno, s.fcollcode, s.fdegree, d.fdescpn, s.fcombcode,'{$deggrp}' as fdeggrp,
	m.FCOMBDESC, upper(trim(s.fname)) as fname, ifnull(s.faregno,'') as  fregno,s.fnaremarks,
	ifnull(s.fstudid,'') as fstudid,
	GROUP_CONCAT(DISTINCT ifnull(su.fsubname,'') separator '') AS fsubcode,
	GROUP_CONCAT(DISTINCT ifnull(s.FAPPRREMARKS,'') separator '') AS fapprremarks
	FROM studadm s
	inner join degree d on s.fdegree = d.fdegree and s.fexamno = '{$examno}'
	INNER JOIN options o ON s.fappno = o.fappno AND s.fdegree = o.fdegree 
	AND s.fcollcode = o.fcollcode
	left  join subject su ON s.fdegree = su.fdegree AND o.fexamno = su.fexamno 
	AND o.fsubcode = su.fsubcode AND
	IFNULL(su.fintass,'') <> 'T' AND su.fsubcode BETWEEN 'A002' AND 'A015'
	INNER JOIN mascomb m ON s.fdegree = m.fdegree AND m.fcombcode = s.fcombcode
	WHERE IFNULL(s.FAPPRSTATUS,'') <> 'APPROVED'  {$cnd}
	and s.fcollcode = '{$collcode}' and IFNULL(s.FAPPSTATUS,'') = 'verified'
	and ifnull(s.fdeleted,'') <> 'T' and IFNULL(s.ffinsub,'') = 'T' {$degcond}
	GROUP BY s.fappno 
	ORDER BY s.fdegree,s.fcombcode,s.fname,s.fappno";
    // var_dump($admNotCollDataQuery);die();

    $apprNotCollData = $aobj_context->mobj_db->GetAll($admNotCollDataQuery);


    $query = "select c.*,date_format(now(),'%d/%m/%Y') as fdate, d.*
	from college c, deggrp d where fcollcode = '{$collcode}' and ifnull(c.fdeleted,'') <>'T' 
	and d.fdeggrp = '{$deggrp}'";
    $apprColldet = $aobj_context->mobj_db->GetRow($query);



    $class_obj = new AddmissionApplication();

    $class_obj->DefaultConstructor($aobj_context);

    $class_obj->writeReport($apprCollData, $apprColldet, $apprNotCollData);

    $class_obj->SendOutput();
}