feat: filtering and grouping by manager

This commit is contained in:
2024-11-21 18:12:48 +04:00
parent 77aedb514f
commit 9c56ef180f
12 changed files with 38 additions and 4 deletions

View File

@@ -7,5 +7,6 @@ export type GetProfitChartDataRequest = {
clientId: number;
baseMarketplaceKey: string;
dealStatusId: number;
managerId: number;
};

View File

@@ -8,6 +8,7 @@ export type GetProfitTableDataRequest = {
clientId: number;
baseMarketplaceKey: string;
dealStatusId: number;
managerId: number;
groupTableBy: ProfitTableGroupBy;
};

View File

@@ -2,4 +2,4 @@
/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */
export type ProfitTableGroupBy = 0 | 1 | 2 | 3 | 4;
export type ProfitTableGroupBy = 0 | 1 | 2 | 3 | 4 | 5;