ok
Direktori : /home2/selectio/www/lilyexpresslive/software/admin/excel/ |
Current File : /home2/selectio/www/lilyexpresslive/software/admin/excel/excel-delivery-report.php |
<?php ini_set('memory_limit', '-1'); include("../inc/config.php"); $from = $_POST['fromm']; $to = $_POST['too']; $client_id = $_POST['client_ids']; 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='delivered' 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='delivered' 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=Delivery_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); ?>