491 lines
16 KiB
Vue
491 lines
16 KiB
Vue
<script lang="ts" setup>
|
|
// NOTE: Library
|
|
import { computed, onMounted, reactive, watch } from 'vue';
|
|
import { storeToRefs } from 'pinia';
|
|
import { useI18n } from 'vue-i18n';
|
|
import { useQuasar } from 'quasar';
|
|
|
|
// NOTE: Components
|
|
import StatCardComponent from 'src/components/StatCardComponent.vue';
|
|
import NoData from 'src/components/NoData.vue';
|
|
import PaginationComponent from 'src/components/PaginationComponent.vue';
|
|
import PaginationPageSize from 'src/components/PaginationPageSize.vue';
|
|
import FloatingActionButton from 'components/FloatingActionButton.vue';
|
|
import DialogFormContainer from 'src/components/dialog/DialogFormContainer.vue';
|
|
import DialogHeader from 'src/components/dialog/DialogHeader.vue';
|
|
import { CancelButton, SaveButton } from 'src/components/button';
|
|
import FormCredit from 'src/components/11_credit-note/FormCredit.vue';
|
|
import QuotationCard from 'src/components/05_quotation/QuotationCard.vue';
|
|
|
|
// NOTE: Stores & Type
|
|
import { useNavigator } from 'src/stores/navigator';
|
|
import useFlowStore from 'src/stores/flow';
|
|
import { pageTabs, columns, hslaColors } from './constants';
|
|
import { CreditNoteStatus, useCreditNote } from 'src/stores/credit-note';
|
|
import TableCreditNote from './TableCreditNote.vue';
|
|
import { dialogWarningClose } from 'src/stores/utils';
|
|
import AdvanceSearch from 'src/components/shared/AdvanceSearch.vue';
|
|
|
|
const $q = useQuasar();
|
|
const { t } = useI18n();
|
|
const flow = useFlowStore();
|
|
const navigator = useNavigator();
|
|
const creditNote = useCreditNote();
|
|
const { stats, pageMax, page, data, pageSize } = storeToRefs(creditNote);
|
|
|
|
// NOTE: Variable
|
|
const pageState = reactive({
|
|
quotationId: '',
|
|
currentTab: CreditNoteStatus.Waiting,
|
|
hideStat: false,
|
|
statusFilter: 'None',
|
|
inputSearch: '',
|
|
fieldSelected: columns
|
|
.filter((v) => !v.name.startsWith('#'))
|
|
.map((v) => v.name),
|
|
gridView: false,
|
|
total: 0,
|
|
|
|
creditDialog: false,
|
|
searchDate: [],
|
|
});
|
|
|
|
const fieldSelectedOption = computed(() => {
|
|
return columns
|
|
.filter((v) => !v.name.startsWith('#'))
|
|
.map((v) => ({
|
|
label: v.label,
|
|
value: v.name,
|
|
}));
|
|
});
|
|
|
|
// NOTE: Function
|
|
async function getList(opts?: { page?: number; pageSize?: number }) {
|
|
const res = await creditNote.getCreditNoteList({
|
|
page: opts?.page || page.value,
|
|
pageSize: opts?.pageSize || pageSize.value,
|
|
query: pageState.inputSearch === '' ? undefined : pageState.inputSearch,
|
|
creditNoteStatus: pageState.currentTab as CreditNoteStatus | undefined,
|
|
startDate: pageState.searchDate[0],
|
|
endDate: pageState.searchDate[1],
|
|
});
|
|
|
|
if (res) {
|
|
data.value = res.result;
|
|
pageState.total = res.total;
|
|
pageMax.value = Math.ceil(res.total / pageSize.value);
|
|
}
|
|
}
|
|
|
|
async function triggerDelete(id: string) {
|
|
dialogWarningClose(t, {
|
|
message: t('dialog.message.confirmDelete'),
|
|
actionText: t('dialog.action.ok'),
|
|
action: async () => {
|
|
const res = await creditNote.deleteCreditNote(id);
|
|
if (!!res) {
|
|
getList();
|
|
}
|
|
},
|
|
cancel: () => {},
|
|
});
|
|
}
|
|
|
|
async function triggerCreateCreditNote() {
|
|
pageState.quotationId = '';
|
|
pageState.creditDialog = true;
|
|
}
|
|
|
|
function navigateTo(opts: {
|
|
statusDialog: 'info' | 'edit' | 'create';
|
|
quotationId?: string;
|
|
creditId?: string;
|
|
}) {
|
|
const url = new URL(
|
|
`/credit-note/${opts.statusDialog === 'create' ? 'add' : opts.creditId}`,
|
|
window.location.origin,
|
|
);
|
|
|
|
if (opts.statusDialog === 'create') {
|
|
url.searchParams.append('quotationId', opts.quotationId || '');
|
|
}
|
|
|
|
window.open(url.toString(), '_blank');
|
|
}
|
|
|
|
async function submit() {
|
|
navigateTo({ statusDialog: 'create', quotationId: pageState.quotationId });
|
|
close();
|
|
}
|
|
|
|
function close() {
|
|
pageState.creditDialog = false;
|
|
}
|
|
|
|
onMounted(async () => {
|
|
pageState.gridView = $q.screen.lt.md ? true : false;
|
|
navigator.current.title = 'creditNote.title';
|
|
navigator.current.path = [{ text: 'creditNote.caption', i18n: true }];
|
|
|
|
creditNote.getCreditNoteStats().then((res) => res && (stats.value = res));
|
|
getList();
|
|
});
|
|
|
|
watch(
|
|
[
|
|
() => pageState.currentTab,
|
|
() => pageState.inputSearch,
|
|
() => pageSize.value,
|
|
() => pageState.statusFilter,
|
|
() => pageState.searchDate,
|
|
],
|
|
() => {
|
|
getList();
|
|
},
|
|
);
|
|
</script>
|
|
<template>
|
|
<FloatingActionButton
|
|
style="z-index: 999"
|
|
hide-icon
|
|
@click.stop="triggerCreateCreditNote()"
|
|
></FloatingActionButton>
|
|
|
|
<div class="column full-height no-wrap">
|
|
<!-- SEC: stat -->
|
|
<section class="text-body-2 q-mb-xs flex items-center">
|
|
{{ $t('general.dataSum') }}
|
|
<q-badge
|
|
rounded
|
|
class="q-ml-sm"
|
|
style="
|
|
background-color: hsla(var(--info-bg) / 0.15);
|
|
color: hsl(var(--info-bg));
|
|
"
|
|
>
|
|
{{ Object.values(stats).reduce((sum, value) => sum + value, 0) || 0 }}
|
|
</q-badge>
|
|
<q-btn
|
|
class="q-ml-sm"
|
|
icon="mdi-pin-outline"
|
|
color="primary"
|
|
size="sm"
|
|
flat
|
|
dense
|
|
rounded
|
|
@click="pageState.hideStat = !pageState.hideStat"
|
|
:style="pageState.hideStat ? 'rotate: 90deg' : ''"
|
|
style="transition: 0.1s ease-in-out"
|
|
/>
|
|
</section>
|
|
|
|
<transition name="slide">
|
|
<div v-if="!pageState.hideStat" class="scroll q-mb-md">
|
|
<div style="display: inline-block">
|
|
<StatCardComponent
|
|
labelI18n
|
|
:branch="[
|
|
{
|
|
icon: 'icon-park-outline:loading-one',
|
|
count: stats[CreditNoteStatus.Pending] || 0,
|
|
label: `creditNote.status.${CreditNoteStatus.Waiting}`,
|
|
color: 'light-yellow',
|
|
},
|
|
{
|
|
icon: 'material-symbols-light:receipt-long',
|
|
count: stats[CreditNoteStatus.Pending] || 0,
|
|
label: `creditNote.status.${CreditNoteStatus.Pending}`,
|
|
color: 'orange',
|
|
},
|
|
{
|
|
icon: 'mdi-check-decagram-outline',
|
|
count: stats[CreditNoteStatus.Success] || 0,
|
|
label: `creditNote.status.${CreditNoteStatus.Success}`,
|
|
color: 'blue',
|
|
},
|
|
]"
|
|
:dark="$q.dark.isActive"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</transition>
|
|
|
|
<section class="col surface-1 rounded bordered overflow-hidden">
|
|
<div class="column full-height">
|
|
<!-- SEC: header content -->
|
|
<header
|
|
class="row surface-3 justify-between full-width items-center"
|
|
style="z-index: 1"
|
|
>
|
|
<section
|
|
class="row q-py-sm q-px-md bordered-b justify-between full-width"
|
|
>
|
|
<q-input
|
|
for="input-search"
|
|
outlined
|
|
dense
|
|
:label="$t('general.search')"
|
|
class="col col-md-3"
|
|
:bg-color="$q.dark.isActive ? 'dark' : 'white'"
|
|
v-model="pageState.inputSearch"
|
|
debounce="200"
|
|
>
|
|
<template #prepend>
|
|
<q-icon name="mdi-magnify" />
|
|
</template>
|
|
<template v-slot:append>
|
|
<q-separator vertical inset class="q-mr-xs" />
|
|
<AdvanceSearch v-model="pageState.searchDate" />
|
|
</template>
|
|
</q-input>
|
|
|
|
<div class="row col-md-5 justify-end" style="white-space: nowrap">
|
|
<q-select
|
|
v-if="!pageState.gridView"
|
|
id="select-field"
|
|
for="select-field"
|
|
class="col-md-5 q-ml-sm"
|
|
:options="
|
|
fieldSelectedOption.map((v) => ({
|
|
...v,
|
|
label: v.label && $t(v.label),
|
|
}))
|
|
"
|
|
:display-value="$t('general.displayField')"
|
|
:hide-dropdown-icon="$q.screen.lt.sm"
|
|
v-model="pageState.fieldSelected"
|
|
option-label="label"
|
|
option-value="value"
|
|
map-options
|
|
emit-value
|
|
outlined
|
|
multiple
|
|
dense
|
|
/>
|
|
|
|
<q-btn-toggle
|
|
id="btn-mode"
|
|
v-model="pageState.gridView"
|
|
dense
|
|
class="no-shadow bordered rounded surface-1 q-ml-sm"
|
|
:toggle-color="$q.dark.isActive ? 'grey-9' : 'grey-2'"
|
|
size="xs"
|
|
:options="[
|
|
{ value: true, slot: 'folder' },
|
|
{ value: false, slot: 'list' },
|
|
]"
|
|
>
|
|
<template v-slot:folder>
|
|
<q-icon
|
|
name="mdi-view-grid-outline"
|
|
size="16px"
|
|
class="q-px-sm q-py-xs rounded"
|
|
:style="{
|
|
color: $q.dark.isActive
|
|
? pageState.gridView
|
|
? '#C9D3DB '
|
|
: '#787B7C'
|
|
: pageState.gridView
|
|
? '#787B7C'
|
|
: '#C9D3DB',
|
|
}"
|
|
/>
|
|
</template>
|
|
<template v-slot:list>
|
|
<q-icon
|
|
name="mdi-format-list-bulleted"
|
|
class="q-px-sm q-py-xs rounded"
|
|
size="16px"
|
|
:style="{
|
|
color: $q.dark.isActive
|
|
? pageState.gridView === false
|
|
? '#C9D3DB'
|
|
: '#787B7C'
|
|
: pageState.gridView === false
|
|
? '#787B7C'
|
|
: '#C9D3DB',
|
|
}"
|
|
/>
|
|
</template>
|
|
</q-btn-toggle>
|
|
</div>
|
|
</section>
|
|
|
|
<nav class="surface-2 bordered-b q-px-md full-width">
|
|
<q-tabs
|
|
inline-label
|
|
mobile-arrows
|
|
dense
|
|
v-model="pageState.currentTab"
|
|
align="left"
|
|
class="full-width"
|
|
active-color="info"
|
|
>
|
|
<q-tab
|
|
v-for="tab in pageTabs"
|
|
:name="tab.value"
|
|
:key="tab.value"
|
|
@click="
|
|
() => {
|
|
pageState.currentTab = tab.value;
|
|
pageState.inputSearch = '';
|
|
|
|
flow.rotate();
|
|
}
|
|
"
|
|
>
|
|
<div
|
|
class="row text-capitalize"
|
|
:class="
|
|
pageState.currentTab === tab.value
|
|
? 'text-bold'
|
|
: 'app-text-muted'
|
|
"
|
|
>
|
|
{{ $t(`creditNote.status.${tab.label}`) }}
|
|
</div>
|
|
</q-tab>
|
|
</q-tabs>
|
|
</nav>
|
|
</header>
|
|
|
|
<!-- SEC: body content -->
|
|
<article
|
|
v-if="data.length === 0"
|
|
class="col surface-2 flex items-center justify-center"
|
|
>
|
|
<NoData :not-found="!!pageState.inputSearch" />
|
|
</article>
|
|
<article v-else class="col surface-2 full-width scroll q-pa-md">
|
|
<TableCreditNote
|
|
:grid="pageState.gridView"
|
|
:visible-columns="pageState.fieldSelected"
|
|
:hide-delete="pageState.currentTab !== CreditNoteStatus.Waiting"
|
|
@view="(v) => navigateTo({ statusDialog: 'info', creditId: v.id })"
|
|
@delete="(v) => triggerDelete(v.id)"
|
|
>
|
|
<template #grid="{ item }">
|
|
<div class="col-md-4 col-sm-6 col-12">
|
|
<QuotationCard
|
|
hide-kebab-edit
|
|
@view="
|
|
() =>
|
|
navigateTo({
|
|
statusDialog: 'info',
|
|
creditId: item.row.id,
|
|
})
|
|
"
|
|
@delete="() => triggerDelete(item.row.id)"
|
|
:title="item.row.quotation.workName"
|
|
:code="item.row.code"
|
|
:status="$t(`creditNote.status.${item.row.creditNoteStatus}`)"
|
|
:badge-color="hslaColors[item.row.creditNoteStatus] || ''"
|
|
:custom-data="[
|
|
{
|
|
label: $t('branch.card.branchVirtual'),
|
|
value:
|
|
$i18n.locale === 'tha'
|
|
? item.row.quotation.registeredBranch.name
|
|
: item.row.quotation.registeredBranch.nameEN,
|
|
},
|
|
{
|
|
label: $t('quotation.customer'),
|
|
value:
|
|
item.row.quotation.customerBranch.customer
|
|
.customerType === 'CORP'
|
|
? item.row.quotation.customerBranch.customerName
|
|
: $i18n.locale === 'tha'
|
|
? `${item.row.quotation.customerBranch.firstName} ${item.row.quotation.customerBranch.lastName}`
|
|
: `${item.row.quotation.customerBranch.firstNameEN} ${item.row.quotation.customerBranch.lastNameEN}`,
|
|
},
|
|
{
|
|
label: $t('requestList.quotationCode'),
|
|
value: item.row.quotation.code,
|
|
},
|
|
{
|
|
label: $t('creditNote.label.quotationPayment'),
|
|
value: $t(
|
|
`quotation.type.${item.row.quotation.payCondition}`,
|
|
),
|
|
},
|
|
]"
|
|
/>
|
|
</div>
|
|
</template>
|
|
</TableCreditNote>
|
|
</article>
|
|
|
|
<footer
|
|
class="row justify-between items-center q-px-md q-py-sm surface-2"
|
|
v-if="pageMax > 0"
|
|
>
|
|
<div class="col-4">
|
|
<div class="row items-center no-wrap">
|
|
<div class="app-text-muted q-mr-sm" v-if="$q.screen.gt.sm">
|
|
{{ $t('general.recordPerPage') }}
|
|
</div>
|
|
<div><PaginationPageSize v-model="pageSize" /></div>
|
|
</div>
|
|
</div>
|
|
<div class="col-4 row justify-center app-text-muted">
|
|
{{
|
|
$q.screen.gt.sm
|
|
? $t('general.recordsPage', {
|
|
resultcurrentPage: data.length,
|
|
total: pageState.inputSearch
|
|
? data.length
|
|
: pageState.total,
|
|
})
|
|
: $t('general.ofPage', {
|
|
current: data.length,
|
|
total: pageState.inputSearch
|
|
? data.length
|
|
: pageState.total,
|
|
})
|
|
}}
|
|
</div>
|
|
<nav class="col-4 row justify-end">
|
|
<PaginationComponent
|
|
v-model:current-page="page"
|
|
v-model:max-page="pageMax"
|
|
:fetch-data="() => getList()"
|
|
/>
|
|
</nav>
|
|
</footer>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
<!-- SEC: Dialog -->
|
|
<!-- dialog create -->
|
|
<DialogFormContainer
|
|
width="60vw"
|
|
height="500px"
|
|
v-model="pageState.creditDialog"
|
|
@submit="submit"
|
|
>
|
|
<template #header>
|
|
<DialogHeader
|
|
:title="$t(`general.add`, { text: $t('creditNote.title') })"
|
|
/>
|
|
</template>
|
|
|
|
<section class="q-pa-md col full-width">
|
|
<div class="surface-1 rounded bordered q-pa-md full-height full-width">
|
|
<FormCredit v-model:quotation-id="pageState.quotationId" />
|
|
</div>
|
|
</section>
|
|
|
|
<template #footer>
|
|
<CancelButton class="q-ml-auto" outlined @click="close" />
|
|
<SaveButton
|
|
:label="$t(`general.add`, { text: $t('creditNote.title') })"
|
|
class="q-ml-sm"
|
|
icon="mdi-check"
|
|
solid
|
|
type="submit"
|
|
/>
|
|
</template>
|
|
</DialogFormContainer>
|
|
</template>
|
|
<style scoped></style>
|