2016-03-25 01:18:05 -07:00
|
|
|
<?php
|
2018-07-24 19:35:26 -07:00
|
|
|
namespace App\Http\Controllers\Assets;
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
use App\Helpers\Helper;
|
2018-07-24 19:35:26 -07:00
|
|
|
use App\Http\Controllers\Controller;
|
2018-09-29 21:33:52 -07:00
|
|
|
use App\Http\Requests\ImageUploadRequest;
|
2016-03-25 01:18:05 -07:00
|
|
|
use App\Models\Actionlog;
|
|
|
|
use App\Models\Asset;
|
|
|
|
use App\Models\AssetModel;
|
|
|
|
use App\Models\Company;
|
|
|
|
use App\Models\Location;
|
|
|
|
use App\Models\Setting;
|
|
|
|
use App\Models\User;
|
|
|
|
use Artisan;
|
|
|
|
use Auth;
|
2016-12-19 11:04:28 -08:00
|
|
|
use Carbon\Carbon;
|
2016-03-25 01:18:05 -07:00
|
|
|
use Config;
|
|
|
|
use DB;
|
2016-12-19 11:04:28 -08:00
|
|
|
use Gate;
|
|
|
|
use Illuminate\Http\Request;
|
2016-03-25 01:18:05 -07:00
|
|
|
use Image;
|
|
|
|
use Input;
|
|
|
|
use Lang;
|
2016-12-19 11:04:28 -08:00
|
|
|
use League\Csv\Reader;
|
2019-02-08 16:05:56 -08:00
|
|
|
use League\Csv\Statement;
|
|
|
|
use Illuminate\Support\Facades\Cache;
|
2016-03-25 01:18:05 -07:00
|
|
|
use Log;
|
|
|
|
use Mail;
|
|
|
|
use Paginator;
|
|
|
|
use Redirect;
|
|
|
|
use Response;
|
|
|
|
use Slack;
|
|
|
|
use Str;
|
|
|
|
use TCPDF;
|
2016-12-19 11:04:28 -08:00
|
|
|
use Validator;
|
2016-03-25 01:18:05 -07:00
|
|
|
use View;
|
2017-11-02 04:21:57 -07:00
|
|
|
use App\Models\CheckoutRequest;
|
2018-09-29 21:33:52 -07:00
|
|
|
use Illuminate\Support\Facades\Storage;
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
/**
|
2016-04-07 13:21:09 -07:00
|
|
|
* This class controls all actions related to assets for
|
|
|
|
* the Snipe-IT Asset Management application.
|
|
|
|
*
|
|
|
|
* @version v1.0
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
2016-03-25 01:18:05 -07:00
|
|
|
*/
|
|
|
|
class AssetsController extends Controller
|
|
|
|
{
|
|
|
|
protected $qrCodeDimensions = array( 'height' => 3.5, 'width' => 3.5);
|
|
|
|
protected $barCodeDimensions = array( 'height' => 2, 'width' => 22);
|
|
|
|
|
|
|
|
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
$this->middleware('auth');
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-07-16 20:09:53 -07:00
|
|
|
* Returns a view that invokes the ajax tables which actually contains
|
|
|
|
* the content for the assets listing, which is generated in getDatatable.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @see AssetController::getDatatable() method that generates the JSON response
|
|
|
|
* @since [v1.0]
|
2018-07-24 19:35:26 -07:00
|
|
|
* @param Request $request
|
2018-07-16 20:09:53 -07:00
|
|
|
* @return View
|
2018-07-24 19:35:26 -07:00
|
|
|
* @throws \Illuminate\Auth\Access\AuthorizationException
|
2018-07-16 20:09:53 -07:00
|
|
|
*/
|
2017-02-08 08:48:41 -08:00
|
|
|
public function index(Request $request)
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
2016-12-19 11:04:28 -08:00
|
|
|
$this->authorize('index', Asset::class);
|
2018-07-24 22:51:31 -07:00
|
|
|
if ($request->filled('company_id')) {
|
2017-02-08 08:48:41 -08:00
|
|
|
$company = Company::find($request->input('company_id'));
|
|
|
|
} else {
|
|
|
|
$company = null;
|
|
|
|
}
|
2017-10-01 12:57:04 -07:00
|
|
|
return view('hardware/index')->with('company', $company);
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-12-19 22:00:50 -08:00
|
|
|
* Returns a view that presents a form to create a new asset.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v1.0]
|
2016-12-29 08:10:52 -08:00
|
|
|
* @param Request $request
|
2016-12-19 22:00:50 -08:00
|
|
|
* @return View
|
2016-12-29 08:10:52 -08:00
|
|
|
* @internal param int $model_id
|
2016-12-19 22:00:50 -08:00
|
|
|
*/
|
2016-12-22 17:08:42 -08:00
|
|
|
public function create(Request $request)
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
2016-12-19 11:04:28 -08:00
|
|
|
$this->authorize('create', Asset::class);
|
2016-12-29 08:10:52 -08:00
|
|
|
$view = View::make('hardware/edit')
|
|
|
|
->with('statuslabel_list', Helper::statusLabelList())
|
|
|
|
->with('item', new Asset)
|
2017-10-26 21:50:27 -07:00
|
|
|
->with('statuslabel_types', Helper::statusTypeList());
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2018-07-24 22:51:31 -07:00
|
|
|
if ($request->filled('model_id')) {
|
2016-12-22 17:08:42 -08:00
|
|
|
$selected_model = AssetModel::find($request->input('model_id'));
|
2016-03-25 01:18:05 -07:00
|
|
|
$view->with('selected_model', $selected_model);
|
|
|
|
}
|
|
|
|
return $view;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-07-16 20:09:53 -07:00
|
|
|
* Validate and process new asset form data.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v1.0]
|
|
|
|
* @return Redirect
|
|
|
|
*/
|
2018-09-29 21:33:52 -07:00
|
|
|
public function store(ImageUploadRequest $request)
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
2016-12-19 11:04:28 -08:00
|
|
|
$this->authorize(Asset::class);
|
2017-10-26 21:50:27 -07:00
|
|
|
|
2018-10-05 04:34:47 -07:00
|
|
|
// Handle asset tags - there could be one, or potentially many.
|
|
|
|
// This is only necessary on create, not update, since bulk editing is handled
|
|
|
|
// differently
|
|
|
|
$asset_tags = $request->input('asset_tags');
|
2017-10-26 21:50:27 -07:00
|
|
|
|
2018-10-05 04:34:47 -07:00
|
|
|
$success = false;
|
2018-10-05 05:30:13 -07:00
|
|
|
$serials = $request->input('serials');
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2018-10-05 04:34:47 -07:00
|
|
|
for ($a = 1; $a <= count($asset_tags); $a++) {
|
|
|
|
|
|
|
|
$asset = new Asset();
|
|
|
|
$asset->model()->associate(AssetModel::find($request->input('model_id')));
|
|
|
|
$asset->name = $request->input('name');
|
2018-10-05 05:30:13 -07:00
|
|
|
// Check for a corresponding serial
|
|
|
|
if (($serials) && (array_key_exists($a, $serials))) {
|
|
|
|
$asset->serial = $serials[$a];
|
|
|
|
}
|
2018-10-05 04:34:47 -07:00
|
|
|
$asset->company_id = Company::getIdForCurrentUser($request->input('company_id'));
|
|
|
|
$asset->model_id = $request->input('model_id');
|
|
|
|
$asset->order_number = $request->input('order_number');
|
|
|
|
$asset->notes = $request->input('notes');
|
|
|
|
$asset->user_id = Auth::id();
|
|
|
|
$asset->archived = '0';
|
|
|
|
$asset->physical = '1';
|
|
|
|
$asset->depreciate = '0';
|
|
|
|
$asset->status_id = request('status_id', 0);
|
|
|
|
$asset->warranty_months = request('warranty_months', null);
|
|
|
|
$asset->purchase_cost = Helper::ParseFloat($request->get('purchase_cost'));
|
|
|
|
$asset->purchase_date = request('purchase_date', null);
|
|
|
|
$asset->assigned_to = request('assigned_to', null);
|
|
|
|
$asset->supplier_id = request('supplier_id', 0);
|
|
|
|
$asset->requestable = request('requestable', 0);
|
|
|
|
$asset->rtd_location_id = request('rtd_location_id', null);
|
|
|
|
|
|
|
|
if ($asset->assigned_to=='') {
|
|
|
|
$asset->location_id = $request->input('rtd_location_id', null);
|
|
|
|
}
|
2017-11-03 19:41:26 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
// Create the image (if one was chosen.)
|
2019-02-13 06:42:52 -08:00
|
|
|
if ($request->hasFile('image')) {
|
2017-10-26 21:50:27 -07:00
|
|
|
$image = $request->input('image');
|
2016-07-10 18:43:00 -07:00
|
|
|
|
2016-05-20 17:23:34 -07:00
|
|
|
|
2019-02-13 06:52:36 -08:00
|
|
|
$asset->asset_tag = $asset_tags[$a];
|
2018-10-05 04:34:47 -07:00
|
|
|
$asset = $request->handleImages($asset);
|
2019-02-13 06:52:36 -08:00
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2017-01-25 18:38:20 -08:00
|
|
|
|
2018-10-05 04:34:47 -07:00
|
|
|
// Update custom fields in the database.
|
|
|
|
// Validation for these fields is handled through the AssetRequest form request
|
|
|
|
$model = AssetModel::find($request->get('model_id'));
|
2017-07-08 17:04:24 -07:00
|
|
|
|
2018-10-05 04:34:47 -07:00
|
|
|
if (($model) && ($model->fieldset)) {
|
|
|
|
foreach ($model->fieldset->fields as $field) {
|
|
|
|
if ($field->field_encrypted=='1') {
|
|
|
|
if (Gate::allows('admin')) {
|
|
|
|
$asset->{$field->convertUnicodeDbSlug()} = \Crypt::encrypt($request->input($field->convertUnicodeDbSlug()));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$asset->{$field->convertUnicodeDbSlug()} = $request->input($field->convertUnicodeDbSlug());
|
2017-07-08 17:04:24 -07:00
|
|
|
}
|
|
|
|
}
|
2016-06-10 16:36:46 -07:00
|
|
|
}
|
|
|
|
|
2018-10-11 17:15:09 -07:00
|
|
|
// Validate the asset before saving
|
|
|
|
if ($asset->isValid() && $asset->save()) {
|
2018-10-05 04:34:47 -07:00
|
|
|
|
|
|
|
if (request('assigned_user')) {
|
|
|
|
$target = User::find(request('assigned_user'));
|
|
|
|
$location = $target->location_id;
|
|
|
|
} elseif (request('assigned_asset')) {
|
|
|
|
$target = Asset::find(request('assigned_asset'));
|
|
|
|
$location = $target->location_id;
|
|
|
|
} elseif (request('assigned_location')) {
|
|
|
|
$target = Location::find(request('assigned_location'));
|
|
|
|
$location = $target->id;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($target)) {
|
|
|
|
$asset->checkOut($target, Auth::user(), date('Y-m-d H:i:s'), '', 'Checked out on asset creation', e($request->get('name')), $location);
|
|
|
|
}
|
2017-12-12 03:39:55 -08:00
|
|
|
|
2018-10-05 04:34:47 -07:00
|
|
|
$success = true;
|
2017-11-03 19:41:26 -07:00
|
|
|
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
2018-10-05 04:34:47 -07:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($success) {
|
2016-03-25 01:18:05 -07:00
|
|
|
// Redirect to the asset listing page
|
2018-09-29 21:33:52 -07:00
|
|
|
return redirect()->route('hardware.index')
|
|
|
|
->with('success', trans('admin/hardware/message.create.success'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
2018-10-05 04:34:47 -07:00
|
|
|
|
2018-09-29 21:33:52 -07:00
|
|
|
return redirect()->back()->withInput()->withErrors($asset->getErrors());
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-07-16 20:09:53 -07:00
|
|
|
* Returns a view that presents a form to edit an existing asset.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @param int $assetId
|
|
|
|
* @since [v1.0]
|
|
|
|
* @return View
|
|
|
|
*/
|
2016-12-15 04:09:40 -08:00
|
|
|
public function edit($assetId = null)
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
Partialize forms (#2884)
* Consolidate edit form elements into reusable partials.
This is a large code change that doesn't do much immediately. It
refactors all of the various edit.blade.php files to reference
standardized partials, so that they all reference the same base html
layout. This has the side effect of moving everything to the new fancy
"required" indicators, and making things look consistent.
In addition, I've gone ahead and renamed a few database fields. We had
Assetmodel::modelno and Consumable::model_no, I've renamed both to
model_number. We had items using ::note and ::notes, I've standardized
on ::notes. Component used total_qty where consumables and accessories
used qty, so I've moved everything to qty (And fixed a few bugs in the
helper file in the process.
TODO includes looking at how/where to place the modal javascripts to
allow for on the fly creation from all places, rather than just the
asset page.
Rename assetmodel::modelno to model_number for clarity and consistency
Rename consumable::model_no to model_number for clarity and consistency
Rename assetmodel::note to notes for clarity and consistency
Port asset and assetmodel to new partials layout. Adapt all code to the renamed model_number and notes database changes. Fix some stying.
* Share a settings variable with all views.
* Allow editing the per_page setting. We showed the value, but we never showed it on the edit page..
* use snipeSettings in all views instead of the long ugly path.
* War on partials. Centralize all bootstrap table javascript
* Use model_number instead of modelno in importer
* Codacy fix.
* More unification/deduplication. Create an edit form template layout that we use as the base for all edit forms. This gives the same interface for editing everything and makes the edit.blade.* files much easier to read.
* Use a ViewComposer instead of sharing the variable directly. Fixes artisan optimize trying to hit the db--which ruins new installs
* Fix DB seeder.
* Base sql dump and csv's to import data from for tests.
* Start some functional tests for creating items.
* Add functional tests for all create methods. Still need to do tests for edits, deletes, and lots of other things
* Improvements to functional tests.
Use the built in DB seeding mechanism instead of doing it ourselves.
Break the tests into multiple units, rather than testing everything in
each function.
* Some improvements to acceptance tests.
Make sure we're only looking at the "trs" within the bootstrap table.
Creation of assets is now tested at the functional level (and is faster)
so ignore it here.
I'm testing acceptance tests with the
IMPORT_{ASSETS,ACCESSORIES,CONSUMABLES}.csv in the tests/_data folder
imported.
* A few things to make acceptance tests work. Add a name to the companies table, and make the locations table have the correct name
* Use a .env.tests file for testing functional and unit to allow a separate database.
* Add functional tests for compoents, groups, and licenses.
* Now that the config is in the functional.yml, this just confuses things.
* Start some functional tests for creating items.
* Add functional tests for all create methods. Still need to do tests for edits, deletes, and lots of other things
* Improvements to functional tests.
Use the built in DB seeding mechanism instead of doing it ourselves.
Break the tests into multiple units, rather than testing everything in
each function.
* Some improvements to acceptance tests.
Make sure we're only looking at the "trs" within the bootstrap table.
Creation of assets is now tested at the functional level (and is faster)
so ignore it here.
I'm testing acceptance tests with the
IMPORT_{ASSETS,ACCESSORIES,CONSUMABLES}.csv in the tests/_data folder
imported.
* update db dump
* Update tests to new reality
* env for the test setup
* only load the database at beginning of tests, not between each Functional test.
* Fix a miss from renaming note to notes.
* Set Termination date when creating an asset. It was only set on edit.
* Rename serial_number to serial in components for consistency.
* Update validation rules to match limits in database. Currently we just accepted the values and they were truncated when adding to DB.
* Much more detailed functional testing of creating items. This checks to make sure all values on form have been successfully persisted to database.
2016-11-16 16:56:57 -08:00
|
|
|
if (!$item = Asset::find($assetId)) {
|
2016-12-19 11:04:28 -08:00
|
|
|
// Redirect to the asset management page with error
|
2016-12-15 20:02:47 -08:00
|
|
|
return redirect()->route('hardware.index')->with('error', trans('admin/hardware/message.does_not_exist'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
2016-12-19 11:04:28 -08:00
|
|
|
//Handles company checks and permissions.
|
|
|
|
$this->authorize($item);
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2017-06-09 16:31:25 -07:00
|
|
|
return view('hardware/edit', compact('item'))
|
2017-10-01 12:57:04 -07:00
|
|
|
->with('statuslabel_list', Helper::statusLabelList())
|
2017-10-28 11:17:52 -07:00
|
|
|
->with('statuslabel_types', Helper::statusTypeList());
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-07-16 17:44:03 -07:00
|
|
|
/**
|
2018-07-16 20:09:53 -07:00
|
|
|
* Returns a view that presents information about an asset for detail view.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @param int $assetId
|
|
|
|
* @since [v1.0]
|
|
|
|
* @return View
|
|
|
|
*/
|
2018-07-16 17:44:03 -07:00
|
|
|
public function show($assetId = null)
|
|
|
|
{
|
|
|
|
$asset = Asset::withTrashed()->find($assetId);
|
|
|
|
$this->authorize('view', $asset);
|
|
|
|
$settings = Setting::getSettings();
|
|
|
|
|
|
|
|
if (isset($asset)) {
|
|
|
|
$audit_log = Actionlog::where('action_type', '=', 'audit')
|
|
|
|
->where('item_id', '=', $assetId)
|
|
|
|
->where('item_type', '=', Asset::class)
|
|
|
|
->orderBy('created_at', 'DESC')->first();
|
|
|
|
|
|
|
|
if ($asset->location) {
|
|
|
|
$use_currency = $asset->location->currency;
|
|
|
|
} else {
|
|
|
|
if ($settings->default_currency!='') {
|
|
|
|
$use_currency = $settings->default_currency;
|
|
|
|
} else {
|
|
|
|
$use_currency = trans('general.currency');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$qr_code = (object) array(
|
|
|
|
'display' => $settings->qr_code == '1',
|
|
|
|
'url' => route('qr_code/hardware', $asset->id)
|
|
|
|
);
|
|
|
|
|
|
|
|
return view('hardware/view', compact('asset', 'qr_code', 'settings'))
|
|
|
|
->with('use_currency', $use_currency)->with('audit_log', $audit_log);
|
|
|
|
}
|
|
|
|
|
|
|
|
return redirect()->route('hardware.index')->with('error', trans('admin/hardware/message.does_not_exist'));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
/**
|
2018-07-16 20:09:53 -07:00
|
|
|
* Validate and process asset edit form.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @param int $assetId
|
|
|
|
* @since [v1.0]
|
|
|
|
* @return Redirect
|
|
|
|
*/
|
2016-06-10 05:35:30 -07:00
|
|
|
|
2018-09-29 21:33:52 -07:00
|
|
|
public function update(ImageUploadRequest $request, $assetId = null)
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
|
|
|
// Check if the asset exists
|
2016-06-10 05:16:27 -07:00
|
|
|
if (!$asset = Asset::find($assetId)) {
|
2016-03-25 01:18:05 -07:00
|
|
|
// Redirect to the asset management page with error
|
2016-12-15 20:02:47 -08:00
|
|
|
return redirect()->route('hardware.index')->with('error', trans('admin/hardware/message.does_not_exist'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
2016-12-19 11:04:28 -08:00
|
|
|
$this->authorize($asset);
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-12-26 15:17:46 -08:00
|
|
|
$asset->status_id = $request->input('status_id', null);
|
|
|
|
$asset->warranty_months = $request->input('warranty_months', null);
|
|
|
|
$asset->purchase_cost = Helper::ParseFloat($request->input('purchase_cost', null));
|
|
|
|
$asset->purchase_date = $request->input('purchase_date', null);
|
|
|
|
$asset->supplier_id = $request->input('supplier_id', null);
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-06-27 20:16:03 -07:00
|
|
|
// If the box isn't checked, it's not in the request at all.
|
2018-07-24 22:51:31 -07:00
|
|
|
$asset->requestable = $request->filled('requestable');
|
2016-12-26 15:17:46 -08:00
|
|
|
$asset->rtd_location_id = $request->input('rtd_location_id', null);
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2017-11-03 17:36:18 -07:00
|
|
|
if ($asset->assigned_to=='') {
|
|
|
|
$asset->location_id = $request->input('rtd_location_id', null);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-07-24 22:51:31 -07:00
|
|
|
if ($request->filled('image_delete')) {
|
2018-04-24 02:54:54 -07:00
|
|
|
try {
|
|
|
|
unlink(public_path().'/uploads/assets/'.$asset->image);
|
|
|
|
$asset->image = '';
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
\Log::error($e);
|
|
|
|
}
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Update the asset data
|
2018-10-05 07:30:42 -07:00
|
|
|
$asset_tag = $request->input('asset_tags');
|
|
|
|
$serial = $request->input('serials');
|
2016-12-19 22:00:50 -08:00
|
|
|
$asset->name = $request->input('name');
|
2018-10-05 07:30:42 -07:00
|
|
|
$asset->serial = $serial[1];
|
2016-12-19 22:00:50 -08:00
|
|
|
$asset->company_id = Company::getIdForCurrentUser($request->input('company_id'));
|
|
|
|
$asset->model_id = $request->input('model_id');
|
|
|
|
$asset->order_number = $request->input('order_number');
|
2018-10-05 07:30:42 -07:00
|
|
|
$asset->asset_tag = $asset_tag[1];
|
2016-12-19 22:00:50 -08:00
|
|
|
$asset->notes = $request->input('notes');
|
2016-03-25 01:18:05 -07:00
|
|
|
$asset->physical = '1';
|
|
|
|
|
2018-09-29 21:33:52 -07:00
|
|
|
$asset = $request->handleImages($asset);
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-06-10 16:36:46 -07:00
|
|
|
// Update custom fields in the database.
|
|
|
|
// Validation for these fields is handlded through the AssetRequest form request
|
|
|
|
// FIXME: No idea why this is returning a Builder error on db_column_name.
|
|
|
|
// Need to investigate and fix. Using static method for now.
|
|
|
|
$model = AssetModel::find($request->get('model_id'));
|
2016-06-22 12:27:41 -07:00
|
|
|
if ($model->fieldset) {
|
|
|
|
foreach ($model->fieldset->fields as $field) {
|
2016-08-25 20:59:54 -07:00
|
|
|
if ($field->field_encrypted=='1') {
|
|
|
|
if (Gate::allows('admin')) {
|
2017-01-25 18:38:20 -08:00
|
|
|
$asset->{$field->convertUnicodeDbSlug()} = \Crypt::encrypt(e($request->input($field->convertUnicodeDbSlug())));
|
2016-08-25 20:59:54 -07:00
|
|
|
}
|
|
|
|
} else {
|
2017-07-08 17:04:24 -07:00
|
|
|
$asset->{$field->convertUnicodeDbSlug()} = $request->input($field->convertUnicodeDbSlug());
|
2016-08-25 20:59:54 -07:00
|
|
|
}
|
2016-06-10 16:36:46 -07:00
|
|
|
}
|
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-08-25 20:59:54 -07:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
if ($asset->save()) {
|
2018-10-05 07:30:42 -07:00
|
|
|
return redirect()->route("hardware.show", $assetId)
|
|
|
|
->with('success', trans('admin/hardware/message.update.success'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
2018-10-05 07:30:42 -07:00
|
|
|
|
|
|
|
return redirect()->back()->withInput()->withErrors()->with('error', trans('admin/hardware/message.does_not_exist'));
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-07-16 20:09:53 -07:00
|
|
|
* Delete a given asset (mark as deleted).
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @param int $assetId
|
|
|
|
* @since [v1.0]
|
|
|
|
* @return Redirect
|
|
|
|
*/
|
2016-12-19 10:42:33 -08:00
|
|
|
public function destroy($assetId)
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
|
|
|
// Check if the asset exists
|
|
|
|
if (is_null($asset = Asset::find($assetId))) {
|
|
|
|
// Redirect to the asset management page with error
|
2016-12-15 20:02:47 -08:00
|
|
|
return redirect()->route('hardware.index')->with('error', trans('admin/hardware/message.does_not_exist'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
2016-12-19 11:04:28 -08:00
|
|
|
$this->authorize('delete', $asset);
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
DB::table('assets')
|
2017-10-01 12:57:04 -07:00
|
|
|
->where('id', $asset->id)
|
|
|
|
->update(array('assigned_to' => null));
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2018-09-29 21:33:52 -07:00
|
|
|
if ($asset->image) {
|
|
|
|
try {
|
|
|
|
Storage::disk('public')->delete('assets'.'/'.$asset->image);
|
|
|
|
} catch (\Exception $e) {
|
|
|
|
\Log::debug($e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
$asset->delete();
|
|
|
|
|
2016-12-15 20:02:47 -08:00
|
|
|
return redirect()->route('hardware.index')->with('success', trans('admin/hardware/message.delete.success'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
2017-11-27 21:18:29 -08:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
/**
|
2018-07-16 17:44:03 -07:00
|
|
|
* Searches the assets table by asset tag, and redirects if it finds one
|
2016-12-26 15:19:04 -08:00
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
2018-07-16 17:44:03 -07:00
|
|
|
* @since [v3.0]
|
2016-12-26 15:19:04 -08:00
|
|
|
* @return Redirect
|
|
|
|
*/
|
2018-07-19 10:14:02 -07:00
|
|
|
public function getAssetByTag(Request $request)
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
2018-07-16 17:44:03 -07:00
|
|
|
$topsearch = ($request->get('topsearch')=="true");
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2018-07-16 17:44:03 -07:00
|
|
|
if (!$asset = Asset::where('asset_tag', '=', $request->get('assetTag'))->first()) {
|
2016-12-15 20:02:47 -08:00
|
|
|
return redirect()->route('hardware.index')->with('error', trans('admin/hardware/message.does_not_exist'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
2016-12-19 11:04:28 -08:00
|
|
|
$this->authorize('view', $asset);
|
2018-07-16 17:44:03 -07:00
|
|
|
return redirect()->route('hardware.show', $asset->id)->with('topsearch', $topsearch);
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
/**
|
2018-07-16 20:09:53 -07:00
|
|
|
* Return a QR code for the asset
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @param int $assetId
|
|
|
|
* @since [v1.0]
|
|
|
|
* @return Response
|
|
|
|
*/
|
2016-03-25 01:18:05 -07:00
|
|
|
public function getQrCode($assetId = null)
|
|
|
|
{
|
|
|
|
$settings = Setting::getSettings();
|
|
|
|
|
|
|
|
if ($settings->qr_code == '1') {
|
2017-10-17 16:21:50 -07:00
|
|
|
$asset = Asset::withTrashed()->find($assetId);
|
2017-11-08 01:04:14 -08:00
|
|
|
if ($asset) {
|
|
|
|
$size = Helper::barcodeDimensions($settings->barcode_type);
|
|
|
|
$qr_file = public_path().'/uploads/barcodes/qr-'.str_slug($asset->asset_tag).'-'.str_slug($asset->id).'.png';
|
|
|
|
|
|
|
|
if (isset($asset->id, $asset->asset_tag)) {
|
|
|
|
if (file_exists($qr_file)) {
|
|
|
|
$header = ['Content-type' => 'image/png'];
|
|
|
|
return response()->file($qr_file, $header);
|
|
|
|
} else {
|
|
|
|
$barcode = new \Com\Tecnick\Barcode\Barcode();
|
|
|
|
$barcode_obj = $barcode->getBarcodeObj($settings->barcode_type, route('hardware.show', $asset->id), $size['height'], $size['width'], 'black', array(-2, -2, -2, -2));
|
|
|
|
file_put_contents($qr_file, $barcode_obj->getPngData());
|
|
|
|
return response($barcode_obj->getPngData())->header('Content-type', 'image/png');
|
|
|
|
}
|
2016-08-01 22:56:28 -07:00
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
2017-11-08 01:04:14 -08:00
|
|
|
return 'That asset is invalid';
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-19 19:12:42 -07:00
|
|
|
/**
|
|
|
|
* Return a 2D barcode for the asset
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @param int $assetId
|
|
|
|
* @since [v1.0]
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function getBarCode($assetId = null)
|
|
|
|
{
|
|
|
|
$settings = Setting::getSettings();
|
|
|
|
$asset = Asset::find($assetId);
|
2016-08-01 22:56:28 -07:00
|
|
|
$barcode_file = public_path().'/uploads/barcodes/'.str_slug($settings->alt_barcode).'-'.str_slug($asset->asset_tag).'.png';
|
2016-05-19 19:12:42 -07:00
|
|
|
|
2017-10-01 12:57:04 -07:00
|
|
|
if (isset($asset->id, $asset->asset_tag)) {
|
2016-08-01 22:56:28 -07:00
|
|
|
if (file_exists($barcode_file)) {
|
|
|
|
$header = ['Content-type' => 'image/png'];
|
|
|
|
return response()->file($barcode_file, $header);
|
|
|
|
} else {
|
2017-10-19 06:08:01 -07:00
|
|
|
// Calculate barcode width in pixel based on label width (inch)
|
|
|
|
$barcode_width = ($settings->labels_width - $settings->labels_display_sgutter) * 96.000000000001;
|
|
|
|
|
2016-08-01 22:56:28 -07:00
|
|
|
$barcode = new \Com\Tecnick\Barcode\Barcode();
|
2017-10-19 06:08:01 -07:00
|
|
|
$barcode_obj = $barcode->getBarcodeObj($settings->alt_barcode,$asset->asset_tag,($barcode_width < 300 ? $barcode_width : 300),50);
|
2017-10-07 07:15:28 -07:00
|
|
|
|
2016-08-11 19:13:49 -07:00
|
|
|
file_put_contents($barcode_file, $barcode_obj->getPngData());
|
2016-08-01 22:56:28 -07:00
|
|
|
return response($barcode_obj->getPngData())->header('Content-type', 'image/png');
|
|
|
|
}
|
2016-05-19 19:12:42 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
/**
|
2018-07-16 20:09:53 -07:00
|
|
|
* Returns a view that presents a form to clone an asset.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @param int $assetId
|
|
|
|
* @since [v1.0]
|
|
|
|
* @return View
|
|
|
|
*/
|
2016-03-25 01:18:05 -07:00
|
|
|
public function getClone($assetId = null)
|
|
|
|
{
|
|
|
|
// Check if the asset exists
|
|
|
|
if (is_null($asset_to_clone = Asset::find($assetId))) {
|
|
|
|
// Redirect to the asset management page
|
2016-12-15 20:02:47 -08:00
|
|
|
return redirect()->route('hardware.index')->with('error', trans('admin/hardware/message.does_not_exist'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
2016-12-29 14:02:18 -08:00
|
|
|
$this->authorize('create', $asset_to_clone);
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
$asset = clone $asset_to_clone;
|
|
|
|
$asset->id = null;
|
|
|
|
$asset->asset_tag = '';
|
|
|
|
$asset->serial = '';
|
|
|
|
$asset->assigned_to = '';
|
|
|
|
|
2017-06-09 16:31:25 -07:00
|
|
|
return view('hardware/edit')
|
2018-07-16 20:09:53 -07:00
|
|
|
->with('statuslabel_list', Helper::statusLabelList())
|
|
|
|
->with('statuslabel_types', Helper::statusTypeList())
|
|
|
|
->with('item', $asset);
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
2016-08-12 16:01:59 -07:00
|
|
|
/**
|
|
|
|
* Return history import view
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v1.0]
|
|
|
|
* @return View
|
|
|
|
*/
|
|
|
|
public function getImportHistory()
|
|
|
|
{
|
2019-02-08 16:05:56 -08:00
|
|
|
$this->authorize('admin');
|
2017-06-09 16:31:25 -07:00
|
|
|
return view('hardware/history');
|
2016-08-12 16:01:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Import history
|
|
|
|
*
|
|
|
|
* This needs a LOT of love. It's done very inelegantly right now, and there are
|
|
|
|
* a ton of optimizations that could (and should) be done.
|
|
|
|
*
|
2019-02-08 16:05:56 -08:00
|
|
|
* @author [herroworrd]
|
|
|
|
* @since [v5.0]
|
2016-08-12 16:01:59 -07:00
|
|
|
* @return View
|
|
|
|
*/
|
|
|
|
public function postImportHistory(Request $request)
|
|
|
|
{
|
|
|
|
if (!ini_get("auto_detect_line_endings")) {
|
|
|
|
ini_set("auto_detect_line_endings", '1');
|
|
|
|
}
|
|
|
|
|
2019-02-08 16:05:56 -08:00
|
|
|
$requiredcolumns = ['Asset Tag', 'Checkout Date', 'Checkin Date', 'Full Name'];
|
2016-08-12 16:01:59 -07:00
|
|
|
|
|
|
|
$csv = Reader::createFromPath(Input::file('user_import_csv'));
|
|
|
|
|
2019-02-08 16:05:56 -08:00
|
|
|
$csv->setHeaderOffset(0);
|
2016-08-12 16:01:59 -07:00
|
|
|
|
2019-02-08 16:05:56 -08:00
|
|
|
//Stop here if we don't have the columns we need
|
|
|
|
if(count(array_intersect($requiredcolumns, $csv->getHeader())) != count($requiredcolumns)) {
|
|
|
|
$status['error'][]['csv'][]['msg'] = 'Headers do not match';
|
|
|
|
return view('hardware/history')->with('status', $status);
|
|
|
|
}
|
|
|
|
$statement = (new Statement())
|
|
|
|
->orderBy(\Closure::fromCallable([$this, 'sortByName']));
|
2016-08-12 16:01:59 -07:00
|
|
|
|
2019-02-08 16:05:56 -08:00
|
|
|
$results = $statement->process($csv);
|
2016-08-12 19:03:32 -07:00
|
|
|
|
2019-02-08 16:05:56 -08:00
|
|
|
$status = array();
|
|
|
|
$status['error'] = array();
|
|
|
|
$status['success'] = array();
|
|
|
|
$base_username = null;
|
|
|
|
$cachetime = Carbon::now()->addSeconds(120);
|
2016-08-12 16:01:59 -07:00
|
|
|
|
2019-02-08 16:05:56 -08:00
|
|
|
foreach ($results as $record) {
|
2016-08-12 16:01:59 -07:00
|
|
|
|
2019-02-08 16:05:56 -08:00
|
|
|
$asset_tag = $record['Asset Tag'];
|
2016-08-12 16:01:59 -07:00
|
|
|
|
2019-02-08 16:05:56 -08:00
|
|
|
try {
|
|
|
|
$checkoutdate = Carbon::parse($record['Checkout Date'])->format('Y-m-d H:i:s');
|
|
|
|
$checkindate = Carbon::parse($record['Checkin Date'])->format('Y-m-d H:i:s');
|
|
|
|
}
|
|
|
|
catch (\Exception $err) {
|
|
|
|
$status['error'][]['asset'][$asset_tag]['msg'] = 'Your dates are screwed up. Format needs to be Y-m-d H:i:s';
|
|
|
|
continue;
|
|
|
|
}
|
2016-08-12 16:01:59 -07:00
|
|
|
|
2019-02-08 16:05:56 -08:00
|
|
|
if($asset = Cache::remember('asset:' . $asset_tag, $cachetime, function () use( &$asset_tag) {
|
|
|
|
$tocache = Asset::where('asset_tag', '=', $asset_tag)->value('id');
|
|
|
|
return is_null($tocache) ? false : $tocache;}))
|
|
|
|
{
|
|
|
|
//we've found our asset, now lets look for a user
|
|
|
|
if($base_username != User::generateFormattedNameFromFullName($record['Full Name'], Setting::getSettings()->username_format)) {
|
|
|
|
|
|
|
|
$base_username = User::generateFormattedNameFromFullName($record['Full Name'], Setting::getSettings()->username_format);
|
|
|
|
|
|
|
|
if(!$user = Cache::remember('user:' . $base_username['username'], $cachetime, function () use( &$base_username) {
|
|
|
|
$tocache = User::where('username', '=', $base_username['username'])->value('id');
|
|
|
|
return is_null($tocache) ? false : $tocache;}))
|
|
|
|
{
|
|
|
|
$status['error'][]['asset'][$asset_tag]['msg'] = 'Asset was found but user (' . $record['Full Name'] . ') not matched';
|
|
|
|
$base_username = null;
|
|
|
|
continue;
|
2016-09-20 09:22:49 -07:00
|
|
|
}
|
2019-02-08 16:05:56 -08:00
|
|
|
}
|
2016-08-12 16:01:59 -07:00
|
|
|
|
2019-02-08 16:05:56 -08:00
|
|
|
if($checkoutdate < $checkindate) {
|
2016-08-12 16:01:59 -07:00
|
|
|
|
|
|
|
Actionlog::firstOrCreate(array(
|
2019-02-08 16:05:56 -08:00
|
|
|
'item_id' => $asset,
|
2018-07-16 20:09:53 -07:00
|
|
|
'item_type' => Asset::class,
|
2019-02-08 16:05:56 -08:00
|
|
|
'user_id' => Auth::user()->id,
|
|
|
|
'note' => 'Historical record added by ' . Auth::user()->present()->fullName(),
|
|
|
|
'target_id' => $user,
|
2018-07-16 20:09:53 -07:00
|
|
|
'target_type' => User::class,
|
2019-02-08 16:05:56 -08:00
|
|
|
'created_at' => $checkoutdate,
|
|
|
|
'action_type' => 'checkout',
|
2018-07-16 20:09:53 -07:00
|
|
|
));
|
2016-08-12 16:01:59 -07:00
|
|
|
|
2016-08-12 17:10:03 -07:00
|
|
|
Actionlog::firstOrCreate(array(
|
2019-02-08 16:05:56 -08:00
|
|
|
'item_id' => $asset,
|
2018-07-16 20:09:53 -07:00
|
|
|
'item_type' => Asset::class,
|
|
|
|
'user_id' => Auth::user()->id,
|
2019-02-08 16:05:56 -08:00
|
|
|
'note' => 'Historical record added by ' . Auth::user()->present()->fullName(),
|
|
|
|
'target_id' => $user,
|
|
|
|
'target_type' => User::class,
|
|
|
|
'created_at' => $checkindate,
|
2018-07-16 20:09:53 -07:00
|
|
|
'action_type' => 'checkin'
|
|
|
|
));
|
2019-02-08 16:05:56 -08:00
|
|
|
|
|
|
|
$status['success'][]['asset'][$asset_tag]['msg'] = 'Asset successfully matched for ' . $record['Full Name'] . ' on ' . $checkoutdate;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$status['error'][]['asset'][$asset_tag]['msg'] = 'Checkin date needs to be after checkout date.';
|
2016-08-12 16:01:59 -07:00
|
|
|
}
|
2016-08-12 19:03:32 -07:00
|
|
|
}
|
2019-02-08 16:05:56 -08:00
|
|
|
else {
|
|
|
|
$status['error'][]['asset'][$asset_tag]['msg'] = 'Asset not found in Snipe';
|
|
|
|
}
|
2016-08-12 16:01:59 -07:00
|
|
|
}
|
2019-02-08 16:05:56 -08:00
|
|
|
|
2017-06-09 16:31:25 -07:00
|
|
|
return view('hardware/history')->with('status', $status);
|
2016-08-12 16:01:59 -07:00
|
|
|
}
|
|
|
|
|
2019-02-08 16:05:56 -08:00
|
|
|
protected function sortByName(array $recordA, array $recordB): int
|
|
|
|
{
|
|
|
|
return strcmp($recordB['Full Name'], $recordA['Full Name']);
|
|
|
|
}
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
/**
|
2018-07-16 20:09:53 -07:00
|
|
|
* Retore a deleted asset.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @param int $assetId
|
|
|
|
* @since [v1.0]
|
|
|
|
* @return View
|
|
|
|
*/
|
2016-03-25 01:18:05 -07:00
|
|
|
public function getRestore($assetId = null)
|
|
|
|
{
|
2016-12-19 11:04:28 -08:00
|
|
|
// Get asset information
|
2016-03-25 01:18:05 -07:00
|
|
|
$asset = Asset::withTrashed()->find($assetId);
|
2016-12-19 11:04:28 -08:00
|
|
|
$this->authorize('delete', $asset);
|
|
|
|
if (isset($asset->id)) {
|
2016-04-21 21:01:57 -07:00
|
|
|
// Restore the asset
|
2016-06-22 12:27:41 -07:00
|
|
|
Asset::withTrashed()->where('id', $assetId)->restore();
|
2017-12-12 02:32:45 -08:00
|
|
|
|
|
|
|
$logaction = new Actionlog();
|
|
|
|
$logaction->item_type = Asset::class;
|
|
|
|
$logaction->item_id = $asset->id;
|
|
|
|
$logaction->created_at = date("Y-m-d H:i:s");
|
|
|
|
$logaction->user_id = Auth::user()->id;
|
|
|
|
$logaction->logaction('restored');
|
|
|
|
|
2017-07-08 17:04:24 -07:00
|
|
|
return redirect()->route('hardware.index')->with('success', trans('admin/hardware/message.restore.success'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
2016-12-19 22:00:50 -08:00
|
|
|
return redirect()->route('hardware.index')->with('error', trans('admin/hardware/message.does_not_exist'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
2017-10-28 11:17:52 -07:00
|
|
|
public function quickScan()
|
2017-08-29 16:00:22 -07:00
|
|
|
{
|
|
|
|
$this->authorize('audit', Asset::class);
|
|
|
|
$dt = Carbon::now()->addMonths(12)->toDateString();
|
2017-10-28 11:17:52 -07:00
|
|
|
return view('hardware/quickscan')->with('next_audit_date', $dt);
|
2017-08-29 16:00:22 -07:00
|
|
|
}
|
2016-08-25 21:03:24 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
2017-10-27 17:38:11 -07:00
|
|
|
public function audit($id)
|
2017-08-25 10:04:19 -07:00
|
|
|
{
|
2017-11-21 20:13:51 -08:00
|
|
|
$settings = Setting::getSettings();
|
2017-08-25 10:04:19 -07:00
|
|
|
$this->authorize('audit', Asset::class);
|
2017-11-21 20:13:51 -08:00
|
|
|
$dt = Carbon::now()->addMonths($settings->audit_interval)->toDateString();
|
2017-08-25 10:04:19 -07:00
|
|
|
$asset = Asset::findOrFail($id);
|
2017-10-28 11:17:52 -07:00
|
|
|
return view('hardware/audit')->with('asset', $asset)->with('next_audit_date', $dt)->with('locations_list');
|
2017-08-25 10:04:19 -07:00
|
|
|
}
|
2016-08-18 12:44:55 -07:00
|
|
|
|
2017-12-12 02:32:45 -08:00
|
|
|
|
2018-09-29 21:33:52 -07:00
|
|
|
public function auditStore(Request $request, $id)
|
2017-08-25 10:04:19 -07:00
|
|
|
{
|
|
|
|
$this->authorize('audit', Asset::class);
|
2016-09-27 14:56:05 -07:00
|
|
|
|
2017-08-25 18:40:20 -07:00
|
|
|
$rules = array(
|
|
|
|
'location_id' => 'exists:locations,id|nullable|numeric',
|
|
|
|
'next_audit_date' => 'date|nullable'
|
|
|
|
);
|
2016-09-27 14:56:05 -07:00
|
|
|
|
2017-08-25 18:40:20 -07:00
|
|
|
$validator = \Validator::make($request->all(), $rules);
|
2018-04-24 02:54:54 -07:00
|
|
|
|
2017-08-25 18:40:20 -07:00
|
|
|
if ($validator->fails()) {
|
|
|
|
return response()->json(Helper::formatStandardApiResponse('error', null, $validator->errors()->all()));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
2017-08-25 10:04:19 -07:00
|
|
|
$asset = Asset::findOrFail($id);
|
2018-04-24 02:54:54 -07:00
|
|
|
|
2017-12-12 02:32:45 -08:00
|
|
|
// We don't want to log this as a normal update, so let's bypass that
|
|
|
|
$asset->unsetEventDispatcher();
|
|
|
|
|
2017-08-25 10:04:19 -07:00
|
|
|
$asset->next_audit_date = $request->input('next_audit_date');
|
2017-12-12 02:32:45 -08:00
|
|
|
$asset->last_audit_date = date('Y-m-d h:i:s');
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2018-09-07 05:39:41 -07:00
|
|
|
// Check to see if they checked the box to update the physical location,
|
|
|
|
// not just note it in the audit notes
|
|
|
|
if ($request->input('update_location')=='1') {
|
|
|
|
\Log::debug('update location in audit');
|
|
|
|
$asset->location_id = $request->input('location_id');
|
|
|
|
}
|
2018-04-24 02:54:54 -07:00
|
|
|
|
|
|
|
|
2017-08-25 10:04:19 -07:00
|
|
|
if ($asset->save()) {
|
2019-01-24 14:04:06 -08:00
|
|
|
$file_name = '';
|
|
|
|
// Upload an image, if attached
|
2018-04-24 02:54:54 -07:00
|
|
|
if ($request->hasFile('image')) {
|
2019-01-24 14:04:06 -08:00
|
|
|
$path = 'private_uploads/audits';
|
|
|
|
if (!Storage::exists($path)) Storage::makeDirectory($path, 775);
|
|
|
|
$upload = $image = $request->file('image');
|
|
|
|
$ext = $image->getClientOriginalExtension();
|
|
|
|
$file_name = 'audit-'.str_random(18).'.'.$ext;
|
|
|
|
Storage::putFileAs($path, $upload, $file_name);
|
2018-04-24 02:54:54 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-09-29 21:33:52 -07:00
|
|
|
$asset->logAudit($request->input('note'), $request->input('location_id'), $file_name);
|
2017-08-25 10:04:19 -07:00
|
|
|
return redirect()->to("hardware")->with('success', trans('admin/hardware/message.audit.success'));
|
|
|
|
}
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
2017-11-02 04:21:57 -07:00
|
|
|
|
2018-04-04 17:33:02 -07:00
|
|
|
public function getRequestedIndex($user_id = null)
|
2017-11-02 04:21:57 -07:00
|
|
|
{
|
2018-04-04 17:33:02 -07:00
|
|
|
$requestedItems = CheckoutRequest::with('user', 'requestedItem')->whereNull('canceled_at')->with('user', 'requestedItem');
|
|
|
|
|
|
|
|
if ($user_id) {
|
|
|
|
$requestedItems->where('user_id', $user_id)->get();
|
2017-11-02 04:21:57 -07:00
|
|
|
}
|
2018-04-04 17:33:02 -07:00
|
|
|
|
|
|
|
$requestedItems = $requestedItems->orderBy('created_at', 'desc')->get();
|
|
|
|
|
2017-11-02 04:21:57 -07:00
|
|
|
return view('hardware/requested', compact('requestedItems'));
|
|
|
|
}
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|