{% extends "base.html" %} {% block title %}{{ po.po_number }}{% endblock %} {% block breadcrumb %}PO / {{ po.po_number }}{% endblock %} {% block page_title %}{{ po.po_number }}{% endblock %} {% block content %}
| # | Nama Item | Spesifikasi | Qty | Satuan | Harga Satuan | PPN % | Total |
|---|---|---|---|---|---|---|---|
| {{ loop.index }} | {{ item.item_name }} | {{ item.specification or '—' }} | {{ item.quantity }} | {{ item.unit }} | Rp {{ "{:,.0f}".format(item.unit_price) }} | {{ item.tax_rate }}% | Rp {{ "{:,.0f}".format(item.total_price) }} |