mirror of
https://github.com/snipe/snipe-it.git
synced 2025-01-12 06:17:28 -08:00
Merge pull request #2131 from dmeltzer/fix-license-checkout
Fix license Checkout.
This commit is contained in:
commit
3a101aa0c8
|
@ -208,6 +208,13 @@ class Helper
|
||||||
return $assets_list;
|
return $assets_list;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static function detailedAssetList()
|
||||||
|
{
|
||||||
|
|
||||||
|
$assets = array('' => trans('general.select_asset')) + Company::scopeCompanyables(Asset::all(), 'assets.company_id')->lists('detailed_name', 'id')->toArray();
|
||||||
|
return $assets;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
public static function customFieldsetList()
|
public static function customFieldsetList()
|
||||||
{
|
{
|
||||||
|
|
|
@ -287,7 +287,7 @@ class ComponentsController extends Controller
|
||||||
}
|
}
|
||||||
|
|
||||||
// Get the dropdown of assets and then pass it to the checkout view
|
// Get the dropdown of assets and then pass it to the checkout view
|
||||||
$assets_list = Helper::assetsList();
|
$assets_list = Helper::detailedAssetList();
|
||||||
|
|
||||||
return View::make('components/checkout', compact('component'))->with('assets_list', $assets_list);
|
return View::make('components/checkout', compact('component'))->with('assets_list', $assets_list);
|
||||||
|
|
||||||
|
|
|
@ -439,8 +439,7 @@ class LicensesController extends Controller
|
||||||
// Get the dropdown of users and then pass it to the checkout view
|
// Get the dropdown of users and then pass it to the checkout view
|
||||||
$users_list = Helper::usersList();
|
$users_list = Helper::usersList();
|
||||||
|
|
||||||
$assets = Company::scopeCompanyables(Asset::all(), 'assets.company_id')->lists('detailed_name', 'id');
|
$assets = Helper::detailedAssetList();
|
||||||
|
|
||||||
return View::make('licenses/checkout', compact('licenseseat'))
|
return View::make('licenses/checkout', compact('licenseseat'))
|
||||||
->with('users_list', $users_list)
|
->with('users_list', $users_list)
|
||||||
->with('asset_list', $assets);
|
->with('asset_list', $assets);
|
||||||
|
|
|
@ -32,7 +32,7 @@
|
||||||
@if ($component->name)
|
@if ($component->name)
|
||||||
<!-- consumable name -->
|
<!-- consumable name -->
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
<label class="col-sm-3 control-label">{{ trans('admin/consumables/general.consumable_name') }}</label>
|
<label class="col-sm-3 control-label">{{ trans('admin/components/general.component_name') }}</label>
|
||||||
<div class="col-md-6">
|
<div class="col-md-6">
|
||||||
<p class="form-control-static">{{ $component->name }}</p>
|
<p class="form-control-static">{{ $component->name }}</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in a new issue