Upload CSV, preview, lalu import ke inventaris (TOKO).
Duplikat ditentukan dari nama produk (create-only). Kolom SEDUH disimpan sebagai catatan di deskripsi.
| Barang | Modal | Harga Jual | Stok | Margin% | Status |
|---|---|---|---|---|---|
|
{{ $row['name'] }}
@if(!empty($row['description']))
{{ $row['description'] }}
@endif
@if(!empty($row['warning']))
{{ $row['warning'] }}
@endif
|
Rp {{ number_format($row['buyPrice'] ?? 0, 0, ',', '.') }} | Rp {{ number_format($row['sellPrice'] ?? 0, 0, ',', '.') }} | {{ $row['stock'] ?? 0 }} | {{ $row['marginPercent'] !== null ? number_format($row['marginPercent'], 2, ',', '.') : '-' }} | @php($status = $row['status'] ?? 'OK') @if($status === 'DUPLICATE') Duplikat @elseif($status === 'INVALID') Invalid @else OK @endif |