mirror of
https://github.com/snipe/snipe-it.git
synced 2026-08-18 11:15:42 +00:00
117 lines
5.5 KiB
PHP
117 lines
5.5 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Transformers;
|
|
|
|
use App\Helpers\Helper;
|
|
use App\Models\Component;
|
|
use Illuminate\Database\Eloquent\Collection;
|
|
use Illuminate\Support\Facades\Gate;
|
|
use Illuminate\Support\Facades\Storage;
|
|
|
|
class ComponentsTransformer
|
|
{
|
|
public function transformComponents(Collection $components, $total)
|
|
{
|
|
$array = [];
|
|
foreach ($components as $component) {
|
|
$array[] = self::transformComponent($component);
|
|
}
|
|
|
|
return (new DatatablesTransformer)->transformDatatables($array, $total);
|
|
}
|
|
|
|
public function transformComponent(Component $component)
|
|
{
|
|
// See AccessoriesTransformer for the last-acquisition-with-fallback
|
|
// resolution pattern for supplier / purchase_date / purchase_cost.
|
|
$lastDefaults = $component->lastOrderDefaults();
|
|
$lastSupplier = $component->lastAcquisitionSupplier();
|
|
|
|
$array = [
|
|
'id' => (int) $component->id,
|
|
'name' => e($component->name),
|
|
'image' => ($component->image) ? Storage::disk('public')->url('components/'.e($component->image)) : null,
|
|
'qr_code_url' => route('qr_code/common', ['object_type' => 'components', 'id' => $component->id]),
|
|
'serial' => ($component->serial) ? e($component->serial) : null,
|
|
'location' => ($component->location) ? [
|
|
'id' => (int) $component->location->id,
|
|
'name' => e($component->location->name),
|
|
'tag_color' => $component->location->tag_color ? e($component->location->tag_color) : null,
|
|
] : null,
|
|
'qty' => ($component->qty != '') ? (int) $component->qty : null,
|
|
'min_amt' => ($component->min_amt != '') ? (int) $component->min_amt : null,
|
|
'category' => ($component->category) ? [
|
|
'id' => (int) $component->category->id,
|
|
'name' => e($component->category->name),
|
|
'tag_color' => $component->category->tag_color ? e($component->category->tag_color) : null,
|
|
] : null,
|
|
'supplier' => $lastSupplier ? [
|
|
'id' => $lastSupplier->id,
|
|
'name' => e($lastSupplier->name),
|
|
'tag_color' => $lastSupplier->tag_color ? e($lastSupplier->tag_color) : null,
|
|
] : null,
|
|
'manufacturer' => ($component->manufacturer) ? [
|
|
'id' => $component->manufacturer->id,
|
|
'name' => e($component->manufacturer->name),
|
|
'tag_color' => $component->manufacturer->tag_color ? e($component->manufacturer->tag_color) : null,
|
|
] : null,
|
|
'model_number' => ($component->model_number) ? e($component->model_number) : null,
|
|
// See AccessoriesTransformer for why order_number is no longer
|
|
// in the parent-level output.
|
|
'purchase_date' => ($lastDefaults['purchase_date'] ?? null) ? Helper::getFormattedDateObject($lastDefaults['purchase_date'], 'date') : null,
|
|
'purchase_cost' => Helper::formatCurrencyOutput($lastDefaults['unit_cost'] ?? null),
|
|
'total_cost' => Helper::formatCurrencyOutput($component->totalCostSum()),
|
|
'remaining' => (int) $component->numRemaining(),
|
|
'percent_remaining' => round($component->percentRemaining()),
|
|
'company' => ($component->company) ? [
|
|
'id' => (int) $component->company->id,
|
|
'name' => e($component->company->name),
|
|
'tag_color' => $component->company->tag_color ? e($component->company->tag_color) : null,
|
|
] : null,
|
|
'notes' => ($component->notes) ? Helper::parseEscapedMarkedownInline($component->notes) : null,
|
|
'created_by' => ($component->adminuser) ? [
|
|
'id' => (int) $component->adminuser->id,
|
|
'name' => e($component->adminuser->display_name),
|
|
] : null,
|
|
'created_at' => Helper::getFormattedDateObject($component->created_at, 'datetime'),
|
|
'updated_at' => Helper::getFormattedDateObject($component->updated_at, 'datetime'),
|
|
'user_can_checkout' => ($component->numRemaining() > 0) ? 1 : 0,
|
|
];
|
|
|
|
$permissions_array['available_actions'] = [
|
|
'checkout' => Gate::allows('checkout', Component::class),
|
|
'checkin' => Gate::allows('checkin', Component::class),
|
|
'update' => Gate::allows('update', Component::class),
|
|
'adjust_quantity' => Gate::allows('update', Component::class),
|
|
'clone' => Gate::allows('create', Component::class),
|
|
'delete' => $component->isDeletable(),
|
|
];
|
|
$array += $permissions_array;
|
|
|
|
return $array;
|
|
}
|
|
|
|
public function transformCheckedoutComponents(Collection $components_assets, $total)
|
|
{
|
|
$array = [];
|
|
foreach ($components_assets as $asset) {
|
|
$array[] = [
|
|
'assigned_pivot_id' => (int) $asset->pivot->id,
|
|
'name' => $this->transformAssignedTo($asset),
|
|
'qty' => $asset->pivot->assigned_qty, // legacy?
|
|
'assigned_qty' => $asset->pivot->assigned_qty,
|
|
'note' => ($asset->pivot->note) ? e($asset->pivot->note) : null,
|
|
'created_at' => Helper::getFormattedDateObject($asset->pivot->created_at, 'datetime'),
|
|
'available_actions' => ['checkin' => true],
|
|
];
|
|
}
|
|
|
|
return (new DatatablesTransformer)->transformDatatables($array, $total);
|
|
}
|
|
|
|
public function transformAssignedTo($componentCheckout)
|
|
{
|
|
return (new AssetsTransformer)->transformAssetCompact($componentCheckout);
|
|
}
|
|
}
|