{{ loadingMsg }}
View & Edit All Purchase Orders
| PO ID / Date | Customer Info | Channel / Rep | Status | Delivery Date | PO Files | Actions |
|---|---|---|---|---|---|---|
|
{{ order.id }}
{{ order.date }}
|
{{ order.shopName }}
{{ order.customerName }} ({{ order.contact }})
|
{{ order.channel }}
{{ order.salesRep }}
|
{{ order.status }} | {{ order.deliveryDate || '-' }} | {{ fileObj.label === 'File' ? 'PO #' + (idx + 1) : fileObj.label }} — | |
| No POs found for the selected criteria. | ||||||
| # | Product Name | Unit | Brand | Total Qty | Orders | Total Value ($) |
|---|---|---|---|---|---|---|
| {{ idx + 1 }} | {{ item.name }} | {{ item.unit }} | {{ item.brand }} | {{ item.totalQty }} | {{ item.orderCount }} | ${{ item.totalValue.toFixed(2) }} |
| No product data found. | ||||||
| TOTAL | {{ productSalesReport.reduce((s,i) => s + i.totalQty, 0) }} | {{ productSalesReport.reduce((s,i) => s + i.orderCount, 0) }} | ${{ productSalesReport.reduce((s,i) => s + i.totalValue, 0).toFixed(2) }} | |||
| Product Name | Unit | Total Qty | Total Value ($) |
|---|---|---|---|
| {{ item.name }} | {{ item.unit }} | {{ item.qty }} | ${{ item.value.toFixed(2) }} |
| OUTLET TOTAL | {{ outlet.items.reduce((s,i) => s + i.qty, 0) }} | ${{ outlet.totalValue.toFixed(2) }} | |