feat(FE): adding button filter component

This commit is contained in:
randy-ar
2026-01-14 11:43:10 +07:00
parent bdf84c3802
commit fc71defa08
5 changed files with 258 additions and 75 deletions
+8
View File
@@ -33,3 +33,11 @@ export interface DebtRow {
travel_number: string;
balance: number;
}
// Filter Param
export interface DebtSupplierFilter {
start_date?: string;
end_date?: string;
supplier_ids?: string;
filter_by?: string;
}