feat: add date range search functionality to quotation management

This commit is contained in:
puriphatt 2025-04-17 17:13:26 +07:00
parent 36cef7ceb6
commit 7897103a1b
2 changed files with 19 additions and 4 deletions

View file

@ -76,6 +76,8 @@ export const useQuotationStore = defineStore('quotation-store', () => {
includeRegisteredBranch?: boolean;
forDebitNote?: boolean;
cancelIncludeDebitNote?: boolean;
startDate?: string;
endDate?: string;
}) {
const res = await api.get<PaginationResult<Quotation>>('/quotation', {
params,