mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-29 18:13:47 +00:00
feat: add daily deposits by payment method chart
Add MultiSeriesAreaChart showing daily deposit amounts per payment method with human-readable labels and currency formatting. Memoize all derived data before early returns for React Compiler compat.
This commit is contained in:
@@ -149,12 +149,19 @@ export interface DailyDepositItem {
|
||||
amount_kopeks: number;
|
||||
}
|
||||
|
||||
export interface DailyDepositByMethodItem {
|
||||
date: string;
|
||||
method: string;
|
||||
amount_kopeks: number;
|
||||
}
|
||||
|
||||
export interface DepositsStats {
|
||||
total_deposits: number;
|
||||
total_amount_kopeks: number;
|
||||
avg_deposit_kopeks: number;
|
||||
by_method: DepositByMethodItem[];
|
||||
daily: DailyDepositItem[];
|
||||
daily_by_method: DailyDepositByMethodItem[];
|
||||
}
|
||||
|
||||
// ============ API ============
|
||||
|
||||
Reference in New Issue
Block a user