2016-03-25 15:50:08 -07:00
|
|
|
<?php
|
2016-04-07 13:21:09 -07:00
|
|
|
namespace App\Http\Controllers;
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
use App\Helpers\Helper;
|
|
|
|
use App\Models\Company;
|
|
|
|
use App\Models\Component;
|
2016-12-23 17:52:00 -08:00
|
|
|
use App\Models\CustomField;
|
2016-03-25 01:18:05 -07:00
|
|
|
use App\Models\Setting;
|
|
|
|
use App\Models\User;
|
|
|
|
use App\Models\Asset;
|
|
|
|
use Auth;
|
|
|
|
use Config;
|
|
|
|
use DB;
|
|
|
|
use Input;
|
|
|
|
use Lang;
|
|
|
|
use Mail;
|
|
|
|
use Redirect;
|
|
|
|
use Slack;
|
|
|
|
use Str;
|
|
|
|
use View;
|
2016-06-22 15:59:00 -07:00
|
|
|
use Validator;
|
|
|
|
use Illuminate\Http\Request;
|
2016-08-02 00:54:38 -07:00
|
|
|
use Gate;
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2016-04-07 13:21:09 -07:00
|
|
|
/**
|
|
|
|
* This class controls all actions related to Components for
|
|
|
|
* the Snipe-IT Asset Management application.
|
|
|
|
*
|
|
|
|
* @version v1.0
|
|
|
|
*/
|
2016-03-25 01:18:05 -07:00
|
|
|
class ComponentsController extends Controller
|
|
|
|
{
|
|
|
|
/**
|
2016-03-28 22:51:49 -07:00
|
|
|
* Returns a view that invokes the ajax tables which actually contains
|
|
|
|
* the content for the components listing, which is generated in getDatatable.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @see ComponentsController::getDatatable() method that generates the JSON response
|
|
|
|
* @since [v3.0]
|
2016-12-19 22:00:50 -08:00
|
|
|
* @return \Illuminate\Contracts\View\View
|
2016-03-28 22:51:49 -07:00
|
|
|
*/
|
2016-12-15 19:59:42 -08:00
|
|
|
public function index()
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
2016-12-19 11:04:28 -08:00
|
|
|
$this->authorize('view', Component::class);
|
2017-06-09 16:44:03 -07:00
|
|
|
return view('components/index');
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2016-03-28 22:51:49 -07:00
|
|
|
* Returns a form to create a new component.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @see ComponentsController::postCreate() method that stores the data
|
|
|
|
* @since [v3.0]
|
2016-12-19 22:00:50 -08:00
|
|
|
* @return \Illuminate\Contracts\View\View
|
2016-03-28 22:51:49 -07:00
|
|
|
*/
|
2016-12-15 19:59:42 -08:00
|
|
|
public function create()
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
2016-12-19 11:04:28 -08:00
|
|
|
$this->authorize('create', Component::class);
|
2016-03-25 01:18:05 -07:00
|
|
|
// Show the page
|
2017-06-09 16:44:03 -07:00
|
|
|
return view('components/edit')
|
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
|
|
|
->with('item', new Component)
|
2016-12-19 22:00:50 -08:00
|
|
|
->with('category_list', Helper::categoryList('component'))
|
|
|
|
->with('company_list', Helper::companyList())
|
|
|
|
->with('location_list', Helper::locationsList());
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2016-03-28 22:51:49 -07:00
|
|
|
* Validate and store data for new component.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @see ComponentsController::getCreate() method that generates the view
|
|
|
|
* @since [v3.0]
|
2016-12-19 22:00:50 -08:00
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
*/
|
2017-09-27 14:50:48 -07:00
|
|
|
public function store(Request $request)
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
2016-12-19 11:04:28 -08:00
|
|
|
$this->authorize('create', Component::class);
|
2016-03-25 01:18:05 -07:00
|
|
|
$component = new Component();
|
2017-09-27 14:50:48 -07:00
|
|
|
$component->name = $request->input('name');
|
|
|
|
$component->category_id = $request->input('category_id');
|
|
|
|
$component->location_id = $request->input('location_id');
|
|
|
|
$component->company_id = Company::getIdForCurrentUser($request->input('company_id'));
|
|
|
|
$component->order_number = $request->input('order_number', null);
|
|
|
|
$component->min_amt = $request->input('min_amt', null);
|
|
|
|
$component->serial = $request->input('serial', null);
|
|
|
|
$component->purchase_date = $request->input('purchase_date', null);
|
|
|
|
$component->purchase_cost = $request->input('purchase_cost', null);
|
|
|
|
$component->qty = $request->input('qty');
|
2016-12-19 22:00:50 -08:00
|
|
|
$component->user_id = Auth::id();
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
if ($component->save()) {
|
2016-12-15 19:59:42 -08:00
|
|
|
return redirect()->route('components.index')->with('success', trans('admin/components/message.create.success'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
2016-04-28 21:06:41 -07:00
|
|
|
return redirect()->back()->withInput()->withErrors($component->getErrors());
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-03-28 22:51:49 -07:00
|
|
|
* Return a view to edit a component.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @see ComponentsController::postEdit() method that stores the data.
|
|
|
|
* @since [v3.0]
|
|
|
|
* @param int $componentId
|
2016-12-19 22:00:50 -08:00
|
|
|
* @return \Illuminate\Contracts\View\View
|
|
|
|
*/
|
2016-12-15 19:59:42 -08:00
|
|
|
public function edit($componentId = 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 (is_null($item = Component::find($componentId))) {
|
2016-12-15 19:59:42 -08:00
|
|
|
return redirect()->route('components.index')->with('error', trans('admin/components/message.does_not_exist'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
2016-12-19 11:04:28 -08:00
|
|
|
$this->authorize('update', $item);
|
|
|
|
|
2017-06-09 16:44:03 -07:00
|
|
|
return view('components/edit', compact('item'))
|
2016-12-19 22:00:50 -08:00
|
|
|
->with('category_list', Helper::categoryList('component'))
|
|
|
|
->with('company_list', Helper::companyList())
|
|
|
|
->with('location_list', Helper::locationsList());
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2016-03-28 22:51:49 -07:00
|
|
|
* Return a view to edit a component.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @see ComponentsController::getEdit() method presents the form.
|
|
|
|
* @param int $componentId
|
|
|
|
* @since [v3.0]
|
2016-12-19 22:00:50 -08:00
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
*/
|
2016-12-15 19:59:42 -08:00
|
|
|
public function update($componentId = null)
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
|
|
|
if (is_null($component = Component::find($componentId))) {
|
2016-12-15 19:59:42 -08:00
|
|
|
return redirect()->route('components.index')->with('error', trans('admin/components/message.does_not_exist'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
2016-12-19 11:04:28 -08:00
|
|
|
$this->authorize('update', $component);
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
// Update the component data
|
2016-12-19 22:00:50 -08:00
|
|
|
$component->name = Input::get('name');
|
|
|
|
$component->category_id = Input::get('category_id');
|
|
|
|
$component->location_id = Input::get('location_id');
|
2016-03-25 01:18:05 -07:00
|
|
|
$component->company_id = Company::getIdForCurrentUser(Input::get('company_id'));
|
2016-12-19 22:00:50 -08:00
|
|
|
$component->order_number = Input::get('order_number');
|
|
|
|
$component->min_amt = Input::get('min_amt');
|
|
|
|
$component->serial = Input::get('serial');
|
2016-12-26 15:17:46 -08:00
|
|
|
$component->purchase_date = Input::get('purchase_date');
|
|
|
|
$component->purchase_cost = request('purchase_cost');
|
2016-12-19 22:00:50 -08:00
|
|
|
$component->qty = Input::get('qty');
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
if ($component->save()) {
|
2016-12-15 19:59:42 -08:00
|
|
|
return redirect()->route('components.index')->with('success', trans('admin/components/message.update.success'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
2016-04-28 21:06:41 -07:00
|
|
|
return redirect()->back()->withInput()->withErrors($component->getErrors());
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-03-28 22:51:49 -07:00
|
|
|
* Delete a component.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @since [v3.0]
|
|
|
|
* @param int $componentId
|
2016-12-19 22:00:50 -08:00
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
*/
|
2016-12-15 19:59:42 -08:00
|
|
|
public function destroy($componentId)
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
|
|
|
if (is_null($component = Component::find($componentId))) {
|
2016-12-15 19:59:42 -08:00
|
|
|
return redirect()->route('components.index')->with('error', trans('admin/components/message.not_found'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
2016-12-19 11:04:28 -08:00
|
|
|
$this->authorize('delete', $component);
|
2016-12-15 19:59:42 -08:00
|
|
|
$component->delete();
|
|
|
|
return redirect()->route('components.index')->with('success', trans('admin/components/message.delete.success'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
public function postBulk($componentId = null)
|
|
|
|
{
|
2016-12-19 11:04:28 -08:00
|
|
|
//$this->authorize('checkout', $component)
|
2016-03-25 01:18:05 -07:00
|
|
|
echo 'Stubbed - not yet complete';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function postBulkSave($componentId = null)
|
|
|
|
{
|
2016-12-19 11:04:28 -08:00
|
|
|
//$this->authorize('edit', Component::class);
|
2016-03-25 01:18:05 -07:00
|
|
|
echo 'Stubbed - not yet complete';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2016-03-28 22:51:49 -07:00
|
|
|
* Return a view to display component information.
|
2016-03-25 01:18:05 -07:00
|
|
|
*
|
2016-03-28 22:51:49 -07:00
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @see ComponentsController::getDataView() method that generates the JSON response
|
|
|
|
* @since [v3.0]
|
|
|
|
* @param int $componentId
|
2016-12-19 22:00:50 -08:00
|
|
|
* @return \Illuminate\Contracts\View\View
|
|
|
|
*/
|
2016-12-15 19:59:42 -08:00
|
|
|
public function show($componentId = null)
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
2016-03-28 22:51:49 -07:00
|
|
|
$component = Component::find($componentId);
|
2016-03-25 01:18:05 -07:00
|
|
|
|
|
|
|
if (isset($component->id)) {
|
2016-12-19 11:04:28 -08:00
|
|
|
$this->authorize('view', $component);
|
2017-06-09 16:44:03 -07:00
|
|
|
return view('components/view', compact('component'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
2016-12-19 11:04:28 -08:00
|
|
|
// Prepare the error message
|
|
|
|
$error = trans('admin/components/message.does_not_exist', compact('id'));
|
|
|
|
// Redirect to the user management page
|
2017-03-11 12:13:35 -08:00
|
|
|
return redirect()->route('components.index')->with('error', $error);
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-03-28 22:51:49 -07:00
|
|
|
* Returns a view that allows the checkout of a component to an asset.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @see ComponentsController::postCheckout() method that stores the data.
|
|
|
|
* @since [v3.0]
|
|
|
|
* @param int $componentId
|
2016-12-19 22:00:50 -08:00
|
|
|
* @return \Illuminate\Contracts\View\View
|
|
|
|
*/
|
2016-03-25 01:18:05 -07:00
|
|
|
public function getCheckout($componentId)
|
|
|
|
{
|
|
|
|
// Check if the component exists
|
|
|
|
if (is_null($component = Component::find($componentId))) {
|
|
|
|
// Redirect to the component management page with error
|
2016-12-15 20:02:47 -08:00
|
|
|
return redirect()->route('components.index')->with('error', trans('admin/components/message.not_found'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
2016-12-19 11:04:28 -08:00
|
|
|
$this->authorize('checkout', $component);
|
2017-06-09 16:44:03 -07:00
|
|
|
return view('components/checkout', compact('component'))->with('assets_list', Helper::detailedAssetList());
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2016-12-19 22:00:50 -08:00
|
|
|
* Validate and store checkout data.
|
|
|
|
*
|
|
|
|
* @author [A. Gianotto] [<snipe@snipe.net>]
|
|
|
|
* @see ComponentsController::getCheckout() method that returns the form.
|
|
|
|
* @since [v3.0]
|
|
|
|
* @param Request $request
|
|
|
|
* @param int $componentId
|
|
|
|
* @return \Illuminate\Http\RedirectResponse
|
|
|
|
*/
|
2016-06-22 15:59:00 -07:00
|
|
|
public function postCheckout(Request $request, $componentId)
|
2016-03-25 01:18:05 -07:00
|
|
|
{
|
2016-06-22 15:59:00 -07:00
|
|
|
// Check if the component exists
|
2016-03-25 01:18:05 -07:00
|
|
|
if (is_null($component = Component::find($componentId))) {
|
|
|
|
// Redirect to the component management page with error
|
2016-12-15 20:02:47 -08:00
|
|
|
return redirect()->route('components.index')->with('error', trans('admin/components/message.not_found'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
2016-12-19 11:04:28 -08:00
|
|
|
$this->authorize('checkout', $component);
|
2016-06-22 15:59:00 -07:00
|
|
|
|
|
|
|
$max_to_checkout = $component->numRemaining();
|
2016-12-29 14:02:18 -08:00
|
|
|
$validator = Validator::make($request->all(), [
|
2016-06-22 15:59:00 -07:00
|
|
|
"asset_id" => "required",
|
|
|
|
"assigned_qty" => "required|numeric|between:1,$max_to_checkout"
|
|
|
|
]);
|
|
|
|
|
|
|
|
if ($validator->fails()) {
|
|
|
|
return redirect()->back()
|
|
|
|
->withErrors($validator)
|
|
|
|
->withInput();
|
|
|
|
}
|
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
$admin_user = Auth::user();
|
|
|
|
$asset_id = e(Input::get('asset_id'));
|
|
|
|
|
|
|
|
// Check if the user exists
|
|
|
|
if (is_null($asset = Asset::find($asset_id))) {
|
|
|
|
// Redirect to the component management page with error
|
2016-12-15 19:59:42 -08:00
|
|
|
return redirect()->route('components.index')->with('error', trans('admin/components/message.asset_does_not_exist'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
2016-12-15 19:59:42 -08:00
|
|
|
|
2016-03-25 01:18:05 -07:00
|
|
|
// Update the component data
|
|
|
|
$component->asset_id = $asset_id;
|
|
|
|
|
2016-12-19 22:00:50 -08:00
|
|
|
$component->assets()->attach($component->id, [
|
|
|
|
'component_id' => $component->id,
|
|
|
|
'user_id' => $admin_user->id,
|
|
|
|
'created_at' => date('Y-m-d H:i:s'),
|
|
|
|
'assigned_qty' => Input::get('assigned_qty'),
|
|
|
|
'asset_id' => $asset_id
|
|
|
|
]);
|
2016-03-25 01:18:05 -07:00
|
|
|
|
2017-08-31 11:14:21 -07:00
|
|
|
$component->logCheckout(e(Input::get('note')), $asset);
|
2016-12-15 19:59:42 -08:00
|
|
|
return redirect()->route('components.index')->with('success', trans('admin/components/message.checkout.success'));
|
2016-03-25 01:18:05 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|