����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 3.144.88.107 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/app6/report/ |
Upload File : |
<?php /** Error reporting */ error_reporting(E_ALL); ini_set('display_errors', TRUE); ini_set('display_startup_errors', TRUE); include "../core/autoload.php"; include "../core/app/model/PersonData.php"; include "../core/app/model/PaymentData.php"; include "../core/app/model/PaymentTypeData.php"; /** Include PHPExcel */ //require_once dirname(__FILE__) . '/../Classes/PHPExcel.php'; require_once '../core/controller/PHPExcel/Classes/PHPExcel.php'; // Create new PHPExcel object $objPHPExcel = new PHPExcel(); $products = array(); if(isset($_GET["client_id"]) && $_GET["client_id"]!=""){ $products = PaymentData::getAllByDateAndClient($_GET["sd"],$_GET["ed"],$_GET["client_id"]); }else{ $products = PaymentData::getAllByDate($_GET["sd"],$_GET["ed"]); } // Set document properties $objPHPExcel->getProperties()->setCreator("Inventio Max v4.1") ->setLastModifiedBy("Inventio Max v4.1") ->setTitle("Inventio Max v4.1") ->setSubject("Inventio Max v4.1") ->setDescription("") ->setKeywords("") ->setCategory(""); // Add some data $sheet = $objPHPExcel->setActiveSheetIndex(0); $t=0; foreach($products as $product){ $t+=$product->val; } $sheet->setCellValue('A1', 'Reporte de Pagos - Inventio Max') ->setCellValue('A2',"Total Recaudado: $". number_format(abs($t),2,".",",")) ->setCellValue('A5', 'Cliente') ->setCellValue('B5', 'Valor') ->setCellValue('C5', 'Fecha'); $start = 6; foreach($products as $product){ $cli = $product->getClient(); $sheet->setCellValue('A'.$start, $cli->name." ".$cli->lastname) ->setCellValue('B'.$start, "$ ".number_format(abs($product->val),2,".",",")) ->setCellValue('C'.$start, $product->created_at); $start++; } // Set active sheet index to the first sheet, so Excel opens this as the first sheet $objPHPExcel->setActiveSheetIndex(0); // Redirect output to a client’s web browser (Excel2007) header('Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet'); header('Content-Disposition: attachment;filename="paymentreport-'.time().'.xlsx"'); header('Cache-Control: max-age=0'); // If you're serving to IE 9, then the following may be needed header('Cache-Control: max-age=1'); // If you're serving to IE over SSL, then the following may be needed header ('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past header ('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT'); // always modified header ('Cache-Control: cache, must-revalidate'); // HTTP/1.1 header ('Pragma: public'); // HTTP/1.0 $objWriter = PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007'); $objWriter->save('php://output'); exit;