ok

Mini Shell

Direktori : /home2/selectio/www/lilyexpresslive/software/admin/excel/
Upload File :
Current File : /home2/selectio/www/lilyexpresslive/software/admin/excel/excel_pending_report.php

<?php
ini_set('memory_limit', '-1');
include("../inc/config.php");
    
    $clientType=$_REQUEST['client_type'];
    $client_id=$_REQUEST['client_id'];
    $from=$_REQUEST['from'];
    $status=$_REQUEST['status'];
    $to=$_REQUEST['to'];

    if($client_id!='all')
            {
                $statement = $pdo->prepare("SELECT pickup_entry.*,tbl_user.full_name as client_name,pickup_entry.created_at as added,tbl_customer.cust_code as cust_code,
    	       material_desc.full_desc as content,tbl_customer.cust_name as cust_name FROM pickup_entry INNER JOIN tbl_user INNER JOIN tbl_customer INNER JOIN material_desc 
    	       on pickup_entry.client_id=tbl_user.id AND pickup_entry.content_desc=material_desc.id AND pickup_entry.customer_id=tbl_customer.cust_id 
    	       where pickup_entry.client_id='$client_id' and pickup_entry.status='$status' order by pickup_entry.id DESC"); 
            	$statement->execute();
            	$result = $statement->fetchAll(PDO::FETCH_ASSOC);	
            	$total_count = $statement->rowCount();
                $i=1;
            }
            else
            {
                 $statement = $pdo->prepare("SELECT pickup_entry.*,tbl_user.full_name as client_name,pickup_entry.created_at as added,tbl_customer.cust_code as cust_code,
    	       material_desc.full_desc as content,tbl_customer.cust_name as cust_name FROM pickup_entry INNER JOIN tbl_user INNER JOIN tbl_customer INNER JOIN material_desc 
    	       on pickup_entry.client_id=tbl_user.id AND pickup_entry.content_desc=material_desc.id AND pickup_entry.customer_id=tbl_customer.cust_id 
    	       where pickup_entry.status='$status' order by pickup_entry.id DESC");   
  
            	$statement->execute();
            	$result = $statement->fetchAll(PDO::FETCH_ASSOC);	
            	$total_count = $statement->rowCount();
                $i=1;
                
            }
            	




	$now = gmdate("YmdHis");
		header('Content-Type: text/csv; charset=utf-8');  
		header('Content-Disposition: attachment; filename='.$status.'-Pickup-Entry--'.$now.'.csv');  
		$output = fopen("php://output", "w");  
		fputcsv($output, array('SL', 'AWB Number', 'Ref Number', 'Status', 'Company Name', 'Address', 'Destination','Pincode', 'Mobile', 'Actual Weight', 'Charged Weight', 'No.Of Pics', 'Date Added', 'Customer Name'));  
        $i=1;
		foreach ($result as $row) {
		    $date=date_create($row['created_at']);
			 $day=date_format($date,'d-m-Y');
			 
			  
			   $created=date_create($row['created_at']);
                     $da=date_format($created,'Y-m-d');
                     
                     if($from!='' && $to!=''){
                     if ($from <= $da && $to >= $da)
                    {
        			fputcsv($output, array($i,$row['ref_no'],$row['cust_code'],$row['status'],$row['client_name'],$row['address'],$row['destination'],$row['pincode'],$row['phone'],$row['a_weight'],$row['c_weight'],$row['pics'],$day,$row['cust_name']));
        		    $i++;
                    }
                     }
                    else
                    {
                    fputcsv($output, array($i,$row['ref_no'],$row['cust_code'],$row['status'],$row['client_name'],$row['address'],$row['destination'],$row['pincode'],$row['phone'],$row['a_weight'],$row['c_weight'],$row['pics'],$day,$row['cust_name']));
        		    $i++;
                    }
		} 
		fclose($output);
?>

Zerion Mini Shell 1.0