mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Merge remote-tracking branch 'origin/develop'
This commit is contained in:
commit
0f64d66cd8
|
@ -93,6 +93,54 @@ class BulkAssetsController extends Controller
|
||||||
|
|
||||||
$assets = Asset::with('assignedTo', 'location', 'model')->whereIn('assets.id', $asset_ids);
|
$assets = Asset::with('assignedTo', 'location', 'model')->whereIn('assets.id', $asset_ids);
|
||||||
|
|
||||||
|
$assets = $assets->get();
|
||||||
|
|
||||||
|
$models = $assets->unique('model_id');
|
||||||
|
$modelNames = [];
|
||||||
|
foreach($models as $model) {
|
||||||
|
$modelNames[] = $model->model->name;
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($request->filled('bulk_actions')) {
|
||||||
|
|
||||||
|
|
||||||
|
switch ($request->input('bulk_actions')) {
|
||||||
|
case 'labels':
|
||||||
|
$this->authorize('view', Asset::class);
|
||||||
|
|
||||||
|
return (new Label)
|
||||||
|
->with('assets', $assets)
|
||||||
|
->with('settings', Setting::getSettings())
|
||||||
|
->with('bulkedit', true)
|
||||||
|
->with('count', 0);
|
||||||
|
|
||||||
|
case 'delete':
|
||||||
|
$this->authorize('delete', Asset::class);
|
||||||
|
$assets->each(function ($assets) {
|
||||||
|
$this->authorize('delete', $assets);
|
||||||
|
});
|
||||||
|
|
||||||
|
return view('hardware/bulk-delete')->with('assets', $assets);
|
||||||
|
|
||||||
|
case 'restore':
|
||||||
|
$this->authorize('update', Asset::class);
|
||||||
|
$assets = Asset::withTrashed()->find($asset_ids);
|
||||||
|
$assets->each(function ($asset) {
|
||||||
|
$this->authorize('delete', $asset);
|
||||||
|
});
|
||||||
|
return view('hardware/bulk-restore')->with('assets', $assets);
|
||||||
|
|
||||||
|
case 'edit':
|
||||||
|
$this->authorize('update', Asset::class);
|
||||||
|
|
||||||
|
return view('hardware/bulk')
|
||||||
|
->with('assets', $asset_ids)
|
||||||
|
->with('statuslabel_list', Helper::statusLabelList())
|
||||||
|
->with('models', $models->pluck(['model']))
|
||||||
|
->with('modelNames', $modelNames);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
switch ($sort_override) {
|
switch ($sort_override) {
|
||||||
case 'model':
|
case 'model':
|
||||||
$assets->OrderModels($order);
|
$assets->OrderModels($order);
|
||||||
|
@ -128,54 +176,6 @@ class BulkAssetsController extends Controller
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
$assets = $assets->get();
|
|
||||||
|
|
||||||
$models = $assets->unique('model_id');
|
|
||||||
$modelNames = [];
|
|
||||||
foreach($models as $model) {
|
|
||||||
$modelNames[] = $model->model->name;
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($request->filled('bulk_actions')) {
|
|
||||||
|
|
||||||
|
|
||||||
switch ($request->input('bulk_actions')) {
|
|
||||||
case 'labels':
|
|
||||||
$this->authorize('view', Asset::class);
|
|
||||||
|
|
||||||
return (new Label)
|
|
||||||
->with('assets', $assets)
|
|
||||||
->with('settings', Setting::getSettings())
|
|
||||||
->with('bulkedit', true)
|
|
||||||
->with('count', 0);
|
|
||||||
|
|
||||||
case 'delete':
|
|
||||||
$this->authorize('delete', Asset::class);
|
|
||||||
$assets->each(function ($assets) {
|
|
||||||
$this->authorize('delete', $assets);
|
|
||||||
});
|
|
||||||
|
|
||||||
return view('hardware/bulk-delete')->with('assets', $assets);
|
|
||||||
|
|
||||||
case 'restore':
|
|
||||||
$this->authorize('update', Asset::class);
|
|
||||||
$assets = Asset::withTrashed()->find($asset_ids);
|
|
||||||
$assets->each(function ($asset) {
|
|
||||||
$this->authorize('delete', $asset);
|
|
||||||
});
|
|
||||||
return view('hardware/bulk-restore')->with('assets', $assets);
|
|
||||||
|
|
||||||
case 'edit':
|
|
||||||
$this->authorize('update', Asset::class);
|
|
||||||
|
|
||||||
return view('hardware/bulk')
|
|
||||||
->with('assets', $asset_ids)
|
|
||||||
->with('statuslabel_list', Helper::statusLabelList())
|
|
||||||
->with('models', $models->pluck(['model']))
|
|
||||||
->with('modelNames', $modelNames);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return redirect()->back()->with('error', 'No action selected');
|
return redirect()->back()->with('error', 'No action selected');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -127,7 +127,7 @@ class Label implements View
|
||||||
switch ($settings->label2_2d_target) {
|
switch ($settings->label2_2d_target) {
|
||||||
case 'ht_tag': $barcode2DTarget = route('ht/assetTag', $asset->asset_tag); break;
|
case 'ht_tag': $barcode2DTarget = route('ht/assetTag', $asset->asset_tag); break;
|
||||||
case 'hardware_id':
|
case 'hardware_id':
|
||||||
default: $barcode2DTarget = route('hardware.show', $asset->id); break;
|
default: $barcode2DTarget = route('hardware.show', ['hardware' => $asset->id]); break;
|
||||||
}
|
}
|
||||||
$assetData->put('barcode2d', (object)[
|
$assetData->put('barcode2d', (object)[
|
||||||
'type' => $barcode2DType,
|
'type' => $barcode2DType,
|
||||||
|
|
Loading…
Reference in a new issue