{{-- ★差異リストを表示|##TODO:0801%005 --}} @php($th = 'livewire.partials.sort-th') @foreach($details as $row) @if($row->actual_quantity == 0) @elseif(Enum::match('InventoryStocktakingInputType.HT', $row->input_type)) @else @endif @endforeach
No @include($th, ['key'=>'warehouse_name','text'=>'倉庫']) @include($th, ['key'=>'product_code','text'=>'商品コード']) @include($th, ['key'=>'product_name','text'=>'商品名']) @include($th, ['key'=>'product_spec','text'=>'品番/規格']) @include($th, ['key'=>'expiration_date','text'=>'賞味期限']) @include($th, ['key'=>'expected_quantity','text'=>'理論在庫']) @include($th, ['key'=>'actual_quantity','text'=>'実在庫']) @include($th, ['key'=>'difference_quantity','text'=>'差異']) @include($th, ['key'=>'input_type','text'=>'入力区分'])
{{($loop->iteration)}} {{$row->warehouse->warehouse_name}} {{$row->product->product_code}} {{$row->product->product_name}} {{$row->product->product_spec}} {{$row?->inventoryLot?->expiration_date}} {{num_format($row->expected_quantity)}} {{num_format($row->actual_quantity)}} {{num_format($row->difference_quantity)}}未入力{{ Enum::name('InventoryStocktakingInputType', $row->input_type)}}