150 lines
6.8 KiB
Vue
150 lines
6.8 KiB
Vue
<script setup>
|
|
import { ref } from 'vue';
|
|
import { useI18n } from 'vue-i18n';
|
|
import { useRouter } from 'vue-router';
|
|
import Paginate from 'src/components/Paginate.vue';
|
|
import { toDate, toCurrency } from 'src/filters/index';
|
|
// import TicketSummary from './Card/TicketSummary.vue';
|
|
|
|
const router = useRouter();
|
|
const { t } = useI18n();
|
|
|
|
const filter = {
|
|
include: [
|
|
{
|
|
relation: 'client',
|
|
scope: {
|
|
include: {
|
|
relation: 'salesPersonUser',
|
|
scope: {
|
|
fields: ['name'],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
relation: 'ticketState',
|
|
scope: {
|
|
fields: ['stateFk', 'code', 'alertLevel'],
|
|
include: {
|
|
relation: 'state',
|
|
scope: {
|
|
fields: ['name'],
|
|
},
|
|
},
|
|
},
|
|
},
|
|
],
|
|
};
|
|
|
|
function stateColor(state) {
|
|
if (state.code === 'OK') return 'green';
|
|
if (state.code === 'FREE') return 'blue-3';
|
|
if (state.alertLevel === 1) return 'orange';
|
|
if (state.alertLevel === 0) return 'red';
|
|
}
|
|
|
|
function navigate(id) {
|
|
router.push({ path: `/ticket/${id}` });
|
|
}
|
|
|
|
const preview = ref({
|
|
shown: false,
|
|
});
|
|
|
|
function showPreview(id) {
|
|
preview.value.shown = true;
|
|
preview.value.data = {
|
|
customerId: id,
|
|
};
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<q-page class="q-pa-md">
|
|
<paginate url="/Tickets" :filter="filter" sort-by="id DESC" auto-load>
|
|
<template #body="{ rows }">
|
|
<q-card class="card" v-for="row of rows" :key="row.id">
|
|
<q-item class="q-pa-none items-start cursor-pointer q-hoverable" v-ripple clickable>
|
|
<q-item-section class="q-pa-md" @click="navigate(row.id)">
|
|
<div class="text-h6">{{ row.name }}</div>
|
|
<q-item-label caption>#{{ row.id }}</q-item-label>
|
|
<q-list>
|
|
<q-item class="q-pa-none">
|
|
<q-item-section>
|
|
<q-item-label caption>{{ t('ticket.list.nickname') }}</q-item-label>
|
|
<q-item-label>{{ row.nickname }}</q-item-label>
|
|
</q-item-section>
|
|
<q-item-section>
|
|
<q-item-label caption>{{ t('ticket.list.state') }}</q-item-label>
|
|
<q-item-label>
|
|
<q-chip :color="stateColor(row.ticketState)" dense>
|
|
{{ row.ticketState.state.name }}
|
|
</q-chip>
|
|
</q-item-label>
|
|
</q-item-section>
|
|
</q-item>
|
|
<q-item class="q-pa-none">
|
|
<q-item-section>
|
|
<q-item-label caption>{{ t('ticket.list.shipped') }}</q-item-label>
|
|
<q-item-label>{{ toDate(row.shipped) }}</q-item-label>
|
|
</q-item-section>
|
|
<q-item-section>
|
|
<q-item-label caption>{{ t('ticket.list.landed') }}</q-item-label>
|
|
<q-item-label>{{ toDate(row.landed) }}</q-item-label>
|
|
</q-item-section>
|
|
</q-item>
|
|
<q-item class="q-pa-none">
|
|
<q-item-section v-if="row.client.salesPersonUser">
|
|
<q-item-label caption>{{ t('ticket.list.salesPerson') }}</q-item-label>
|
|
<q-item-label>{{ row.client.salesPersonUser.name }}</q-item-label>
|
|
</q-item-section>
|
|
<q-item-section>
|
|
<q-item-label caption>{{ t('ticket.list.total') }}</q-item-label>
|
|
<q-item-label>{{ toCurrency(row.totalWithVat) }}</q-item-label>
|
|
</q-item-section>
|
|
</q-item>
|
|
</q-list>
|
|
</q-item-section>
|
|
<q-separator vertical />
|
|
<q-card-actions vertical class="justify-between">
|
|
<q-btn color="grey-7" round flat icon="more_vert">
|
|
<q-tooltip>{{ t('customer.list.moreOptions') }}</q-tooltip>
|
|
<q-menu cover auto-close>
|
|
<q-list>
|
|
<q-item clickable>
|
|
<q-item-section avatar>
|
|
<q-icon name="add" />
|
|
</q-item-section>
|
|
<q-item-section>Add a note</q-item-section>
|
|
</q-item>
|
|
<q-item clickable>
|
|
<q-item-section avatar>
|
|
<q-icon name="history" />
|
|
</q-item-section>
|
|
<q-item-section>Display customer history</q-item-section>
|
|
</q-item>
|
|
</q-list>
|
|
</q-menu>
|
|
</q-btn>
|
|
|
|
<q-btn flat round color="orange" icon="arrow_circle_right" @click="navigate(row.id)">
|
|
<q-tooltip>{{ t('components.smartCard.openCard') }}</q-tooltip>
|
|
</q-btn>
|
|
<q-btn flat round color="grey-7" icon="preview" @click="showPreview(row.id)">
|
|
<q-tooltip>{{ t('components.smartCard.openSummary') }}</q-tooltip>
|
|
</q-btn>
|
|
<q-btn flat round color="grey-7" icon="vn:ticket">
|
|
<q-tooltip>{{ t('customer.list.customerOrders') }}</q-tooltip>
|
|
</q-btn>
|
|
</q-card-actions>
|
|
</q-item>
|
|
</q-card>
|
|
</template>
|
|
</paginate>
|
|
</q-page>
|
|
<!-- <q-dialog v-model="preview.shown">
|
|
<customer-summary :customer-id="preview.data.customerId" />
|
|
</q-dialog> -->
|
|
</template>
|