|
|
{{ strtoupper($company->name ?? '-') }}{{ strtoupper($company->address ?? '-') }}
Phone : {{ $company->phone ?? '-' }}
|
| BARCODE | DESCRIPTION | QTY | PRICE | DISC | TOTAL PRICE |
|---|---|---|---|---|---|
| {{ $row->barcode }} | {{ $row->description }} | {{ number_format($row->qty, 0, ',', '.') }} | {{ number_format($row->price, 0, ',', '.') }} | {{ number_format($row->disc_amount, 0, ',', '.') }} | {{ number_format($row->total_price, 0, ',', '.') }} |
| No detail found | |||||
| TOTAL | {{ number_format($totals['qty'], 0, ',', '.') }} | {{ number_format($totals['gross'], 0, ',', '.') }} | {{ number_format($totals['disc'], 0, ',', '.') }} | {{ number_format($totals['total'], 0, ',', '.') }} | |
| Base Price | {{ number_format($taxSummary['base_price'], 0, ',', '.') }} |
| DPP | {{ number_format($taxSummary['dpp'], 0, ',', '.') }} |
| PPN 12% | {{ number_format($taxSummary['ppn'], 0, ',', '.') }} |
| Total Amount Payable | {{ number_format($taxSummary['total_amount_payable'], 0, ',', '.') }} |
| MARGIN {{ number_format($m['margin_percent'], 0, ',', '.') }}% | {{ number_format($m['amount'], 0, ',', '.') }} |
| MARGIN 0% | |
| Beneficiary Name | : | {{ $company->bank_name ?? '-' }} |
| Bank Name | : | {{ $company->bank ?? '-' }} |
| Branch | : | {{ $company->bank_branch ?? '-' }} |
| IDR Account | : | {{ $company->bank_account ?? '-' }} |