123 lines
5.3 KiB
Vue
123 lines
5.3 KiB
Vue
<script setup>
|
|
import { useI18n } from 'vue-i18n';
|
|
import { useQuasar } from 'quasar';
|
|
import { useRouter } from 'vue-router';
|
|
import Paginate from 'components/Paginate.vue';
|
|
import { toDate, toCurrency } from 'src/filters/index';
|
|
import TicketSummaryDialog from './Card/TicketSummaryDialog.vue';
|
|
|
|
const router = useRouter();
|
|
const quasar = useQuasar();
|
|
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}` });
|
|
}
|
|
|
|
function viewSummary(id) {
|
|
quasar.dialog({
|
|
component: TicketSummaryDialog,
|
|
componentProps: {
|
|
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 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="viewSummary(row.id)">
|
|
<q-tooltip>{{ t('components.smartCard.openSummary') }}</q-tooltip>
|
|
</q-btn>
|
|
</q-card-actions>
|
|
</q-item>
|
|
</q-card>
|
|
</template>
|
|
</paginate>
|
|
</q-page>
|
|
</template>
|