@extends('layouts.main') @section('content') @include('reports.cycle-count.partials.cycle-count-submenu') @include('partials.breadcrumb', ['breadcrumbTitle' => 'Inventory Report Details', 'parentUrl' => '/inventory-control/inventory-report', 'parentTitle' => 'Inventory Report'])
@if($history->name)
Report Name
{{$history->name}}
@endif
Location
{{$history->location_name}}
Asset types selected
{{$assetTypes}}
Scanned by
{{$history->scanned_by}}
Date Scanned
{{$history->date}}
Total # of Assets
{{$history->total_assets}}
Total # of assets physically scanned
{{$history->total_assets_scanned}}
Total # of Assets Matched
{{$history->match_y}}
{{-- Assets scanned but not present + assets scanned bit in another location --}}
Total # of Process Errors
{{$history->positive_variance}}
{{-- assets not scanned --}}
Total # of Unknown Shrinkage
{{$history->assets_not_scanned ?? ''}}
% of Accuracy
{{$history->accuracy}}%
% of Variance
{{ $history->variance }}%
@if($history->report_csv) @endif
@endsection @section('help-links') @include('help.help-links',['helpLink'=>config('help-links.help_links.cycle_count'),'helpTitle'=>config('help-links.help_titles.cycle_count')]) @endsection @section('after_scripts') @include('assets.partials.scripts.common') @endsection