{{-- 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 }} {{ trim(($row->delivery_name1 ?? '') . ($row->delivery_name2 ?? '')) }} {{ $row->jan_code ?? $row->product_code }} {{ $row->product?->product_name ?? $row->product_name }} {{ number_format($row->current_stock ?? 0) }} {{ number_format($row->order_qty) }} {{ $row->shipment_date ? \Carbon\Carbon::parse($row->shipment_date)->format('Y/m/d') : '-' }} {{ $row->delivery_date ? \Carbon\Carbon::parse($row->delivery_date)->format('Y/m/d') : '-' }} {{ $row->notes ?? '' }}
{{ $row->ediOrderHeader?->edi_order_number ?? '' }} {{ number_format($row->available_qty ?? 0) }} {{ number_format($row->shipment_qty ?? 0) }} @if(($row->product?->product_type ?? 1) == 2 && ($row->product?->stock_control_type ?? 1) == 1)
@if(is_array($row->lot_info ?? null) && !empty($row->lot_info)) @foreach($row->lot_info as $lot) 賞味期限:{{ isset($lot['expiration_date']) ? date('Y/m/d', strtotime($lot['expiration_date'])) : '' }}({{ $lot['quantity'] ?? 0 }}個) @if(!$loop->last)
@endif @endforeach @else - @endif
@else
-
@endif
受注・出荷データがありません