snipe-it/app/Http/Controllers/ReportsController.php

1183 lines
44 KiB
PHP
Raw Normal View History

2016-03-25 01:18:05 -07:00
<?php
2016-03-25 01:18:05 -07:00
namespace App\Http\Controllers;
use App\Helpers\Helper;
2016-03-25 01:18:05 -07:00
use App\Models\Accessory;
use App\Models\Actionlog;
use App\Models\Asset;
use App\Models\AssetMaintenance;
use App\Models\CheckoutAcceptance;
use App\Models\CustomField;
use App\Models\Depreciation;
use App\Models\License;
use App\Models\Setting;
use App\Notifications\CheckoutAssetNotification;
use Carbon\Carbon;
2021-05-20 21:19:04 -07:00
use Illuminate\Auth\Access\AuthorizationException;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Notification;
2016-03-25 01:18:05 -07:00
use Illuminate\Support\Facades\Response;
use Illuminate\Support\Facades\View;
use Input;
use League\Csv\Reader;
2016-09-12 14:06:55 -07:00
use Symfony\Component\HttpFoundation\StreamedResponse;
2016-03-25 01:18:05 -07:00
2016-04-07 13:21:09 -07:00
/**
* This controller handles all actions related to Reports for
* the Snipe-IT Asset Management application.
*
* @version v1.0
*/
2016-03-25 01:18:05 -07:00
class ReportsController extends Controller
{
/**
* Checks for correct permissions
*/
public function __construct()
{
parent::__construct();
}
2016-03-25 01:18:05 -07:00
/**
2016-09-28 22:57:19 -07:00
* Returns a view that displays the accessories report.
*
* @author [A. Gianotto] [<snipe@snipe.net>]
* @since [v1.0]
* @return View
*/
2016-03-25 01:18:05 -07:00
public function getAccessoryReport()
{
$this->authorize('reports.view');
2016-03-25 01:18:05 -07:00
$accessories = Accessory::orderBy('created_at', 'DESC')->with('company')->get();
return view('reports/accessories', compact('accessories'));
2016-03-25 01:18:05 -07:00
}
/**
* Exports the accessories to CSV
*
* @deprecated Server-side exports have been replaced by datatables export since v2.
* @author [A. Gianotto] [<snipe@snipe.net>]
* @see ManufacturersController::getDatatable() method that generates the JSON response
* @since [v1.0]
2016-04-07 17:08:38 -07:00
* @return \Illuminate\Http\Response
*/
2016-03-25 01:18:05 -07:00
public function exportAccessoryReport()
{
$this->authorize('reports.view');
2016-03-25 01:18:05 -07:00
$accessories = Accessory::orderBy('created_at', 'DESC')->get();
$rows = [];
$header = [
trans('admin/accessories/table.title'),
trans('admin/accessories/general.accessory_category'),
trans('admin/accessories/general.total'),
trans('admin/accessories/general.remaining'),
];
2016-03-25 01:18:05 -07:00
$header = array_map('trim', $header);
2021-07-16 15:07:51 -07:00
$rows[] = implode(', ', $header);
2016-03-25 01:18:05 -07:00
// Row per accessory
foreach ($accessories as $accessory) {
$row = [];
2016-03-25 15:24:12 -07:00
$row[] = e($accessory->accessory_name);
$row[] = e($accessory->accessory_category);
$row[] = e($accessory->total);
$row[] = e($accessory->remaining);
2016-03-25 01:18:05 -07:00
2021-07-16 15:07:51 -07:00
$rows[] = implode(',', $row);
2016-03-25 01:18:05 -07:00
}
2021-07-16 15:07:51 -07:00
$csv = implode("\n", $rows);
2016-03-25 01:18:05 -07:00
$response = Response::make($csv, 200);
$response->header('Content-Type', 'text/csv');
$response->header('Content-disposition', 'attachment;filename=report.csv');
return $response;
}
2018-05-02 14:13:06 -07:00
2016-03-25 01:18:05 -07:00
/**
2016-04-07 17:08:38 -07:00
* Show depreciation report for assets.
*
* @author [A. Gianotto] [<snipe@snipe.net>]
* @since [v1.0]
* @return View
*/
2016-03-25 01:18:05 -07:00
public function getDeprecationReport()
{
$this->authorize('reports.view');
$depreciations = Depreciation::get();
return view('reports/depreciation')->with('depreciations',$depreciations);
2016-03-25 01:18:05 -07:00
}
/**
2016-04-07 17:08:38 -07:00
* Exports the depreciations to CSV
*
* @deprecated Server-side exports have been replaced by datatables export since v2.
* @author [A. Gianotto] [<snipe@snipe.net>]
* @since [v1.0]
* @return \Illuminate\Http\Response
*/
2016-03-25 01:18:05 -07:00
public function exportDeprecationReport()
{
$this->authorize('reports.view');
2016-03-25 01:18:05 -07:00
// Grab all the assets
2016-12-29 06:31:16 -08:00
$assets = Asset::with('model', 'assignedTo', 'assetstatus', 'defaultLoc', 'assetlog')
2016-03-25 01:18:05 -07:00
->orderBy('created_at', 'DESC')->get();
$csv = \League\Csv\Writer::createFromFileObject(new \SplTempFileObject());
$csv->setOutputBOM(Reader::BOM_UTF16_BE);
$rows = [];
2016-03-25 01:18:05 -07:00
// Create the header row
$header = [
trans('admin/hardware/table.asset_tag'),
trans('admin/hardware/table.title'),
trans('admin/hardware/table.serial'),
trans('admin/hardware/table.checkoutto'),
trans('admin/hardware/table.location'),
trans('admin/hardware/table.purchase_date'),
trans('admin/hardware/table.purchase_cost'),
trans('admin/hardware/table.book_value'),
trans('admin/hardware/table.diff'),
2016-03-25 01:18:05 -07:00
];
//we insert the CSV header
$csv->insertOne($header);
// Create a row per asset
foreach ($assets as $asset) {
$row = [];
2016-03-25 15:24:12 -07:00
$row[] = e($asset->asset_tag);
$row[] = e($asset->name);
$row[] = e($asset->serial);
2016-03-25 01:18:05 -07:00
2016-12-27 16:24:41 -08:00
if ($target = $asset->assignedTo) {
$row[] = e($target->present()->name());
2016-03-25 01:18:05 -07:00
} else {
$row[] = ''; // Empty string if unassigned
}
if (($asset->assigned_to > 0) && ($location = $asset->location)) {
2016-03-25 01:18:05 -07:00
if ($location->city) {
$row[] = e($location->city).', '.e($location->state);
2016-03-25 01:18:05 -07:00
} elseif ($location->name) {
2016-03-25 15:24:12 -07:00
$row[] = e($location->name);
2016-03-25 01:18:05 -07:00
} else {
$row[] = '';
}
} else {
$row[] = ''; // Empty string if location is not set
}
if ($asset->location) {
$currency = e($asset->location->currency);
2016-03-25 01:18:05 -07:00
} else {
$currency = e(Setting::getSettings()->default_currency);
2016-03-25 01:18:05 -07:00
}
$row[] = $asset->purchase_date;
$row[] = $currency.Helper::formatCurrencyOutput($asset->purchase_cost);
$row[] = $currency.Helper::formatCurrencyOutput($asset->getDepreciatedValue());
$row[] = $currency.Helper::formatCurrencyOutput(($asset->purchase_cost - $asset->getDepreciatedValue()));
2016-03-25 01:18:05 -07:00
$csv->insertOne($row);
}
$csv->output('depreciation-report-'.date('Y-m-d').'.csv');
2016-03-25 01:18:05 -07:00
die;
}
/**
* Displays audit report.
*
* @author [A. Gianotto] [<snipe@snipe.net>]
* @since [v4.0]
* @return View
*/
public function audit()
{
$this->authorize('reports.view');
return view('reports/audit');
}
2016-03-25 01:18:05 -07:00
/**
2016-04-07 17:08:38 -07:00
* Displays activity report.
*
* @author [A. Gianotto] [<snipe@snipe.net>]
* @since [v1.0]
* @return View
*/
2016-03-25 01:18:05 -07:00
public function getActivityReport()
{
$this->authorize('reports.view');
return view('reports/activity');
2016-03-25 01:18:05 -07:00
}
/**
* Exports the activity report to CSV
*
* @author [A. Gianotto] [<snipe@snipe.net>]
* @since [v5.0.7]
* @return \Illuminate\Http\Response
*/
public function postActivityReport(Request $request)
{
ini_set('max_execution_time', 12000);
$this->authorize('reports.view');
\Debugbar::disable();
$response = new StreamedResponse(function () {
\Log::debug('Starting streamed response');
// Open output stream
$handle = fopen('php://output', 'w');
stream_set_timeout($handle, 2000);
$header = [
trans('general.date'),
trans('general.admin'),
trans('general.action'),
trans('general.type'),
trans('general.item'),
'To',
trans('general.notes'),
'Changed',
];
$executionTime = microtime(true) - $_SERVER['REQUEST_TIME_FLOAT'];
\Log::debug('Starting headers: '.$executionTime);
fputcsv($handle, $header);
$executionTime = microtime(true) - $_SERVER['REQUEST_TIME_FLOAT'];
\Log::debug('Added headers: '.$executionTime);
$actionlogs = Actionlog::with('item', 'user', 'target', 'location')
->orderBy('created_at', 'DESC')
->chunk(20, function ($actionlogs) use ($handle) {
$executionTime = microtime(true) - $_SERVER['REQUEST_TIME_FLOAT'];
\Log::debug('Walking results: '.$executionTime);
$count = 0;
foreach ($actionlogs as $actionlog) {
$count++;
$target_name = '';
if ($actionlog->target) {
if ($actionlog->targetType() == 'user') {
$target_name = $actionlog->target->getFullNameAttribute();
} else {
$target_name = $actionlog->target->getDisplayNameAttribute();
}
}
if($actionlog->item){
$item_name = e($actionlog->item->getDisplayNameAttribute());
} else {
$item_name = '';
}
$row = [
$actionlog->created_at,
($actionlog->user) ? e($actionlog->user->getFullNameAttribute()) : '',
$actionlog->present()->actionType(),
e($actionlog->itemType()),
($actionlog->itemType() == 'user') ? $actionlog->filename : $item_name,
$target_name,
($actionlog->note) ? e($actionlog->note) : '',
$actionlog->log_meta,
];
fputcsv($handle, $row);
}
});
// Close the output stream
fclose($handle);
$executionTime = microtime(true) - $_SERVER['REQUEST_TIME_FLOAT'];
\Log::debug('-- SCRIPT COMPLETED IN '.$executionTime);
}, 200, [
'Content-Type' => 'text/csv',
'Content-Disposition' => 'attachment; filename="activity-report-'.date('Y-m-d-his').'.csv"',
]);
return $response;
}
2016-09-28 22:57:19 -07:00
/**
* Displays license report
*
* @author [A. Gianotto] [<snipe@snipe.net>]
* @since [v1.0]
* @return View
*/
2016-03-25 01:18:05 -07:00
public function getLicenseReport()
{
$this->authorize('reports.view');
2016-09-28 22:57:19 -07:00
$licenses = License::with('depreciation')->orderBy('created_at', 'DESC')
2016-03-25 01:18:05 -07:00
->with('company')
->get();
return view('reports/licenses', compact('licenses'));
2016-03-25 01:18:05 -07:00
}
/**
2016-04-07 17:08:38 -07:00
* Exports the licenses to CSV
*
* @deprecated Server-side exports have been replaced by datatables export since v2.
* @author [A. Gianotto] [<snipe@snipe.net>]
* @since [v1.0]
* @return \Illuminate\Http\Response
*/
2016-03-25 01:18:05 -07:00
public function exportLicenseReport()
{
$this->authorize('reports.view');
2016-03-25 01:18:05 -07:00
$licenses = License::orderBy('created_at', 'DESC')->get();
$rows = [];
$header = [
trans('admin/licenses/table.title'),
trans('admin/licenses/table.serial'),
trans('admin/licenses/form.seats'),
trans('admin/licenses/form.remaining_seats'),
trans('admin/licenses/form.expiration'),
2016-11-29 08:46:33 -08:00
trans('general.purchase_date'),
trans('general.depreciation'),
trans('general.purchase_cost'),
2016-03-25 01:18:05 -07:00
];
$header = array_map('trim', $header);
2021-07-16 15:07:51 -07:00
$rows[] = implode(', ', $header);
2016-03-25 01:18:05 -07:00
// Row per license
foreach ($licenses as $license) {
$row = [];
2016-03-25 15:24:12 -07:00
$row[] = e($license->name);
$row[] = e($license->serial);
$row[] = e($license->seats);
2016-03-25 01:18:05 -07:00
$row[] = $license->remaincount();
$row[] = $license->expiration_date;
$row[] = $license->purchase_date;
$row[] = ($license->depreciation != '') ? '' : e($license->depreciation->name);
$row[] = '"'.Helper::formatCurrencyOutput($license->purchase_cost).'"';
2016-03-25 01:18:05 -07:00
2021-07-16 15:07:51 -07:00
$rows[] = implode(',', $row);
2016-03-25 01:18:05 -07:00
}
2021-07-16 15:07:51 -07:00
$csv = implode("\n", $rows);
2016-03-25 01:18:05 -07:00
$response = Response::make($csv, 200);
$response->header('Content-Type', 'text/csv');
$response->header('Content-disposition', 'attachment;filename=report.csv');
return $response;
}
2016-04-07 17:08:38 -07:00
/**
* Returns a form that allows the user to generate a custom CSV report.
*
* @author [A. Gianotto] [<snipe@snipe.net>]
* @see ReportsController::postCustomReport() method that generates the CSV
* @since [v1.0]
* @return \Illuminate\Http\Response
*/
2016-03-25 01:18:05 -07:00
public function getCustomReport()
{
$this->authorize('reports.view');
$customfields = CustomField::get();
return view('reports/custom')->with('customfields', $customfields);
2016-03-25 01:18:05 -07:00
}
2016-04-07 17:08:38 -07:00
/**
* Exports the custom report to CSV
*
* @author [A. Gianotto] [<snipe@snipe.net>]
* @see ReportsController::getCustomReport() method that generates form view
* @since [v1.0]
* @return \Illuminate\Http\Response
*/
public function postCustom(Request $request)
2016-03-25 01:18:05 -07:00
{
ini_set('max_execution_time', env('REPORT_TIME_LIMIT', 12000)); //12000 seconds = 200 minutes
$this->authorize('reports.view');
\Debugbar::disable();
$customfields = CustomField::get();
$response = new StreamedResponse(function () use ($customfields, $request) {
\Log::debug('Starting streamed response');
// Open output stream
$handle = fopen('php://output', 'w');
stream_set_timeout($handle, 2000);
2019-05-23 17:17:46 -07:00
if ($request->filled('use_bom')) {
fprintf($handle, chr(0xEF).chr(0xBB).chr(0xBF));
}
$header = [];
if ($request->filled('id')) {
$header[] = trans('general.id');
}
2019-05-23 17:17:46 -07:00
if ($request->filled('company')) {
$header[] = trans('general.company');
}
2019-05-23 17:17:46 -07:00
if ($request->filled('asset_name')) {
$header[] = trans('admin/hardware/form.name');
2016-03-25 01:18:05 -07:00
}
2019-05-23 17:17:46 -07:00
if ($request->filled('asset_tag')) {
$header[] = trans('admin/hardware/table.asset_tag');
2016-03-25 01:18:05 -07:00
}
2019-05-23 17:17:46 -07:00
if ($request->filled('model')) {
$header[] = trans('admin/hardware/form.model');
$header[] = trans('general.model_no');
2016-03-25 01:18:05 -07:00
}
2019-05-23 17:17:46 -07:00
if ($request->filled('category')) {
$header[] = trans('general.category');
}
2019-05-23 17:17:46 -07:00
if ($request->filled('manufacturer')) {
$header[] = trans('admin/hardware/form.manufacturer');
2016-03-25 01:18:05 -07:00
}
2019-05-23 17:17:46 -07:00
if ($request->filled('serial')) {
$header[] = trans('admin/hardware/table.serial');
2016-03-25 01:18:05 -07:00
}
2019-05-23 17:17:46 -07:00
if ($request->filled('purchase_date')) {
$header[] = trans('admin/hardware/table.purchase_date');
2016-03-25 01:18:05 -07:00
}
if (($request->filled('purchase_cost')) || ($request->filled('depreciation'))) {
$header[] = trans('admin/hardware/table.purchase_cost');
2016-03-25 01:18:05 -07:00
}
2019-05-23 17:17:46 -07:00
if ($request->filled('eol')) {
$header[] = trans('admin/hardware/table.eol');
}
2019-05-23 17:17:46 -07:00
if ($request->filled('order')) {
$header[] = trans('admin/hardware/form.order');
2016-03-25 01:18:05 -07:00
}
2019-05-23 17:17:46 -07:00
if ($request->filled('supplier')) {
$header[] = trans('general.supplier');
}
2019-05-23 17:17:46 -07:00
if ($request->filled('location')) {
$header[] = trans('admin/hardware/table.location');
}
2019-05-23 17:17:46 -07:00
if ($request->filled('location_address')) {
$header[] = trans('general.address');
$header[] = trans('general.address');
$header[] = trans('general.city');
$header[] = trans('general.state');
$header[] = trans('general.country');
$header[] = trans('general.zip');
}
2019-05-23 17:17:46 -07:00
if ($request->filled('rtd_location')) {
$header[] = trans('admin/hardware/form.default_location');
}
2019-05-23 17:17:46 -07:00
if ($request->filled('rtd_location_address')) {
$header[] = trans('general.address');
$header[] = trans('general.address');
$header[] = trans('general.city');
$header[] = trans('general.state');
$header[] = trans('general.country');
$header[] = trans('general.zip');
}
2019-05-23 17:17:46 -07:00
if ($request->filled('assigned_to')) {
$header[] = trans('admin/hardware/table.checkoutto');
$header[] = trans('general.type');
}
2019-05-23 17:17:46 -07:00
if ($request->filled('username')) {
$header[] = 'Username';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('employee_num')) {
$header[] = 'Employee No.';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('manager')) {
2018-06-27 00:45:09 -07:00
$header[] = trans('admin/users/table.manager');
}
2019-05-23 17:17:46 -07:00
if ($request->filled('department')) {
$header[] = trans('general.department');
}
2021-12-13 18:27:23 -08:00
if ($request->filled('title')) {
$header[] = trans('admin/users/table.title');
}
2019-05-23 17:17:46 -07:00
if ($request->filled('status')) {
$header[] = trans('general.status');
}
2019-05-23 17:17:46 -07:00
if ($request->filled('warranty')) {
$header[] = 'Warranty';
$header[] = 'Warranty Expires';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('depreciation')) {
$header[] = 'Value';
$header[] = 'Diff';
$header[] = 'Fully Depreciated';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('checkout_date')) {
$header[] = trans('admin/hardware/table.checkout_date');
}
2019-05-23 17:17:46 -07:00
if ($request->filled('expected_checkin')) {
$header[] = trans('admin/hardware/form.expected_checkin');
2016-03-25 01:18:05 -07:00
}
2019-05-23 17:17:46 -07:00
if ($request->filled('created_at')) {
$header[] = trans('general.created_at');
}
2019-05-23 17:17:46 -07:00
if ($request->filled('updated_at')) {
$header[] = trans('general.updated_at');
}
if ($request->filled('deleted_at')) {
$header[] = trans('general.deleted');
}
2019-05-23 17:17:46 -07:00
if ($request->filled('last_audit_date')) {
$header[] = trans('general.last_audit');
}
2019-05-23 17:17:46 -07:00
if ($request->filled('next_audit_date')) {
$header[] = trans('general.next_audit_date');
}
2019-05-23 17:17:46 -07:00
if ($request->filled('notes')) {
$header[] = trans('general.notes');
2016-03-25 01:18:05 -07:00
}
if ($request->filled('notes')) {
$header[] = trans('admin/manufacturers/table.url');
}
foreach ($customfields as $customfield) {
if ($request->input($customfield->db_column_name()) == '1') {
$header[] = $customfield->name;
2016-03-25 01:18:05 -07:00
}
}
$executionTime = microtime(true) - $_SERVER['REQUEST_TIME_FLOAT'];
\Log::debug('Starting headers: '.$executionTime);
fputcsv($handle, $header);
$executionTime = microtime(true) - $_SERVER['REQUEST_TIME_FLOAT'];
\Log::debug('Added headers: '.$executionTime);
$assets = \App\Models\Company::scopeCompanyables(Asset::select('assets.*'))->with(
'location', 'assetstatus', 'assetlog', 'company', 'defaultLoc', 'assignedTo',
'model.category', 'model.manufacturer', 'supplier');
2019-05-23 17:17:46 -07:00
if ($request->filled('by_location_id')) {
$assets->where('assets.location_id', $request->input('by_location_id'));
}
2017-11-06 10:44:18 -08:00
2019-05-23 17:17:46 -07:00
if ($request->filled('by_rtd_location_id')) {
$assets->where('assets.rtd_location_id', $request->input('by_rtd_location_id'));
}
2019-05-23 17:17:46 -07:00
if ($request->filled('by_supplier_id')) {
$assets->where('assets.supplier_id', $request->input('by_supplier_id'));
}
2019-05-23 17:17:46 -07:00
if ($request->filled('by_company_id')) {
$assets->where('assets.company_id', $request->input('by_company_id'));
2016-03-25 01:18:05 -07:00
}
2019-05-23 17:17:46 -07:00
if ($request->filled('by_model_id')) {
$assets->where('assets.model_id', $request->input('by_model_id'));
2016-03-25 01:18:05 -07:00
}
2019-05-23 17:17:46 -07:00
if ($request->filled('by_category_id')) {
$assets->InCategory($request->input('by_category_id'));
2016-03-25 01:18:05 -07:00
}
if ($request->filled('by_dept_id')) {
$assets->CheckedOutToTargetInDepartment($request->input('by_dept_id'));
}
2019-05-23 17:17:46 -07:00
if ($request->filled('by_manufacturer_id')) {
$assets->ByManufacturer($request->input('by_manufacturer_id'));
}
2019-05-23 17:17:46 -07:00
if ($request->filled('by_order_number')) {
$assets->where('assets.order_number', $request->input('by_order_number'));
}
2019-05-23 17:17:46 -07:00
if ($request->filled('by_status_id')) {
$assets->where('assets.status_id', $request->input('by_status_id'));
}
2019-05-23 17:17:46 -07:00
if (($request->filled('purchase_start')) && ($request->filled('purchase_end'))) {
$assets->whereBetween('assets.purchase_date', [$request->input('purchase_start'), $request->input('purchase_end')]);
}
2019-05-23 17:17:46 -07:00
if (($request->filled('created_start')) && ($request->filled('created_end'))) {
$assets->whereBetween('assets.created_at', [$request->input('created_start'), $request->input('created_end')]);
2017-02-03 02:20:56 -08:00
}
2019-05-23 17:17:46 -07:00
if (($request->filled('expected_checkin_start')) && ($request->filled('expected_checkin_end'))) {
$assets->whereBetween('assets.expected_checkin', [$request->input('expected_checkin_start'), $request->input('expected_checkin_end')]);
}
if (($request->filled('last_audit_start')) && ($request->filled('last_audit_end'))) {
$assets->whereBetween('assets.last_audit_date', [$request->input('last_audit_start'), $request->input('last_audit_end')]);
}
if (($request->filled('next_audit_start')) && ($request->filled('next_audit_end'))) {
$assets->whereBetween('assets.next_audit_date', [$request->input('next_audit_start'), $request->input('next_audit_end')]);
}
if ($request->filled('exclude_archived')) {
2022-07-12 12:20:11 -07:00
$assets->notArchived();
}
if ($request->input('deleted_assets') == '1') {
$assets->withTrashed();
}
if ($request->input('deleted_assets') == '0') {
$assets->onlyTrashed();
}
2022-07-12 09:46:44 -07:00
$assets->orderBy('assets.id', 'ASC')->chunk(20, function ($assets) use ($handle, $customfields, $request) {
$executionTime = microtime(true) - $_SERVER['REQUEST_TIME_FLOAT'];
\Log::debug('Walking results: '.$executionTime);
$count = 0;
foreach ($assets as $asset) {
$count++;
$row = [];
if ($request->filled('id')) {
$row[] = ($asset->id) ? $asset->id : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('company')) {
$row[] = ($asset->company) ? $asset->company->name : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('asset_name')) {
$row[] = ($asset->name) ? $asset->name : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('asset_tag')) {
$row[] = ($asset->asset_tag) ? $asset->asset_tag : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('model')) {
$row[] = ($asset->model) ? $asset->model->name : '';
$row[] = ($asset->model) ? $asset->model->model_number : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('category')) {
$row[] = (($asset->model) && ($asset->model->category)) ? $asset->model->category->name : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('manufacturer')) {
$row[] = ($asset->model && $asset->model->manufacturer) ? $asset->model->manufacturer->name : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('serial')) {
$row[] = ($asset->serial) ? $asset->serial : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('purchase_date')) {
$row[] = ($asset->purchase_date) ? $asset->purchase_date : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('purchase_cost')) {
$row[] = ($asset->purchase_cost) ? Helper::formatCurrencyOutput($asset->purchase_cost) : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('eol')) {
$row[] = ($asset->purchase_date != '') ? $asset->present()->eol_date() : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('order')) {
$row[] = ($asset->order_number) ? $asset->order_number : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('supplier')) {
2017-12-04 20:45:20 -08:00
$row[] = ($asset->supplier) ? $asset->supplier->name : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('location')) {
$row[] = ($asset->location) ? $asset->location->present()->name() : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('location_address')) {
$row[] = ($asset->location) ? $asset->location->address : '';
$row[] = ($asset->location) ? $asset->location->address2 : '';
$row[] = ($asset->location) ? $asset->location->city : '';
$row[] = ($asset->location) ? $asset->location->state : '';
$row[] = ($asset->location) ? $asset->location->country : '';
$row[] = ($asset->location) ? $asset->location->zip : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('rtd_location')) {
$row[] = ($asset->defaultLoc) ? $asset->defaultLoc->present()->name() : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('rtd_location_address')) {
$row[] = ($asset->defaultLoc) ? $asset->defaultLoc->address : '';
$row[] = ($asset->defaultLoc) ? $asset->defaultLoc->address2 : '';
$row[] = ($asset->defaultLoc) ? $asset->defaultLoc->city : '';
$row[] = ($asset->defaultLoc) ? $asset->defaultLoc->state : '';
$row[] = ($asset->defaultLoc) ? $asset->defaultLoc->country : '';
$row[] = ($asset->defaultLoc) ? $asset->defaultLoc->zip : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('assigned_to')) {
$row[] = ($asset->checkedOutToUser() && $asset->assigned) ? $asset->assigned->getFullNameAttribute() : ($asset->assigned ? $asset->assigned->display_name : '');
$row[] = ($asset->checkedOutToUser() && $asset->assigned) ? 'user' : $asset->assignedType();
}
2019-05-23 17:17:46 -07:00
if ($request->filled('username')) {
// Only works if we're checked out to a user, not anything else.
if ($asset->checkedOutToUser()) {
$row[] = ($asset->assignedto) ? $asset->assignedto->username : '';
} else {
$row[] = ''; // Empty string if unassigned
}
}
2019-05-23 17:17:46 -07:00
if ($request->filled('employee_num')) {
// Only works if we're checked out to a user, not anything else.
if ($asset->checkedOutToUser()) {
$row[] = ($asset->assignedto) ? $asset->assignedto->employee_num : '';
} else {
$row[] = ''; // Empty string if unassigned
}
}
2019-05-23 17:17:46 -07:00
if ($request->filled('manager')) {
2018-06-27 00:45:09 -07:00
if ($asset->checkedOutToUser()) {
$row[] = (($asset->assignedto) && ($asset->assignedto->manager)) ? $asset->assignedto->manager->present()->fullName : '';
} else {
$row[] = ''; // Empty string if unassigned
}
}
2019-05-23 17:17:46 -07:00
if ($request->filled('department')) {
if ($asset->checkedOutToUser()) {
$row[] = (($asset->assignedto) && ($asset->assignedto->department)) ? $asset->assignedto->department->name : '';
} else {
$row[] = ''; // Empty string if unassigned
}
}
2021-12-13 18:27:23 -08:00
if ($request->filled('title')) {
if ($asset->checkedOutToUser()) {
$row[] = ($asset->assignedto) ? $asset->assignedto->jobtitle : '';
} else {
$row[] = ''; // Empty string if unassigned
}
}
2019-05-23 17:17:46 -07:00
if ($request->filled('status')) {
$row[] = ($asset->assetstatus) ? $asset->assetstatus->name.' ('.$asset->present()->statusMeta.')' : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('warranty')) {
$row[] = ($asset->warranty_months) ? $asset->warranty_months : '';
$row[] = $asset->present()->warranty_expires();
}
2019-05-23 17:17:46 -07:00
if ($request->filled('depreciation')) {
$depreciation = $asset->getDepreciatedValue();
$diff = ($asset->purchase_cost - $depreciation);
$row[] = Helper::formatCurrencyOutput($depreciation);
$row[] = Helper::formatCurrencyOutput($diff);
$row[] = ($asset->depreciation) ? $asset->depreciated_date()->format('Y-m-d') : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('checkout_date')) {
$row[] = ($asset->last_checkout) ? $asset->last_checkout : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('expected_checkin')) {
$row[] = ($asset->expected_checkin) ? $asset->expected_checkin : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('created_at')) {
$row[] = ($asset->created_at) ? $asset->created_at : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('updated_at')) {
$row[] = ($asset->updated_at) ? $asset->updated_at : '';
}
if ($request->filled('deleted_at')) {
$row[] = ($asset->deleted_at) ? $asset->deleted_at : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('last_audit_date')) {
$row[] = ($asset->last_audit_date) ? $asset->last_audit_date : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('next_audit_date')) {
$row[] = ($asset->next_audit_date) ? $asset->next_audit_date : '';
}
2019-05-23 17:17:46 -07:00
if ($request->filled('notes')) {
$row[] = ($asset->notes) ? $asset->notes : '';
}
if ($request->filled('url')) {
$row[] = config('app.url').'/hardware/'.$asset->id ;
}
foreach ($customfields as $customfield) {
$column_name = $customfield->db_column_name();
2019-05-23 17:17:46 -07:00
if ($request->filled($customfield->db_column_name())) {
$row[] = $asset->$column_name;
}
}
fputcsv($handle, $row);
$executionTime = microtime(true) - $_SERVER['REQUEST_TIME_FLOAT'];
\Log::debug('-- Record '.$count.' Asset ID:'.$asset->id.' in '.$executionTime);
}
});
// Close the output stream
fclose($handle);
$executionTime = microtime(true) - $_SERVER['REQUEST_TIME_FLOAT'];
\Log::debug('-- SCRIPT COMPLETED IN '.$executionTime);
}, 200, [
'Content-Type' => 'text/csv',
'Content-Disposition' => 'attachment; filename="custom-assets-report-'.date('Y-m-d-his').'.csv"',
]);
return $response;
2016-03-25 01:18:05 -07:00
}
2016-12-15 19:59:42 -08:00
2016-03-25 01:18:05 -07:00
/**
* getImprovementsReport
*
2016-04-07 17:08:38 -07:00
* @return View
2016-03-25 01:18:05 -07:00
* @author Vincent Sposato <vincent.sposato@gmail.com>
* @version v1.0
*/
public function getAssetMaintenancesReport()
{
$this->authorize('reports.view');
2016-03-25 01:18:05 -07:00
// Grab all the improvements
2016-03-25 19:26:22 -07:00
$assetMaintenances = AssetMaintenance::with('asset', 'supplier', 'asset.company')
2016-03-25 01:18:05 -07:00
->orderBy('created_at', 'DESC')
->get();
return view('reports/asset_maintenances', compact('assetMaintenances'));
2016-03-25 01:18:05 -07:00
}
/**
* exportImprovementsReport
*
* @return \Illuminate\Http\Response
* @author Vincent Sposato <vincent.sposato@gmail.com>
* @version v1.0
*/
public function exportAssetMaintenancesReport()
{
$this->authorize('reports.view');
2016-03-25 01:18:05 -07:00
// Grab all the improvements
$assetMaintenances = AssetMaintenance::with('asset', 'supplier')
->orderBy('created_at', 'DESC')
->get();
$rows = [];
2016-03-25 01:18:05 -07:00
$header = [
trans('admin/hardware/table.asset_tag'),
trans('admin/asset_maintenances/table.asset_name'),
2016-11-29 12:48:00 -08:00
trans('general.supplier'),
trans('admin/asset_maintenances/form.asset_maintenance_type'),
trans('admin/asset_maintenances/form.title'),
trans('admin/asset_maintenances/form.start_date'),
trans('admin/asset_maintenances/form.completion_date'),
trans('admin/asset_maintenances/form.asset_maintenance_time'),
trans('admin/asset_maintenances/form.cost'),
2016-03-25 01:18:05 -07:00
];
$header = array_map('trim', $header);
2021-07-16 15:07:51 -07:00
$rows[] = implode(',', $header);
2016-03-25 01:18:05 -07:00
foreach ($assetMaintenances as $assetMaintenance) {
$row = [];
$row[] = str_replace(',', '', e($assetMaintenance->asset->asset_tag));
2016-03-25 15:24:12 -07:00
$row[] = str_replace(',', '', e($assetMaintenance->asset->name));
$row[] = str_replace(',', '', e($assetMaintenance->supplier->name));
$row[] = e($assetMaintenance->improvement_type);
$row[] = e($assetMaintenance->title);
$row[] = e($assetMaintenance->start_date);
2016-03-25 18:51:44 -07:00
$row[] = e($assetMaintenance->completion_date);
2016-03-25 01:18:05 -07:00
if (is_null($assetMaintenance->asset_maintenance_time)) {
$improvementTime = intval(Carbon::now()
->diffInDays(Carbon::parse($assetMaintenance->start_date)));
} else {
$improvementTime = intval($assetMaintenance->asset_maintenance_time);
}
$row[] = $improvementTime;
$row[] = trans('general.currency') . Helper::formatCurrencyOutput($assetMaintenance->cost);
2021-07-16 15:07:51 -07:00
$rows[] = implode(',', $row);
2016-03-25 01:18:05 -07:00
}
// spit out a csv
2021-07-16 15:07:51 -07:00
$csv = implode("\n", $rows);
2016-03-25 01:18:05 -07:00
$response = Response::make($csv, 200);
$response->header('Content-Type', 'text/csv');
$response->header('Content-disposition', 'attachment;filename=report.csv');
return $response;
}
/**
* getAssetAcceptanceReport
*
* @return mixed
* @throws \Illuminate\Auth\Access\AuthorizationException
2016-03-25 01:18:05 -07:00
* @author Vincent Sposato <vincent.sposato@gmail.com>
* @version v1.0
*/
public function getAssetAcceptanceReport($deleted = false)
2016-03-25 01:18:05 -07:00
{
$this->authorize('reports.view');
$showDeleted = $deleted == 'deleted';
/**
* Get all assets with pending checkout acceptances
*/
if($showDeleted) {
$acceptances = CheckoutAcceptance::pending()->where('checkoutable_type', 'App\Models\Asset')->withTrashed()->with(['assignedTo' , 'checkoutable.assignedTo', 'checkoutable.model'])->get();
} else {
$acceptances = CheckoutAcceptance::pending()->where('checkoutable_type', 'App\Models\Asset')->with(['assignedTo' => function ($query) {
$query->withTrashed();
}, 'checkoutable.assignedTo', 'checkoutable.model'])->get();
}
$assetsForReport = $acceptances
->filter(function ($acceptance) {
return $acceptance->checkoutable_type == 'App\Models\Asset';
})
->map(function($acceptance) {
return ['assetItem' => $acceptance->checkoutable, 'acceptance' => $acceptance];
});
2016-03-25 01:18:05 -07:00
return view('reports/unaccepted_assets', compact('assetsForReport','showDeleted' ));
2016-03-25 01:18:05 -07:00
}
/**
* sentAssetAcceptanceReminder
*
* @param integer|null $acceptanceId
* @return \Illuminate\Http\RedirectResponse
* @throws \Illuminate\Auth\Access\AuthorizationException
* @version v1.0
*/
public function sentAssetAcceptanceReminder($acceptanceId = null)
{
$this->authorize('reports.view');
if (!$acceptance = CheckoutAcceptance::pending()->find($acceptanceId)) {
// Redirect to the unaccepted assets report page with error
return redirect()->route('reports/unaccepted_assets')->with('error', trans('general.bad_data'));
}
$assetItem = $acceptance->checkoutable;
$logItem = $assetItem->checkouts()->where('created_at', '=', $acceptance->created_at)->get()[0];
if(!$assetItem->assignedTo->locale){
Notification::locale(Setting::getSettings()->locale)->send(
$assetItem->assignedTo,
new CheckoutAssetNotification($assetItem, $assetItem->assignedTo, $logItem->user, $acceptance, $logItem->note)
);
} else {
Notification::send(
$assetItem->assignedTo,
new CheckoutAssetNotification($assetItem, $assetItem->assignedTo, $logItem->user, $acceptance, $logItem->note)
);
}
return redirect()->route('reports/unaccepted_assets')->with('success', trans('admin/reports/general.reminder_sent'));
}
/**
* sentAssetAcceptanceReminder
*
* @param integer|null $acceptanceId
* @return \Illuminate\Http\RedirectResponse
* @throws \Illuminate\Auth\Access\AuthorizationException
* @version v1.0
*/
public function deleteAssetAcceptance($acceptanceId = null)
{
$this->authorize('reports.view');
if (!$acceptance = CheckoutAcceptance::pending()->find($acceptanceId)) {
// Redirect to the unaccepted assets report page with error
return redirect()->route('reports/unaccepted_assets')->with('error', trans('general.bad_data'));
}
if($acceptance->delete()) {
return redirect()->route('reports/unaccepted_assets')->with('success', trans('admin/reports/general.acceptance_deleted'));
} else {
return redirect()->route('reports/unaccepted_assets')->with('error', trans('general.deletion_failed'));
}
}
2016-03-25 01:18:05 -07:00
/**
* Exports the AssetAcceptance report to CSV
2016-03-25 01:18:05 -07:00
*
* @return \Illuminate\Http\Response
* @author Vincent Sposato <vincent.sposato@gmail.com>
* @version v1.0
*/
public function postAssetAcceptanceReport($deleted = false)
2016-03-25 01:18:05 -07:00
{
$this->authorize('reports.view');
$showDeleted = $deleted == 'deleted';
/**
* Get all assets with pending checkout acceptances
*/
if($showDeleted) {
$acceptances = CheckoutAcceptance::pending()->withTrashed()->with(['assignedTo', 'checkoutable.assignedTo', 'checkoutable.model'])->get();
} else {
$acceptances = CheckoutAcceptance::pending()->with(['assignedTo', 'checkoutable.assignedTo', 'checkoutable.model'])->get();
}
$assetsForReport = $acceptances
->filter(function($acceptance) {
return $acceptance->checkoutable_type == 'App\Models\Asset';
})
->map(function($acceptance) {
return ['assetItem' => $acceptance->checkoutable, 'acceptance' => $acceptance];
});
2016-03-25 01:18:05 -07:00
$rows = [];
2016-03-25 01:18:05 -07:00
$header = [
trans('general.category'),
trans('admin/hardware/form.model'),
trans('admin/hardware/form.name'),
trans('admin/hardware/table.asset_tag'),
trans('admin/hardware/table.checkoutto'),
2016-03-25 01:18:05 -07:00
];
$header = array_map('trim', $header);
2021-07-16 15:07:51 -07:00
$rows[] = implode(',', $header);
2016-03-25 01:18:05 -07:00
foreach ($assetsForReport as $item) {
2016-03-25 01:18:05 -07:00
$row = [ ];
$row[] = str_replace(',', '', e($item['assetItem']->model->category->name));
$row[] = str_replace(',', '', e($item['assetItem']->model->name));
$row[] = str_replace(',', '', e($item['assetItem']->name));
$row[] = str_replace(',', '', e($item['assetItem']->asset_tag));
$row[] = str_replace(',', '', e(($item['acceptance']->assignedTo) ? $item['acceptance']->assignedTo->present()->name() : trans('admin/reports/general.deleted_user')));
2021-07-16 15:07:51 -07:00
$rows[] = implode(',', $row);
2016-03-25 01:18:05 -07:00
}
// spit out a csv
2021-07-16 15:07:51 -07:00
$csv = implode("\n", $rows);
2016-03-25 01:18:05 -07:00
$response = Response::make($csv, 200);
$response->header('Content-Type', 'text/csv');
$response->header('Content-disposition', 'attachment;filename=report.csv');
return $response;
}
/**
* getCheckedOutAssetsRequiringAcceptance
*
* @param $modelsInCategoriesThatRequireAcceptance
*
* @return array
* @author Vincent Sposato <vincent.sposato@gmail.com>
* @version v1.0
*/
protected function getCheckedOutAssetsRequiringAcceptance($modelsInCategoriesThatRequireAcceptance)
{
$this->authorize('reports.view');
2016-03-25 01:18:05 -07:00
$assets = Asset::deployed()
->inModelList($modelsInCategoriesThatRequireAcceptance)
->select('id')
->get()
->toArray();
return array_pluck($assets, 'id');
}
/**
* getModelsInCategoriesThatRequireAcceptance
*
* @param $assetCategoriesRequiringAcceptance
* @return array
* @author Vincent Sposato <vincent.sposato@gmail.com>
* @version v1.0
*/
protected function getModelsInCategoriesThatRequireAcceptance($assetCategoriesRequiringAcceptance)
{
$this->authorize('reports.view');
2016-03-25 01:18:05 -07:00
return array_pluck(Model::inCategory($assetCategoriesRequiringAcceptance)
->select('id')
->get()
->toArray(), 'id');
}
/**
* getCategoriesThatRequireAcceptance
*
* @return array
* @author Vincent Sposato <vincent.sposato@gmail.com>
* @version v1.0
*/
protected function getCategoriesThatRequireAcceptance()
{
$this->authorize('reports.view');
2016-03-25 01:18:05 -07:00
return array_pluck(Category::requiresAcceptance()
->select('id')
->get()
->toArray(), 'id');
}
/**
* getAssetsCheckedOutRequiringAcceptance
*
* @return array
* @author Vincent Sposato <vincent.sposato@gmail.com>
* @version v1.0
*/
protected function getAssetsCheckedOutRequiringAcceptance()
{
$this->authorize('reports.view');
2016-03-25 01:18:05 -07:00
return $this->getCheckedOutAssetsRequiringAcceptance(
$this->getModelsInCategoriesThatRequireAcceptance($this->getCategoriesThatRequireAcceptance())
);
}
}