mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-26 14:09:43 -08:00
Merge branch 'feature-label2' into develop
This commit is contained in:
commit
0f3c5d10ba
|
@ -444,7 +444,7 @@ class AssetsController extends Controller
|
|||
* @since [v3.0]
|
||||
* @return Redirect
|
||||
*/
|
||||
public function getAssetByTag($tag=null, Request $request)
|
||||
public function getAssetByTag(Request $request, $tag=null)
|
||||
{
|
||||
$tag = $tag ? $tag : $request->get('assetTag');
|
||||
$topsearch = ($request->get('topsearch') == 'true');
|
||||
|
|
|
@ -24,42 +24,38 @@ class LabelsController extends Controller
|
|||
*/
|
||||
public function show(string $labelName)
|
||||
{
|
||||
$this->authorize('view', Label::class);
|
||||
|
||||
$labelName = str_replace('/', '\\', $labelName);
|
||||
$template = Label::find($labelName);
|
||||
|
||||
$this->authorize('view', $template);
|
||||
$exampleAsset = new Asset();
|
||||
|
||||
$testAsset = new Asset();
|
||||
$exampleAsset->id = 999999;
|
||||
$exampleAsset->name = 'AST-AB-CD-1234';
|
||||
$exampleAsset->asset_tag = 'TCA-00001';
|
||||
$exampleAsset->serial = 'SN9876543210';
|
||||
|
||||
$testAsset->id = 999999;
|
||||
$testAsset->name = 'AST-AB-CD-1234';
|
||||
$testAsset->asset_tag = 'TCA-00001';
|
||||
$testAsset->serial = 'SN9876543210';
|
||||
$exampleAsset->company = new Company();
|
||||
$exampleAsset->company->id = 999999;
|
||||
$exampleAsset->company->name = 'Test Company Limited';
|
||||
$exampleAsset->company->image = 'company-image-test.png';
|
||||
|
||||
$testAsset->company = new Company();
|
||||
$testAsset->company->id = 999999;
|
||||
$testAsset->company->name = 'Test Company Limited';
|
||||
$testAsset->company->image = 'company-image-test.png';
|
||||
$exampleAsset->assignedto = new User();
|
||||
$exampleAsset->assignedto->id = 999999;
|
||||
$exampleAsset->assignedto->first_name = 'Test';
|
||||
$exampleAsset->assignedto->last_name = 'Person';
|
||||
$exampleAsset->assignedto->username = 'Test.Person';
|
||||
$exampleAsset->assignedto->employee_num = '0123456789';
|
||||
|
||||
$testAsset->assignedto = new User();
|
||||
$testAsset->assignedto->id = 999999;
|
||||
$testAsset->assignedto->first_name = 'Test';
|
||||
$testAsset->assignedto->last_name = 'Person';
|
||||
$testAsset->assignedto->username = 'Test.Person';
|
||||
$testAsset->assignedto->employee_num = '0123456789';
|
||||
|
||||
$testAsset->model = new AssetModel();
|
||||
$testAsset->model->id = 999999;
|
||||
$testAsset->model->name = 'Test Model';
|
||||
$testAsset->model->model_number = 'MDL5678';
|
||||
$testAsset->model->manufacturer = new Manufacturer();
|
||||
$testAsset->model->manufacturer->id = 999999;
|
||||
$testAsset->model->manufacturer->name = 'Test Manufacturing Inc.';
|
||||
$testAsset->model->category = new Category();
|
||||
$testAsset->model->category->id = 999999;
|
||||
$testAsset->model->category->name = 'Test Category';
|
||||
$exampleAsset->model = new AssetModel();
|
||||
$exampleAsset->model->id = 999999;
|
||||
$exampleAsset->model->name = 'Test Model';
|
||||
$exampleAsset->model->model_number = 'MDL5678';
|
||||
$exampleAsset->model->manufacturer = new Manufacturer();
|
||||
$exampleAsset->model->manufacturer->id = 999999;
|
||||
$exampleAsset->model->manufacturer->name = 'Test Manufacturing Inc.';
|
||||
$exampleAsset->model->category = new Category();
|
||||
$exampleAsset->model->category->id = 999999;
|
||||
$exampleAsset->model->category->name = 'Test Category';
|
||||
|
||||
$settings = Setting::getSettings();
|
||||
if (request()->has('settings')) {
|
||||
|
@ -70,7 +66,7 @@ class LabelsController extends Controller
|
|||
}
|
||||
|
||||
return (new LabelView())
|
||||
->with('assets', collect([$testAsset]))
|
||||
->with('assets', collect([$exampleAsset]))
|
||||
->with('settings', $settings)
|
||||
->with('template', $template)
|
||||
->with('bulkedit', false)
|
||||
|
|
|
@ -124,9 +124,9 @@ class Label implements View
|
|||
if ($template->getSupport2DBarcode()) {
|
||||
$barcode2DType = $settings->label2_2d_type;
|
||||
$barcode2DType = ($barcode2DType == 'default') ?
|
||||
(($settings->qr_code) ? $settings->barcode_type : null) :
|
||||
$settings->barcode_type :
|
||||
$barcode2DType;
|
||||
if ($barcode2DType != 'none') {
|
||||
if (($barcode2DType != 'none') && (!is_null($barcode2DType))) {
|
||||
switch ($settings->label2_2d_target) {
|
||||
case 'ht_tag': $barcode2DTarget = route('ht/assetTag', $asset->asset_tag); break;
|
||||
case 'hardware_id':
|
||||
|
|
Loading…
Reference in a new issue