@extends('procurement::layouts.master') @section('title',$order->po_number) @section('content')
| Component | Part # | Ordered | Received | MOQ | Replenish | Unit $ | Tariff $ | Extended |
|---|---|---|---|---|---|---|---|---|
| {{ $line->component?->description ?? 'Custom line' }} | {{ $line->component?->part_number ?? '—' }} |
{{ $line->qty_ordered }} | {{ $line->qty_received }}@if($line->qty_received < $line->qty_ordered)@endif | {{ $line->moq }} | {{ $line->replenish_qty ?: '—' }} | ${{ number_format($line->unit_price,4) }} | ${{ number_format($line->tariff_amount,4) }} | ${{ number_format($line->extended_price,2) }} |
| Total: | ${{ number_format($order->total_amount,2) }} | |||||||
| Invoice # | Date | Due | Status | Amount |
|---|---|---|---|---|
| {{ $inv->invoice_number }} | {{ $inv->invoice_date->format('M j, Y') }} | {{ $inv->due_date?->format('M j, Y') ?? '—' }} | {{ ucfirst($inv->status) }} | ${{ number_format($inv->amount,2) }} {{ $inv->currency }} |
| No invoices | ||||
| Date | Component | Qty | Condition | Bin | By |
|---|---|---|---|---|---|
| {{ $r->received_date->format('M j, Y') }} | {{ $r->component?->description ?? '—' }} | {{ $r->qty_received }} | {{ ucfirst($r->condition) }} | {{ $r->bin_location ?: '—' }} | {{ $r->received_by ?: '—' }} |
| Nothing received yet | |||||