Kode Penjualaan | Kode Produk | Nama Produk | Satuan | Jumlah | Harga | Discount | Total | Cogs | Margin |
{{ $item->selling ? $item->selling->code : "-" }} | {{ $item->product ? $item->product->code : "-" }} | {{ $item->product ? $item->product->name : "-" }} | {{ $item->product ? $item->product->selling_unit : "-" }} | {{ number_format($item->quantity ?? 0,2,',','.') }} | {{ number_format($item->price ?? 0,2,',','.') }} | @if($item->selling) @if($item->selling->discount_type == "NOMINAL") ( RP ) @else ( % ) @endif @endif {{ number_format($item->discount ?? 0,2,',','.') }} | {{ number_format($item->amount ?? 0,2,',','.') }} | {{ number_format($item->cost_of_products_sold ?? 0,2,',','.') }} |
Margin (RP) : {{$itemMarginNominal}} Margin (%) : {{$itemMarginPercent}} |
Data tidak ditemukan |
|||||||||
Total Harga | {{ number_format($grandTotalPrice ?? 0,2,',','.') }} | ||||||||
Total Cogs | {{ number_format($grandTotalCogs ?? 0,2,',','.') }} | ||||||||
Total Margin (Rp) | {{ number_format($grandTotalMarginNominal ?? 0,2,',','.') }} | ||||||||
Total Margin (%) | {{ number_format($grandTotalMarginPercent ?? 0,2,',','.') }} |