Total Revenue
Seller Owed
Developer Owed
System Balance
📊 Revenue Breakdown
| Product | Split | Revenue | Seller Share | Developer Share |
|---|---|---|---|---|
| WWM | 1/3 - 2/3 | {{ formatMoney(data.revenue?.wwm) }} | {{ formatMoney((data.revenue?.wwm || 0) / 3) }} | {{ formatMoney((data.revenue?.wwm || 0) * 2 / 3) }} |
| Aion2 | 1/3 - 2/3 | {{ formatMoney(data.revenue?.aion2) }} | {{ formatMoney((data.revenue?.aion2 || 0) / 3) }} | {{ formatMoney((data.revenue?.aion2 || 0) * 2 / 3) }} |
| BDO | 1/2 - 1/2 | {{ formatMoney(data.revenue?.bdo) }} | {{ formatMoney((data.revenue?.bdo || 0) / 2) }} | {{ formatMoney((data.revenue?.bdo || 0) / 2) }} |
| TOTAL | {{ formatMoney(data.revenue?.total) }} | {{ formatMoney(data.shares?.seller) }} | {{ formatMoney(data.shares?.developer) }} |
💵 SELLER IS OWED
Total share: {{ formatMoney(data.shares?.seller) }}
Paid before system: {{ formatMoney(data.paidBeforeSystem?.seller) }}
Paid via this system: {{ formatMoney(data.payments?.paidToSeller) }}
👨💻 DEVELOPER IS OWED
Total share: {{ formatMoney(data.shares?.developer) }}
Paid before system: {{ formatMoney(data.paidBeforeSystem?.developer) }}
Paid via this system: {{ formatMoney(data.payments?.paidToDeveloper) }}
➕ Record Payment
📜 Payment History
📊 Payment Totals
| Total Paid to Developer (via this system) | {{ formatMoney(data.payments?.paidToDeveloper) }} |
| Total Paid to Seller (via this system) | {{ formatMoney(data.payments?.paidToSeller) }} |
| Total Costs/Expenses | {{ formatMoney(data.payments?.costs) }} |
| Total Paid Out (via this system) | {{ formatMoney(data.summary?.totalPaidViaSystem) }} |