{% if po_s.po_logo %}

{% endif %}
{{ po_s.po_nama }}
{% if po_s.po_tagline %}
{{ po_s.po_tagline }}
{% endif %}
{% if po_s.po_alamat %}
{{ po_s.po_alamat }}
{% endif %}
{% if po_s.po_telepon %}
{{ po_s.po_telepon }}
{% endif %}
{% if po_s.po_email %}
{{ po_s.po_email }}
{% endif %}
PURCHASE ORDER
{{ po.nomor }}
Kepada Vendor
{{ po.vendor }}
{% if po.alamat_vendor %}
{{ po.alamat_vendor }}
{% endif %}
{% if po.telepon_vendor %}
{{ po.telepon_vendor }}
{% endif %}
| Tanggal PO | {{ po.tanggal|tgl }} |
| Estimasi Terima |
{{ po.expected_date|tgl if po.expected_date else '-' }}
|
| Status |
{{ po.status }}
|
| # |
Deskripsi |
Qty |
Satuan |
Harga Satuan |
Diskon |
Subtotal |
{% for it in items %}
| {{ loop.index }} |
{{ it.deskripsi }} |
{{ it.qty|qty }} |
{{ it.satuan }} |
{{ it.harga_satuan|rp }} |
{% if it.diskon_item %}{{ it.diskon_item|rp }}{% else %}-{% endif %} |
{{ it.subtotal|rp }} |
{% endfor %}
| Subtotal |
{{ subtotal|rp }} |
{% if po.diskon %}
| Diskon |
- {{ po.diskon|rp }} |
{% endif %}
{% if po.ongkir %}
| Ongkir |
{{ po.ongkir|rp }} |
{% endif %}
{% if po.biaya_lain %}
| Biaya Lain |
{{ po.biaya_lain|rp }} |
{% endif %}
|
| TOTAL |
{{ total|rp }} |
{% if (po.ongkir or po.biaya_lain) and session.role in ('ADMIN','FINANCE','OPERATOR') %}
Ongkir/biaya lain di atas adalah komponen biaya pembelian, belum tercatat sebagai beban kas keluar.
Catat sebagai Beban
{% endif %}
{% if po.catatan %}
{{ po.catatan }}
{% endif %}
{% if po_s.po_terms %}
Syarat & Ketentuan
{{ po_s.po_terms }}
{% endif %}