| Metode Pembayaran | +Tipe | +Jumlah Order | +Total Amount | +Persentase | +
|---|---|---|---|---|
| {payment.payment_method_name} | ++ + {payment.payment_method_type.toUpperCase()} + + | +{payment.order_count} | +{formatCurrency(payment.total_amount)} | ++ {(payment.percentage ?? 0).toFixed(1)}% + | +
| TOTAL | ++ | {paymentAnalytics?.summary.total_orders ?? 0} | ++ {formatCurrency(paymentAnalytics?.summary.total_amount ?? 0)} + | ++ |
| Nama | +Total Produk | +Qty | +Pendapatan | +
|---|---|---|---|
| {c.category_name} | +{c.product_count} | +{c.total_quantity} | ++ {formatCurrency(c.total_revenue)} + | +
| TOTAL | +{categorySummary?.productCount ?? 0} | +{categorySummary?.totalQuantity ?? 0} | +{formatCurrency(categorySummary?.totalRevenue ?? 0)} | +
| Produk | +Qty | +Order | +Pendapatan | +Rata Rata | +
|---|---|---|---|---|
| + {categoryName.toUpperCase()} + | ++ | + | + | + |
| + {item.product_name} + | ++ {item.quantity_sold} + | ++ {item.order_count ?? 0} + | ++ {formatCurrency(item.revenue)} + | ++ {formatCurrency(item.average_price)} + | +
| + Subtotal {categoryName} + | ++ {categoryTotalQty} + | ++ {categoryTotalOrders} + | ++ {formatCurrency(categoryTotalRevenue)} + | ++ |
| TOTAL KESELURUHAN | ++ {productSummary.totalQuantitySold ?? 0} + | ++ {productSummary.totalOrders ?? 0} + | ++ {formatCurrency(productSummary.totalRevenue ?? 0)} + | ++ |