mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-23 23:05:46 +00:00
refactor(FE): Add filter_by option to customer payment reports
This commit is contained in:
@@ -15,9 +15,7 @@ export class FinanceApiService extends BaseApiService<
|
||||
customer_ids?: string,
|
||||
// TODO: Uncomment when BE is ready
|
||||
// sales_id?: string,
|
||||
// filter_by?: 'do_date',
|
||||
sales_id?: string,
|
||||
filter_by?: 'do_date' | undefined,
|
||||
filter_by?: 'do_date' | 'payment_date' | 'realization_date',
|
||||
start_date?: string,
|
||||
end_date?: string,
|
||||
page?: number,
|
||||
@@ -31,7 +29,7 @@ export class FinanceApiService extends BaseApiService<
|
||||
customer_ids: customer_ids,
|
||||
// TODO: Uncomment when BE is ready
|
||||
// sales_id: sales_id,
|
||||
// filter_by: filter_by,
|
||||
filter_by: filter_by,
|
||||
start_date: start_date,
|
||||
end_date: end_date,
|
||||
page: page,
|
||||
|
||||
Reference in New Issue
Block a user