Dashboard: Paid invoices in the last 7 days (#5316)

Adjust the prior number of transactions metric as discussed with @pavlenex. We now show the number of paid invoices instead of transactions, as this metric is more meaningful.

Closes #5300.
This commit is contained in:
d11n
2023-09-13 02:02:02 +02:00
committed by GitHub
parent 2d38113c66
commit 4aedf76f1f
4 changed files with 31 additions and 43 deletions

View File

@@ -7,9 +7,9 @@ public class StoreNumbersViewModel
public StoreData Store { get; set; }
public WalletId WalletId { get; set; }
public int PayoutsPending { get; set; }
public int? Transactions { get; set; }
public int TimeframeDays { get; set; } = 7;
public int? PaidInvoices { get; set; }
public int RefundsIssued { get; set; }
public int TransactionDays { get; set; } = 7;
public bool InitialRendering { get; set; }
public string CryptoCode { get; set; }
}