Phone | : | {{ $setting->first(function($item){ return $item->name == "phone"; })->value }} |
: | {{ $setting->first(function($item){ return $item->name == "email"; })->value }} | |
Website | : | {{ $setting->first(function($item){ return $item->name == 'website'; })->value }} |
Quote # | {{ $poCustomer->quotation ? $poCustomer->quotation->code ?? "-" : "-" }} |
Date | {{ now()->parse($poCustomer->date)->format("d/m/Y") }} |
Sales Rep. | @if($poCustomer->customer) {{ $poCustomer->customer->seller ? $poCustomer->customer->seller->name ?? "-" : "" }} @else - @endif |
No | Qty | Item | Kode Item | Deskripsi | price IDR | Total |
{{ $no++ }} | {{ number_format($item->quantity ?? 0,2,',','.') }} ( {{ $item->product ? $item->product->selling_unit ?? "-" : "-"}} ) | {{ $item->product ? $item->product->name ?? "-" : "-" }} | {{ $item->product ? $item->product->code ?? "-" : "-" }} |
@if($item->product)
{{ $item->product->description ?? "-" }}
Disc {{ number_format($item->discount ?? 0,2,',','.') }}
@if($poCustomer->discount_type == "NOMINAL")
*Rp
@else
%
@endif
@else
-
@endif
|
{{ number_format($item->price ?? 0,2,',','.') }} | {{ number_format($item->amount ?? 0,2,',','.') }} |
Total | {{ number_format($poCustomer->total ?? 0,2,',','.') }} | |
Discount @if($poCustomer->discount_type == "NOMINAL") *Rp @else % @endif | {{ number_format($poCustomer->discount ?? 0,2,',','.') }} | |
Total Stl Discount | {{ number_format(ceil(floatval($poCustomer->total) - floatval($poCustomer->discount)) ?? 0,2,',','.') }} | |
Total Stl Discount | {{ number_format(ceil(floatval($poCustomer->total) - (floatval($poCustomer->total) * (floatval($poCustomer->discount) / 100.00))) ?? 0,2,',','.') }} | |
PPn | {{ number_format($poCustomer->tax ?? 0,2,',','.') }} | |
Harga Stl PPn | {{ number_format($poCustomer->grand_total ?? 0,2,',','.') }} | |
Dp(Uang Muka) | {{ number_format($poCustomer->dp ?? 0,2,",",".") }} | |
Harga Stl Dp | {{ number_format(floatval($poCustomer->grand_total) - floatval($poCustomer->dp) ?? 0,2,',','.') }} |