ok

Mini Shell

Direktori : /home2/selectio/www/lilyexpresslive/software/admin/excel/
Upload File :
Current File : /home2/selectio/www/lilyexpresslive/software/admin/excel/excel-client-wise-report.php

<?php
include("../inc/config.php");

 $from = $_POST['fromm'];
    $to = $_POST['too'];
    $status = $_POST['set_statuss'];
    $client_id = $_POST['client_ids'];

   if($status=='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' order by pickup_entry.id DESC");   
    }
    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.client_id='$client_id' and pickup_entry.status='$status' order by pickup_entry.id DESC");   
    }
        
            	
            	
            	
            	
            	$statement->execute();
            	$result = $statement->fetchAll(PDO::FETCH_ASSOC);	
            	




	$now = gmdate("YmdHis");
		header('Content-Type: text/csv; charset=utf-8');  
		header('Content-Disposition: attachment; filename=Client_Wise_Report'.$now.'.csv');  
		$output = fopen("php://output", "w");  
		fputcsv($output, array('SL', 'AWB Number', 'Ref Number', 'status', 'Company Name', 'Address', '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['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['pincode'],$row['phone'],$row['a_weight'],$row['c_weight'],$row['pics'],$day,$row['cust_name']));
        		    $i++;
                    }
		} 
		fclose($output);




?>

Zerion Mini Shell 1.0