{{ $workorder->number }}
|
|
Tanggal |
: |
{{ Common::dateFormat($workorder->setdate, 'dd mmmm yyyy') }} |
Nama Pelanggan |
: |
{{ $workorder->sales->customer->name }} |
Alamat Pelanggan |
: |
{{ $workorder->sales->customer->address }} |
Jumlah |
: |
{{ number_format($workorder->sales->amount, 0, '', '.') . ' Lembar' }} |
Tipe Bahan yang Dikerjakan
{{ $workorder->sales->material->name }}
{{ $workorder->sales->material_descr }}
Pekerjaan
No |
Jenis Pekerjaan |
Keterangan |
Qty |
Harga |
Total |
@php
$works = json_decode($workorder->work);
$no = 1;
@endphp
@foreach ($works as $w)
@php
$work = ParameterDetail::select('name')->where('id', $w->id)->first();
@endphp
{{ $no }} |
{{ $work->name }} |
{{ $w->descr }} |
{{ number_format($w->qty, 0, '', '.') }} |
{{ number_format($w->price, 0, '', '.') }} |
{{ number_format($w->total, 0, '', '.') }} |
@php
$no++;
@endphp
@endforeach
Sub Total |
{{ number_format($workorder->subtotal, 0, '', '.') }} |
PPN ({{ $ppn_percent }}%) |
{{ number_format($workorder->ppn, 0, '', '.') }} |
PPH ({{ $pph_percent }}%) |
{{ number_format($workorder->pph, 0, '', '.') }} |
Total |
{{ number_format($workorder->total, 0, '', '.') }} |