{{-- header --}} @php($breadcrumbs = ['EDI連携' => null, 'トラスコ中山' => route('edi-trusco.dashboard'), '受注残確認リスト' => null])
{{-- 検索条件 --}}
@csrf {{-- |基本条件 --}}
{{-- データリスト --}}
全{{ number_format($total_count ?? 0) }}件中 {{ number_format(($delivery_data->currentPage() - 1) * $delivery_data->perPage() + 1) }}〜{{ number_format(min($delivery_data->currentPage() * $delivery_data->perPage(), $total_count ?? 0)) }}件を表示
@forelse($delivery_data ?? [] as $row) {{-- 1行目 --}} {{-- 2行目 --}} @empty @endforelse
No 納入先 JANコード 商品名 在庫数 注文数 出荷予定日 到着予定日 備考
注文番号 出荷可能数 出荷数 出荷ロット(賞味期限)
{{ ($delivery_data->currentPage() - 1) * $delivery_data->perPage() + $loop->iteration }} {{ $row['delivery_name'] ?? '配送先名' }} {{ $row['jan_code'] ?? $row['product_code'] }} {{ $row['product_name'] }} {{ number_format($row['current_stock']) }} {{ number_format($row['order_quantity']) }} {{ $row['shipment_date'] ?? '-' }} {{ $row['arrival_date'] ?? '-' }} {{ $row['notes'] ?? '' }}
{{ $row['order_number'] }} {{ number_format($row['available_qty']) }} {{ number_format($row['shipment_qty'] ?? 0) }} @if(($row['product_type'] ?? 1) == 2 && ($row['stock_control_type'] ?? 1) == 1)
@if(is_array($row['lot_info'] ?? null) && !empty($row['lot_info'])) @foreach($row['lot_info'] as $lot) 賞味期限:{{ $lot['expiration_date'] ?? '' }}({{ $lot['quantity'] ?? 0 }}個) @if(!$loop->last)
@endif @endforeach @else - @endif
@else
-
@endif
受注残データがありません