feat: add date range search functionality to invoice management

This commit is contained in:
puriphatt 2025-04-17 17:22:31 +07:00
parent 7897103a1b
commit 73562a59c1
2 changed files with 46 additions and 18 deletions

View file

@ -2,7 +2,7 @@
// NOTE: Library // NOTE: Library
import { computed, onMounted, reactive, ref, watch } from 'vue'; import { computed, onMounted, reactive, ref, watch } from 'vue';
import { storeToRefs } from 'pinia'; import { storeToRefs } from 'pinia';
import { QSelect, useQuasar } from 'quasar'; import { useQuasar } from 'quasar';
// NOTE: Components // NOTE: Components
import StatCardComponent from 'src/components/StatCardComponent.vue'; import StatCardComponent from 'src/components/StatCardComponent.vue';
@ -18,13 +18,13 @@ import { columns, hslaColors } from './constants';
import useFlowStore from 'src/stores/flow'; import useFlowStore from 'src/stores/flow';
import { useInvoice } from 'src/stores/payment'; import { useInvoice } from 'src/stores/payment';
import { Invoice, PaymentDataStatus } from 'src/stores/payment/types'; import { Invoice, PaymentDataStatus } from 'src/stores/payment/types';
import AdvanceSearch from 'src/components/shared/AdvanceSearch.vue';
const $q = useQuasar(); const $q = useQuasar();
const navigatorStore = useNavigator(); const navigatorStore = useNavigator();
const flowStore = useFlowStore(); const flowStore = useFlowStore();
const invoiceStore = useInvoice(); const invoiceStore = useInvoice();
const { data, stats, page, pageMax, pageSize } = storeToRefs(invoiceStore); const { data, stats, page, pageMax, pageSize } = storeToRefs(invoiceStore);
const refFilter = ref<InstanceType<typeof QSelect>>();
// NOTE: Variable // NOTE: Variable
const pageState = reactive({ const pageState = reactive({
@ -34,6 +34,7 @@ const pageState = reactive({
fieldSelected: [...columns.map((v) => v.name)], fieldSelected: [...columns.map((v) => v.name)],
gridView: false, gridView: false,
total: 0, total: 0,
searchDate: [],
}); });
const fieldSelectedOption = computed(() => { const fieldSelectedOption = computed(() => {
@ -56,6 +57,8 @@ async function fetchList(opts?: { rotateFlowId?: boolean }) {
: undefined, : undefined,
quotationOnly: true, quotationOnly: true,
debitNoteOnly: false, debitNoteOnly: false,
startDate: pageState.searchDate[0],
endDate: pageState.searchDate[1],
}); });
if (ret) { if (ret) {
data.value = $q.screen.xs ? [...data.value, ...ret.result] : ret.result; data.value = $q.screen.xs ? [...data.value, ...ret.result] : ret.result;
@ -89,8 +92,6 @@ function triggerView(opts: { quotationId: string }) {
} }
function viewDocExample(quotationId: string, codeInvoice: string) { function viewDocExample(quotationId: string, codeInvoice: string) {
console.log(codeInvoice);
localStorage.setItem( localStorage.setItem(
'quotation-preview', 'quotation-preview',
JSON.stringify({ JSON.stringify({
@ -124,6 +125,7 @@ watch(
() => pageState.inputSearch, () => pageState.inputSearch,
() => pageState.statusFilter, () => pageState.statusFilter,
() => pageSize.value, () => pageSize.value,
() => pageState.searchDate,
], ],
() => { () => {
page.value = 1; page.value = 1;
@ -207,26 +209,50 @@ watch(
<template #prepend> <template #prepend>
<q-icon name="mdi-magnify" /> <q-icon name="mdi-magnify" />
</template> </template>
<template v-if="$q.screen.lt.md" v-slot:append> <template v-slot:append>
<span class="row"> <q-separator vertical inset class="q-mr-xs" />
<q-separator vertical /> <AdvanceSearch
<q-btn v-model="pageState.searchDate"
icon="mdi-filter-variant" :active="$q.screen.lt.md && pageState.statusFilter !== 'None'"
unelevated >
class="q-ml-sm" <div
padding="4px" v-if="$q.screen.lt.md"
size="sm" class="q-mt-sm text-weight-medium"
rounded >
@click="refFilter?.showPopup" {{ $t('general.status') }}
</div>
<q-select
v-if="$q.screen.lt.md"
v-model="pageState.statusFilter"
outlined
dense
option-value="value"
option-label="label"
map-options
emit-value
:for="'field-select-status'"
:options="[
{
label: $t('general.all'),
value: 'None',
},
{
label: $t('invoice.status.PaymentWait'),
value: PaymentDataStatus.Wait,
},
{
label: $t('invoice.status.PaymentSuccess'),
value: PaymentDataStatus.Success,
},
]"
/> />
</span> </AdvanceSearch>
</template> </template>
</q-input> </q-input>
<div class="row col-md-5" style="white-space: nowrap"> <div class="row col-md-5" style="white-space: nowrap">
<q-select <q-select
v-show="$q.screen.gt.sm" v-if="$q.screen.gt.sm"
ref="refFilter"
v-model="pageState.statusFilter" v-model="pageState.statusFilter"
outlined outlined
dense dense

View file

@ -162,6 +162,8 @@ export const useInvoice = defineStore('invoice-store', () => {
debitNoteOnly?: boolean; debitNoteOnly?: boolean;
quotationId?: string; quotationId?: string;
debitNoteId?: string; debitNoteId?: string;
startDate?: string;
endDate?: string;
}) { }) {
const res = await api.get<PaginationResult<Invoice>>('/invoice', { const res = await api.get<PaginationResult<Invoice>>('/invoice', {
params, params,