- Added channel, status, and payment type filters to the order index functionality. - Updated OrderService to handle new filter parameters in pagination queries. - Introduced filter definitions and values in the OrderGroupedTable component for improved data filtering. - Enhanced the frontend to support dynamic filtering options for orders based on the new criteria.
6 lines
106 B
TypeScript
6 lines
106 B
TypeScript
export const OrderChannel = {
|
|
STORE: 'store',
|
|
TIKTOK: 'tiktok',
|
|
SHOPEE: 'shopee',
|
|
} as const;
|