forked from verdnatura/salix-front
Added ticket filter panel
This commit is contained in:
parent
bd904ad82a
commit
984b1f9e24
|
@ -1,7 +1,9 @@
|
|||
<script setup>
|
||||
import { onMounted, ref, computed } from 'vue';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
import { useArrayData } from 'composables/useArrayData';
|
||||
|
||||
const { t } = useI18n();
|
||||
const props = defineProps({
|
||||
dataKey: {
|
||||
type: String,
|
||||
|
@ -49,12 +51,6 @@ async function remove(key) {
|
|||
}
|
||||
</script>
|
||||
<template>
|
||||
<div>
|
||||
<q-list>
|
||||
<q-item-label header class="text-uppercase" dense>
|
||||
Applied filters
|
||||
</q-item-label>
|
||||
</q-list>
|
||||
<div class="q-pa-sm truncate-chip-labels">
|
||||
<span v-if="tags.length === 0">You didn't enter any filter</span>
|
||||
<q-chip
|
||||
|
@ -63,13 +59,27 @@ async function remove(key) {
|
|||
@remove="remove(chip.label)"
|
||||
icon="label"
|
||||
color="primary"
|
||||
class="text-dark"
|
||||
size="sm"
|
||||
removable
|
||||
>
|
||||
<slot name="tags" :tag="chip">
|
||||
<div class="q-gutter-md">
|
||||
<strong>{{ chip.label }}:</strong>
|
||||
<span>"{{ chip.value }}"</span>
|
||||
</div>
|
||||
</slot>
|
||||
</q-chip>
|
||||
</div>
|
||||
<q-toolbar>
|
||||
<q-item-label header class="q-pa-none text-uppercase" dense>
|
||||
{{ t('appliedFilters') }}
|
||||
</q-item-label>
|
||||
<q-space />
|
||||
<q-btn icon="clear_all" color="primary" size="sm" round flat dense />
|
||||
<q-btn icon="refresh" color="primary" size="sm" round flat dense />
|
||||
</q-toolbar>
|
||||
<q-form @submit="search" @keyup.enter="search">
|
||||
<div v-show="props.searchButton">
|
||||
<q-separator />
|
||||
<q-item>
|
||||
|
@ -79,14 +89,25 @@ async function remove(key) {
|
|||
type="submit"
|
||||
color="primary"
|
||||
class="full-width"
|
||||
icon="search"
|
||||
rounded
|
||||
dense
|
||||
/>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
</div>
|
||||
<q-separator />
|
||||
<q-form @submit="search" @keyup.enter="search">
|
||||
<slot name="body" :params="userParams"></slot>
|
||||
</q-form>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<i18n>
|
||||
{
|
||||
"en": {
|
||||
"appliedFilters": "Applied filters"
|
||||
},
|
||||
"es": {
|
||||
"appliedFilters": "Filtros aplicados"
|
||||
}
|
||||
}
|
||||
</i18n>
|
||||
|
|
|
@ -49,7 +49,6 @@ async function search() {
|
|||
const firstRow = rows[0];
|
||||
const stateName = `${moduleRoute.name}Card`;
|
||||
await router.push({ name: stateName, params: { id: firstRow.id } });
|
||||
arrayData.updateStateParams();
|
||||
} else if (route.matched.length > 3) {
|
||||
await router.push({ name: moduleRoute.name });
|
||||
arrayData.updateStateParams();
|
||||
|
|
|
@ -127,14 +127,16 @@ export function useArrayData(key, userOptions) {
|
|||
}
|
||||
|
||||
function updateStateParams() {
|
||||
const query = {};
|
||||
if (store.order) query.order = store.order;
|
||||
if (store.limit) query.limit = store.limit;
|
||||
if (store.skip) query.skip = store.skip;
|
||||
if (store.userParams && Object.keys(store.userParams).length !== 0)
|
||||
query.params = JSON.stringify(store.userParams);
|
||||
|
||||
router.replace({
|
||||
path: route.path,
|
||||
query: {
|
||||
order: store.order,
|
||||
limit: store.limit,
|
||||
skip: store.skip,
|
||||
params: JSON.stringify(store.userParams),
|
||||
},
|
||||
query: query,
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -0,0 +1,261 @@
|
|||
<script setup>
|
||||
import { ref } from 'vue';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
import FetchData from 'components/FetchData.vue';
|
||||
import VnFilterPanel from 'src/components/ui/VnFilterPanel.vue';
|
||||
|
||||
const { t } = useI18n();
|
||||
const props = defineProps({
|
||||
dataKey: {
|
||||
type: String,
|
||||
required: true,
|
||||
},
|
||||
});
|
||||
|
||||
const workers = ref([]);
|
||||
const workersCopy = ref([]);
|
||||
const provinces = ref([]);
|
||||
const states = ref([]);
|
||||
const agencies = ref([]);
|
||||
const warehouses = ref([]);
|
||||
|
||||
function setWorkers(data) {
|
||||
workers.value = data;
|
||||
workersCopy.value = data;
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<fetch-data url="Provinces" @on-fetch="(data) => (provinces = data)" auto-load />
|
||||
<fetch-data url="States" @on-fetch="(data) => (states = data)" auto-load />
|
||||
<fetch-data
|
||||
url="Workers/activeWithInheritedRole"
|
||||
:filter="{ where: { role: 'salesPerson' } }"
|
||||
@on-fetch="setWorkers"
|
||||
auto-load
|
||||
/>
|
||||
<VnFilterPanel :data-key="props.dataKey" :search-button="true">
|
||||
<template #tags="{ tag }">
|
||||
<div class="q-gutter-x-xs">
|
||||
<strong>{{ t(tag.label) }}: </strong>
|
||||
<span>"{{ tag.value }}"</span>
|
||||
</div>
|
||||
</template>
|
||||
<template #body="{ params }">
|
||||
<q-list dense>
|
||||
<q-item>
|
||||
<q-item-section>
|
||||
<q-input
|
||||
v-model="params.clientFk"
|
||||
label="Customer ID"
|
||||
lazy-rules
|
||||
autofocus
|
||||
/>
|
||||
</q-item-section>
|
||||
<q-item-section>
|
||||
<q-input v-model="params.orderFk" label="Order ID" lazy-rules />
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item>
|
||||
<q-item-section>
|
||||
<q-input
|
||||
v-model="params.dateFrom"
|
||||
label="From"
|
||||
autofocus
|
||||
readonly
|
||||
>
|
||||
<template #append>
|
||||
<q-icon name="event" class="cursor-pointer">
|
||||
<q-popup-proxy
|
||||
cover
|
||||
transition-show="scale"
|
||||
transition-hide="scale"
|
||||
>
|
||||
<q-date v-model="params.dateFrom">
|
||||
<div class="row items-center justify-end">
|
||||
<q-btn
|
||||
v-close-popup
|
||||
label="Close"
|
||||
color="primary"
|
||||
flat
|
||||
/>
|
||||
</div>
|
||||
</q-date>
|
||||
</q-popup-proxy>
|
||||
</q-icon>
|
||||
</template>
|
||||
</q-input>
|
||||
</q-item-section>
|
||||
<q-item-section>
|
||||
<q-input v-model="params.dateTo" label="To" autofocus readonly>
|
||||
<template #append>
|
||||
<q-icon name="event" class="cursor-pointer">
|
||||
<q-popup-proxy
|
||||
cover
|
||||
transition-show="scale"
|
||||
transition-hide="scale"
|
||||
>
|
||||
<q-date v-model="params.dateTo">
|
||||
<div class="row items-center justify-end">
|
||||
<q-btn
|
||||
v-close-popup
|
||||
label="Close"
|
||||
color="primary"
|
||||
flat
|
||||
/>
|
||||
</div>
|
||||
</q-date>
|
||||
</q-popup-proxy>
|
||||
</q-icon>
|
||||
</template>
|
||||
</q-input>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item>
|
||||
<q-item-section>
|
||||
<q-select
|
||||
v-model="params.salesPersonFk"
|
||||
:options="workers"
|
||||
option-value="id"
|
||||
option-label="name"
|
||||
emit-value
|
||||
label="Salesperson"
|
||||
map-options
|
||||
use-input
|
||||
:input-debounce="0"
|
||||
>
|
||||
<template #prepend>
|
||||
<q-avatar color="orange" size="xs">
|
||||
<q-img
|
||||
v-if="params.salesPersonFk"
|
||||
:src="`/api/Images/user/160x160/${params.salesPersonFk}/download?access_token=${token}`"
|
||||
spinner-color="white"
|
||||
/>
|
||||
</q-avatar>
|
||||
</template>
|
||||
</q-select>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item>
|
||||
<q-item-section>
|
||||
<q-select
|
||||
label="State"
|
||||
v-model="params.stateFk"
|
||||
:options="states"
|
||||
option-value="id"
|
||||
option-label="name"
|
||||
emit-value
|
||||
map-options
|
||||
/>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item>
|
||||
<q-item-section>
|
||||
<q-input v-model="params.refFk" label="Invoice Out" lazy-rules />
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item>
|
||||
<q-item-section>
|
||||
<q-checkbox
|
||||
v-model="params.myTeam"
|
||||
label="My team"
|
||||
toggle-indeterminate
|
||||
/>
|
||||
</q-item-section>
|
||||
<q-item-section>
|
||||
<q-checkbox
|
||||
v-model="params.problems"
|
||||
label="Has problems"
|
||||
toggle-indeterminate
|
||||
/>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item>
|
||||
<q-item-section>
|
||||
<q-checkbox
|
||||
v-model="params.pending"
|
||||
label="Pending"
|
||||
toggle-indeterminate
|
||||
/>
|
||||
</q-item-section>
|
||||
|
||||
<q-item-section>
|
||||
<q-checkbox
|
||||
v-model="params.hasRoute"
|
||||
label="Has route"
|
||||
toggle-indeterminate
|
||||
/>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item>
|
||||
<q-item-section>
|
||||
<q-checkbox
|
||||
v-model="params.hasInvoice"
|
||||
label="With invoice"
|
||||
toggle-indeterminate
|
||||
/>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-separator />
|
||||
<q-expansion-item label="More options" expand-separator>
|
||||
<q-item>
|
||||
<q-item-section>
|
||||
<q-select
|
||||
label="Province"
|
||||
v-model="params.provinceFk"
|
||||
:options="provinces"
|
||||
option-value="id"
|
||||
option-label="name"
|
||||
emit-value
|
||||
map-options
|
||||
/>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item>
|
||||
<q-item-section>
|
||||
<q-select
|
||||
label="Agency"
|
||||
v-model="params.agencyModeFk"
|
||||
:options="agencies"
|
||||
option-value="id"
|
||||
option-label="name"
|
||||
emit-value
|
||||
map-options
|
||||
/>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item>
|
||||
<q-item-section>
|
||||
<q-select
|
||||
label="Warehouse"
|
||||
v-model="params.warehouseFk"
|
||||
:options="warehouses"
|
||||
option-value="id"
|
||||
option-label="name"
|
||||
emit-value
|
||||
map-options
|
||||
/>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
</q-expansion-item>
|
||||
</q-list>
|
||||
</template>
|
||||
</VnFilterPanel>
|
||||
</template>
|
||||
|
||||
<i18n>
|
||||
{
|
||||
"en": {
|
||||
"search": "Contains",
|
||||
"clientFk": 'Client',
|
||||
"dateFrom": 'From',
|
||||
"dateTo": 'To'
|
||||
},
|
||||
"es": {
|
||||
"search": "Contiene",
|
||||
"clientFk": 'Cliente',
|
||||
"dateFrom": 'Desde',
|
||||
"dateTo": 'Hasta'
|
||||
}
|
||||
}
|
||||
</i18n>
|
|
@ -10,8 +10,7 @@ import TicketSummaryDialog from './Card/TicketSummaryDialog.vue';
|
|||
|
||||
import TeleportSlot from 'components/ui/TeleportSlot.vue';
|
||||
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
||||
import VnFilterPanel from 'src/components/ui/VnFilterPanel.vue';
|
||||
// import FetchData from 'components/FetchData.vue';
|
||||
import TicketFilter from './TicketFilter.vue';
|
||||
|
||||
const router = useRouter();
|
||||
const quasar = useQuasar();
|
||||
|
@ -76,33 +75,7 @@ function viewSummary(id) {
|
|||
<VnSearchbar data-key="TicketList" label="Search by ticket id or alias" />
|
||||
</teleport-slot>
|
||||
<teleport-slot to="#rightPanel">
|
||||
<VnFilterPanel data-key="TicketList">
|
||||
<template #body="{ params }">
|
||||
<q-list>
|
||||
<q-item>
|
||||
<q-item-section>
|
||||
<q-input
|
||||
v-model="params.search"
|
||||
label="Search by id or name"
|
||||
class="full-width"
|
||||
lazy-rules
|
||||
autofocus
|
||||
/>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
<q-item>
|
||||
<q-item-section>
|
||||
<q-input
|
||||
v-model="params.clientFk"
|
||||
label="Customer ID"
|
||||
lazy-rules
|
||||
autofocus
|
||||
/>
|
||||
</q-item-section>
|
||||
</q-item>
|
||||
</q-list>
|
||||
</template>
|
||||
</VnFilterPanel>
|
||||
<TicketFilter data-key="TicketList" />
|
||||
</teleport-slot>
|
||||
<q-page class="q-pa-md">
|
||||
<paginate
|
||||
|
|
|
@ -6,7 +6,7 @@ const state = useState();
|
|||
</script>
|
||||
|
||||
<template>
|
||||
<q-drawer v-model="state.drawer.value" show-if-above :width="256" :breakpoint="500">
|
||||
<q-drawer v-model="state.drawer.value" show-if-above :width="256" :breakpoint="800">
|
||||
<q-scroll-area class="fit text-grey-8">
|
||||
<LeftMenu />
|
||||
</q-scroll-area>
|
||||
|
|
Loading…
Reference in New Issue