Quote To :
{{ $poCustomer->customer ? $poCustomer->customer->address ?? '-' : "-" }}
Attention :
{{ $poCustomer->customer ? $poCustomer->customer->name ?? '-' : "-" }}
Deskripsi :
{{ $poCustomer->description ?? '-' }}
QUOTATION
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
@php $no = 1; @endphp @foreach($poCustomer->po_customer_details as $item) @endForeach
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,',','.') }}
> @if($poCustomer->discount > 0.00) @if($poCustomer->discount_type == "NOMINAL") @else @endif @endif {{-- @if($poCustomer->dp > 0.00) @endif --}}
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,',','.') }}
AUTHORIZED SIGNATURE
{{ $setting->first(function($item){ return $item->name == "signature_owner"; })->value }}