feat: implement date range filtering in branch management
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 7s

This commit is contained in:
puriphatt 2025-04-18 09:24:41 +07:00
parent 285b821c16
commit 03b03b4bc8
2 changed files with 53 additions and 18 deletions

View file

@ -39,6 +39,8 @@ const useBranchStore = defineStore('api-branch', () => {
withHead?: boolean;
activeOnly?: boolean;
headOfficeId?: string;
startDate?: string;
endDate?: string;
},
Data extends Pagination<Branch[]>,
>(opts?: Options): Promise<Data | false> {