forked from verdnatura/salix-front
Updated translations
This commit is contained in:
parent
08c60b3da0
commit
42cef8ff0b
|
@ -8,6 +8,7 @@ const i18n = createI18n({
|
||||||
globalInjection: true,
|
globalInjection: true,
|
||||||
messages,
|
messages,
|
||||||
missingWarn: false,
|
missingWarn: false,
|
||||||
|
fallbackWarn: false,
|
||||||
legacy: false,
|
legacy: false,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -16,6 +16,8 @@ const props = defineProps({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const emit = defineEmits(['refresh', 'clear']);
|
||||||
|
|
||||||
const arrayData = useArrayData(props.dataKey);
|
const arrayData = useArrayData(props.dataKey);
|
||||||
const store = arrayData.store;
|
const store = arrayData.store;
|
||||||
const userParams = ref({});
|
const userParams = ref({});
|
||||||
|
@ -36,11 +38,22 @@ async function search() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// if (Object.keys(params))
|
|
||||||
|
|
||||||
await arrayData.addFilter({ params });
|
await arrayData.addFilter({ params });
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async function reload() {
|
||||||
|
await arrayData.fetch({ append: false });
|
||||||
|
emit('refresh');
|
||||||
|
}
|
||||||
|
|
||||||
|
async function clearFilters() {
|
||||||
|
userParams.value = {};
|
||||||
|
await arrayData.applyFilter({ params: {} });
|
||||||
|
await reload();
|
||||||
|
|
||||||
|
emit('clear');
|
||||||
|
}
|
||||||
|
|
||||||
const tags = computed(() => {
|
const tags = computed(() => {
|
||||||
const params = [];
|
const params = [];
|
||||||
|
|
||||||
|
@ -56,67 +69,104 @@ const tags = computed(() => {
|
||||||
|
|
||||||
async function remove(key) {
|
async function remove(key) {
|
||||||
delete userParams.value[key];
|
delete userParams.value[key];
|
||||||
|
delete store.userParams[key];
|
||||||
await search();
|
await search();
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<div class="q-pa-sm truncate-chip-labels">
|
|
||||||
<span v-if="tags.length === 0">You didn't enter any filter</span>
|
|
||||||
<q-chip
|
|
||||||
v-for="chip of tags"
|
|
||||||
:key="chip.label"
|
|
||||||
@remove="remove(chip.label)"
|
|
||||||
icon="label"
|
|
||||||
color="primary"
|
|
||||||
class="text-dark"
|
|
||||||
size="sm"
|
|
||||||
removable
|
|
||||||
>
|
|
||||||
<slot name="tags" :tag="chip">
|
|
||||||
<div class="q-gutter-x-xs">
|
|
||||||
<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">
|
<q-form @submit="search" @keyup.enter="search">
|
||||||
<div v-show="props.searchButton">
|
<q-list dense>
|
||||||
<q-separator />
|
<q-item class="q-mt-xs">
|
||||||
<q-item>
|
<q-item-section top>
|
||||||
<q-item-section>
|
<q-item-label
|
||||||
<q-btn
|
header
|
||||||
label="Search"
|
lines="1"
|
||||||
type="submit"
|
class="text-uppercase q-py-xs q-px-none"
|
||||||
color="primary"
|
>
|
||||||
class="full-width"
|
{{ t('Applied filters') }}
|
||||||
icon="search"
|
</q-item-label>
|
||||||
rounded
|
</q-item-section>
|
||||||
dense
|
<q-item-section top side>
|
||||||
/>
|
<div class="q-gutter-xs">
|
||||||
|
<q-btn
|
||||||
|
@click="clearFilters"
|
||||||
|
icon="filter_list_off"
|
||||||
|
color="primary"
|
||||||
|
size="sm"
|
||||||
|
padding="none"
|
||||||
|
round
|
||||||
|
flat
|
||||||
|
dense
|
||||||
|
>
|
||||||
|
<q-tooltip>{{ t('Remove filters') }}</q-tooltip>
|
||||||
|
</q-btn>
|
||||||
|
<q-btn
|
||||||
|
@click="reload"
|
||||||
|
icon="refresh"
|
||||||
|
color="primary"
|
||||||
|
size="sm"
|
||||||
|
padding="none"
|
||||||
|
round
|
||||||
|
flat
|
||||||
|
dense
|
||||||
|
>
|
||||||
|
<q-tooltip>{{ t('Refresh') }}</q-tooltip>
|
||||||
|
</q-btn>
|
||||||
|
</div>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
</div>
|
<q-item>
|
||||||
<q-separator />
|
<div v-if="tags.length === 0" class="text-grey centered font-xs">
|
||||||
<slot name="body" :params="userParams" :search-fn="search"></slot>
|
{{ t(`You didn't enter any filter`) }}
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
|
<q-chip
|
||||||
|
v-for="chip of tags"
|
||||||
|
:key="chip.label"
|
||||||
|
@remove="remove(chip.label)"
|
||||||
|
icon="label"
|
||||||
|
color="primary"
|
||||||
|
class="text-dark"
|
||||||
|
size="sm"
|
||||||
|
removable
|
||||||
|
>
|
||||||
|
<slot name="tags" :tag="chip">
|
||||||
|
<div class="q-gutter-x-xs">
|
||||||
|
<strong>{{ chip.label }}:</strong>
|
||||||
|
<span>"{{ chip.value }}"</span>
|
||||||
|
</div>
|
||||||
|
</slot>
|
||||||
|
</q-chip>
|
||||||
|
</div>
|
||||||
|
</q-item>
|
||||||
|
<q-separator />
|
||||||
|
<template v-if="props.searchButton">
|
||||||
|
<q-item>
|
||||||
|
<q-item-section class="q-py-sm">
|
||||||
|
<q-btn
|
||||||
|
:label="t('Search')"
|
||||||
|
type="submit"
|
||||||
|
color="primary"
|
||||||
|
class="full-width"
|
||||||
|
icon="search"
|
||||||
|
unelevated
|
||||||
|
rounded
|
||||||
|
dense
|
||||||
|
/>
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
<q-separator />
|
||||||
|
</template>
|
||||||
|
<slot name="body" :params="userParams" :search-fn="search"></slot>
|
||||||
|
</q-list>
|
||||||
</q-form>
|
</q-form>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<i18n>
|
<i18n>
|
||||||
{
|
es:
|
||||||
"en": {
|
You didn't enter any filter: No has introducido ningún filtro
|
||||||
"appliedFilters": "Applied filters"
|
Applied filters: Filtros aplicados
|
||||||
},
|
Remove filters: Eliminar filtros
|
||||||
"es": {
|
Refresh: Refrescar
|
||||||
"appliedFilters": "Filtros aplicados"
|
Search: Buscar
|
||||||
}
|
|
||||||
}
|
|
||||||
</i18n>
|
</i18n>
|
||||||
|
|
|
@ -0,0 +1,223 @@
|
||||||
|
<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,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<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(`params.${tag.label}`) }}: </strong>
|
||||||
|
<span>"{{ tag.value }}"</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template #body="{ params, searchFn }">
|
||||||
|
<q-list>
|
||||||
|
<q-item>
|
||||||
|
<q-item-section>
|
||||||
|
<q-input :label="t('FI')" v-model="params.fi" lazy-rules>
|
||||||
|
<template #prepend>
|
||||||
|
<q-icon name="badge" size="sm"></q-icon>
|
||||||
|
</template>
|
||||||
|
</q-input>
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
<q-item>
|
||||||
|
<q-item-section>
|
||||||
|
<q-input :label="t('Name')" v-model="params.name" lazy-rules />
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
<q-item>
|
||||||
|
<q-item-section>
|
||||||
|
<q-input
|
||||||
|
:label="t('Social Name')"
|
||||||
|
v-model="params.socialName"
|
||||||
|
lazy-rules
|
||||||
|
/>
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
<q-item>
|
||||||
|
<q-item-section v-if="!workers">
|
||||||
|
<q-skeleton type="QInput" class="full-width" />
|
||||||
|
</q-item-section>
|
||||||
|
<q-item-section v-if="workers">
|
||||||
|
<q-select
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="t('Salesperson')"
|
||||||
|
v-model="params.salesPersonFk"
|
||||||
|
:options="workers"
|
||||||
|
option-value="id"
|
||||||
|
option-label="name"
|
||||||
|
emit-value
|
||||||
|
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 v-if="!provinces">
|
||||||
|
<q-skeleton type="QInput" class="full-width" />
|
||||||
|
</q-item-section>
|
||||||
|
<q-item-section v-if="provinces">
|
||||||
|
<q-select
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="t('Province')"
|
||||||
|
v-model="params.provinceFk"
|
||||||
|
:options="provinces"
|
||||||
|
option-value="id"
|
||||||
|
option-label="name"
|
||||||
|
emit-value
|
||||||
|
map-options
|
||||||
|
/>
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
<q-item class="q-mb-md">
|
||||||
|
<q-item-section>
|
||||||
|
<q-input :label="t('City')" v-model="params.city" lazy-rules />
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
<q-separator />
|
||||||
|
<q-expansion-item :label="t('More options')" expand-separator>
|
||||||
|
<q-item>
|
||||||
|
<q-item-section>
|
||||||
|
<q-input
|
||||||
|
:label="t('Phone')"
|
||||||
|
v-model="params.phone"
|
||||||
|
lazy-rules
|
||||||
|
>
|
||||||
|
<template #prepend>
|
||||||
|
<q-icon name="phone" size="sm"></q-icon>
|
||||||
|
</template>
|
||||||
|
</q-input>
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
<q-item>
|
||||||
|
<q-item-section>
|
||||||
|
<q-input
|
||||||
|
:label="t('Email')"
|
||||||
|
v-model="params.email"
|
||||||
|
lazy-rules
|
||||||
|
>
|
||||||
|
<template #prepend>
|
||||||
|
<q-icon name="email" size="sm"></q-icon>
|
||||||
|
</template>
|
||||||
|
</q-input>
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
<q-item>
|
||||||
|
<q-item-section v-if="!zones">
|
||||||
|
<q-skeleton type="QInput" class="full-width" />
|
||||||
|
</q-item-section>
|
||||||
|
<q-item-section v-if="zones">
|
||||||
|
<q-select
|
||||||
|
@update:model-value="searchFn"
|
||||||
|
:label="t('Zone')"
|
||||||
|
v-model="params.zoneFk"
|
||||||
|
:options="zones"
|
||||||
|
option-value="id"
|
||||||
|
option-label="name"
|
||||||
|
emit-value
|
||||||
|
map-options
|
||||||
|
/>
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
<q-item>
|
||||||
|
<q-item-section>
|
||||||
|
<q-input
|
||||||
|
:label="t('Postcode')"
|
||||||
|
v-model="params.postcode"
|
||||||
|
lazy-rules
|
||||||
|
/>
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
</q-expansion-item>
|
||||||
|
</q-list>
|
||||||
|
</template>
|
||||||
|
</VnFilterPanel>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
en:
|
||||||
|
params:
|
||||||
|
fi: FI
|
||||||
|
name: Name
|
||||||
|
socialName: Social Name
|
||||||
|
salesPersonFk: Salesperson
|
||||||
|
provinceFk: Province
|
||||||
|
city: City
|
||||||
|
phone: Phone
|
||||||
|
email: Email
|
||||||
|
zoneFk: Zone
|
||||||
|
postcode: Postcode
|
||||||
|
es:
|
||||||
|
params:
|
||||||
|
fi: NIF
|
||||||
|
name: Nombre
|
||||||
|
socialName: Razón Social
|
||||||
|
salesPersonFk: Comercial
|
||||||
|
provinceFk: Provincia
|
||||||
|
city: Ciudad
|
||||||
|
phone: Teléfono
|
||||||
|
email: Email
|
||||||
|
zoneFk: Zona
|
||||||
|
postcode: CP
|
||||||
|
FI: NIF
|
||||||
|
Name: Nombre
|
||||||
|
Social Name: Razón social
|
||||||
|
Salesperson: Comercial
|
||||||
|
Province: Provincia
|
||||||
|
City: Ciudad
|
||||||
|
More options: Más opciones
|
||||||
|
Phone: Teléfono
|
||||||
|
Email: Email
|
||||||
|
Zone: Zona
|
||||||
|
Postcode: Código postal
|
||||||
|
</i18n>
|
||||||
|
|
||||||
|
<!-- <i18n>
|
||||||
|
{
|
||||||
|
"en": {
|
||||||
|
"fi": "Fiscal ID",
|
||||||
|
"name": "Name",
|
||||||
|
"socialName": "Social Name",
|
||||||
|
"salesPersonFk": "Salesperson",
|
||||||
|
"provinceFk": "Province",
|
||||||
|
"city": "City",
|
||||||
|
"zoneFk": "Zone",
|
||||||
|
"postcode": "Postcode"
|
||||||
|
},
|
||||||
|
"es": {
|
||||||
|
"fi": "NIF",
|
||||||
|
"name": "Nombre",
|
||||||
|
"socialName": "Razón social",
|
||||||
|
"salesPersonFk": "Comercial"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</i18n> -->
|
|
@ -1,38 +1,31 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
|
import { onMounted, onUnmounted } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useRouter } from 'vue-router';
|
import { useRouter } from 'vue-router';
|
||||||
import { useQuasar } from 'quasar';
|
import { useQuasar } from 'quasar';
|
||||||
import Paginate from 'src/components/PaginateData.vue';
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
import { toDate } from 'src/filters/index';
|
import { toDate } from 'src/filters/index';
|
||||||
|
|
||||||
|
import Paginate from 'src/components/PaginateData.vue';
|
||||||
import ClaimSummaryDialog from './Card/ClaimSummaryDialog.vue';
|
import ClaimSummaryDialog from './Card/ClaimSummaryDialog.vue';
|
||||||
import CustomerDescriptorPopover from 'src/pages/Customer/Card/CustomerDescriptorPopover.vue';
|
import CustomerDescriptorPopover from 'src/pages/Customer/Card/CustomerDescriptorPopover.vue';
|
||||||
|
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
||||||
|
import TeleportSlot from 'components/ui/TeleportSlot.vue';
|
||||||
|
import ClaimFilter from './ClaimFilter.vue';
|
||||||
|
|
||||||
|
const state = useStateStore();
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const quasar = useQuasar();
|
const quasar = useQuasar();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
const filter = {
|
onMounted(() => state.toggleRightDrawer());
|
||||||
include: [
|
onUnmounted(() => state.toggleRightDrawer());
|
||||||
{
|
|
||||||
relation: 'client',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
relation: 'claimState',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
relation: 'worker',
|
|
||||||
scope: {
|
|
||||||
include: { relation: 'user' },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
};
|
|
||||||
|
|
||||||
function stateColor(code) {
|
// function stateColor(code) {
|
||||||
if (code === 'pending') return 'green';
|
// if (code === 'pending') return 'green';
|
||||||
if (code === 'managed') return 'orange';
|
// if (code === 'managed') return 'orange';
|
||||||
if (code === 'resolved') return 'red';
|
// if (code === 'resolved') return 'red';
|
||||||
}
|
// }
|
||||||
|
|
||||||
function navigate(id) {
|
function navigate(id) {
|
||||||
router.push({ path: `/claim/${id}` });
|
router.push({ path: `/claim/${id}` });
|
||||||
|
@ -49,14 +42,29 @@ function viewSummary(id) {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
<teleport-slot to="#searchbar">
|
||||||
|
<VnSearchbar data-key="ClaimList" :label="t('Search by claim id or name')" />
|
||||||
|
</teleport-slot>
|
||||||
|
<teleport-slot to="#rightPanel">
|
||||||
|
<ClaimFilter data-key="ClaimList" />
|
||||||
|
</teleport-slot>
|
||||||
<q-page class="q-pa-md">
|
<q-page class="q-pa-md">
|
||||||
<paginate url="/Claims" :filter="filter" sort-by="id DESC" auto-load>
|
<paginate
|
||||||
|
data-key="ClaimList"
|
||||||
|
url="Claims/filter"
|
||||||
|
sort-by="id DESC"
|
||||||
|
auto-load
|
||||||
|
>
|
||||||
<template #body="{ rows }">
|
<template #body="{ rows }">
|
||||||
<q-card class="card" v-for="row of rows" :key="row.id">
|
<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
|
||||||
|
class="q-pa-none items-start cursor-pointer q-hoverable"
|
||||||
|
v-ripple
|
||||||
|
clickable
|
||||||
|
>
|
||||||
<q-item-section class="q-pa-md" @click="navigate(row.id)">
|
<q-item-section class="q-pa-md" @click="navigate(row.id)">
|
||||||
<div class="text-h6 link">
|
<div class="text-h6 link">
|
||||||
{{ row.client.name }}
|
{{ row.clientName }}
|
||||||
<q-popup-proxy>
|
<q-popup-proxy>
|
||||||
<customer-descriptor-popover :customer="row.client" />
|
<customer-descriptor-popover :customer="row.client" />
|
||||||
</q-popup-proxy>
|
</q-popup-proxy>
|
||||||
|
@ -65,27 +73,40 @@ function viewSummary(id) {
|
||||||
<q-list>
|
<q-list>
|
||||||
<q-item class="q-pa-none">
|
<q-item class="q-pa-none">
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-item-label caption>{{ t('claim.list.customer') }}</q-item-label>
|
<q-item-label caption>{{
|
||||||
<q-item-label>{{ row.client.name }}</q-item-label>
|
t('claim.list.customer')
|
||||||
|
}}</q-item-label>
|
||||||
|
<q-item-label>{{ row.clientName }}</q-item-label>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-item-label caption>{{ t('claim.list.assignedTo') }}</q-item-label>
|
<q-item-label caption>{{
|
||||||
<q-item-label>{{ row.worker.user.name }}</q-item-label>
|
t('claim.list.assignedTo')
|
||||||
|
}}</q-item-label>
|
||||||
|
<q-item-label>{{ row.workerName }}</q-item-label>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
<q-item class="q-pa-none">
|
<q-item class="q-pa-none">
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-item-label caption>{{ t('claim.list.created') }}</q-item-label>
|
<q-item-label caption>{{
|
||||||
<q-item-label>{{ toDate(row.created) }}</q-item-label>
|
t('claim.list.created')
|
||||||
|
}}</q-item-label>
|
||||||
|
<q-item-label>{{
|
||||||
|
toDate(row.created)
|
||||||
|
}}</q-item-label>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
<q-item-section>
|
<!-- <q-item-section>
|
||||||
<q-item-label caption>{{ t('claim.list.state') }}</q-item-label>
|
<q-item-label caption>{{
|
||||||
|
t('claim.list.state')
|
||||||
|
}}</q-item-label>
|
||||||
<q-item-label>
|
<q-item-label>
|
||||||
<q-chip :color="stateColor(row.claimState.code)" dense>
|
<q-chip
|
||||||
|
:color="stateColor(row.claimState.code)"
|
||||||
|
dense
|
||||||
|
>
|
||||||
{{ row.claimState.description }}
|
{{ row.claimState.description }}
|
||||||
</q-chip>
|
</q-chip>
|
||||||
</q-item-label>
|
</q-item-label>
|
||||||
</q-item-section>
|
</q-item-section> -->
|
||||||
</q-item>
|
</q-item>
|
||||||
</q-list>
|
</q-list>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
|
@ -111,14 +132,32 @@ function viewSummary(id) {
|
||||||
</q-menu>
|
</q-menu>
|
||||||
</q-btn> -->
|
</q-btn> -->
|
||||||
|
|
||||||
<q-btn flat round color="orange" icon="arrow_circle_right" @click="navigate(row.id)">
|
<q-btn
|
||||||
<q-tooltip>{{ t('components.smartCard.openCard') }}</q-tooltip>
|
flat
|
||||||
|
round
|
||||||
|
color="orange"
|
||||||
|
icon="arrow_circle_right"
|
||||||
|
@click="navigate(row.id)"
|
||||||
|
>
|
||||||
|
<q-tooltip>{{
|
||||||
|
t('components.smartCard.openCard')
|
||||||
|
}}</q-tooltip>
|
||||||
</q-btn>
|
</q-btn>
|
||||||
<q-btn flat round color="grey-7" icon="preview" @click="viewSummary(row.id)">
|
<q-btn
|
||||||
<q-tooltip>{{ t('components.smartCard.openSummary') }}</q-tooltip>
|
flat
|
||||||
|
round
|
||||||
|
color="grey-7"
|
||||||
|
icon="preview"
|
||||||
|
@click="viewSummary(row.id)"
|
||||||
|
>
|
||||||
|
<q-tooltip>{{
|
||||||
|
t('components.smartCard.openSummary')
|
||||||
|
}}</q-tooltip>
|
||||||
</q-btn>
|
</q-btn>
|
||||||
<q-btn flat round color="grey-7" icon="vn:client">
|
<q-btn flat round color="grey-7" icon="vn:client">
|
||||||
<q-tooltip>{{ t('components.smartCard.viewDescription') }}</q-tooltip>
|
<q-tooltip>{{
|
||||||
|
t('components.smartCard.viewDescription')
|
||||||
|
}}</q-tooltip>
|
||||||
<q-popup-proxy>
|
<q-popup-proxy>
|
||||||
<customer-descriptor-popover :customer="row.client" />
|
<customer-descriptor-popover :customer="row.client" />
|
||||||
</q-popup-proxy>
|
</q-popup-proxy>
|
||||||
|
@ -130,3 +169,7 @@ function viewSummary(id) {
|
||||||
</paginate>
|
</paginate>
|
||||||
</q-page>
|
</q-page>
|
||||||
</template>
|
</template>
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Search by claim id or name: Buscar por id o nombre de la reclamación
|
||||||
|
</i18n>
|
||||||
|
|
|
@ -33,11 +33,17 @@ function setWorkers(data) {
|
||||||
auto-load
|
auto-load
|
||||||
/>
|
/>
|
||||||
<VnFilterPanel :data-key="props.dataKey" :search-button="true">
|
<VnFilterPanel :data-key="props.dataKey" :search-button="true">
|
||||||
|
<template #tags="{ tag }">
|
||||||
|
<div class="q-gutter-x-xs">
|
||||||
|
<strong>{{ t(`params.${tag.label}`) }}: </strong>
|
||||||
|
<span>"{{ tag.value }}"</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
<template #body="{ params, searchFn }">
|
<template #body="{ params, searchFn }">
|
||||||
<q-list>
|
<q-list>
|
||||||
<q-item>
|
<q-item>
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-input :label="t('fi')" v-model="params.fi" lazy-rules>
|
<q-input :label="t('FI')" v-model="params.fi" lazy-rules>
|
||||||
<template #prepend>
|
<template #prepend>
|
||||||
<q-icon name="badge" size="sm"></q-icon>
|
<q-icon name="badge" size="sm"></q-icon>
|
||||||
</template>
|
</template>
|
||||||
|
@ -46,13 +52,13 @@ function setWorkers(data) {
|
||||||
</q-item>
|
</q-item>
|
||||||
<q-item>
|
<q-item>
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-input :label="t('name')" v-model="params.name" lazy-rules />
|
<q-input :label="t('Name')" v-model="params.name" lazy-rules />
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
<q-item>
|
<q-item>
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-input
|
<q-input
|
||||||
:label="t('socialName')"
|
:label="t('Social Name')"
|
||||||
v-model="params.socialName"
|
v-model="params.socialName"
|
||||||
lazy-rules
|
lazy-rules
|
||||||
/>
|
/>
|
||||||
|
@ -64,12 +70,13 @@ function setWorkers(data) {
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
<q-item-section v-if="workers">
|
<q-item-section v-if="workers">
|
||||||
<q-select
|
<q-select
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="t('Salesperson')"
|
||||||
v-model="params.salesPersonFk"
|
v-model="params.salesPersonFk"
|
||||||
:options="workers"
|
:options="workers"
|
||||||
option-value="id"
|
option-value="id"
|
||||||
option-label="name"
|
option-label="name"
|
||||||
emit-value
|
emit-value
|
||||||
:label="t('salesPersonFk')"
|
|
||||||
map-options
|
map-options
|
||||||
use-input
|
use-input
|
||||||
:input-debounce="0"
|
:input-debounce="0"
|
||||||
|
@ -92,10 +99,10 @@ function setWorkers(data) {
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
<q-item-section v-if="provinces">
|
<q-item-section v-if="provinces">
|
||||||
<q-select
|
<q-select
|
||||||
label="Province"
|
@update:model-value="searchFn()"
|
||||||
|
:label="t('Province')"
|
||||||
v-model="params.provinceFk"
|
v-model="params.provinceFk"
|
||||||
:options="provinces"
|
:options="provinces"
|
||||||
@update:model-value="searchFn"
|
|
||||||
option-value="id"
|
option-value="id"
|
||||||
option-label="name"
|
option-label="name"
|
||||||
emit-value
|
emit-value
|
||||||
|
@ -105,14 +112,18 @@ function setWorkers(data) {
|
||||||
</q-item>
|
</q-item>
|
||||||
<q-item class="q-mb-md">
|
<q-item class="q-mb-md">
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-input label="City" v-model="params.city" lazy-rules />
|
<q-input :label="t('City')" v-model="params.city" lazy-rules />
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
<q-separator />
|
<q-separator />
|
||||||
<q-expansion-item label="More options" expand-separator>
|
<q-expansion-item :label="t('More options')" expand-separator>
|
||||||
<q-item>
|
<q-item>
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-input label="Phone" v-model="params.phone" lazy-rules>
|
<q-input
|
||||||
|
:label="t('Phone')"
|
||||||
|
v-model="params.phone"
|
||||||
|
lazy-rules
|
||||||
|
>
|
||||||
<template #prepend>
|
<template #prepend>
|
||||||
<q-icon name="phone" size="sm"></q-icon>
|
<q-icon name="phone" size="sm"></q-icon>
|
||||||
</template>
|
</template>
|
||||||
|
@ -121,7 +132,11 @@ function setWorkers(data) {
|
||||||
</q-item>
|
</q-item>
|
||||||
<q-item>
|
<q-item>
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-input label="Email" v-model="params.email" lazy-rules>
|
<q-input
|
||||||
|
:label="t('Email')"
|
||||||
|
v-model="params.email"
|
||||||
|
lazy-rules
|
||||||
|
>
|
||||||
<template #prepend>
|
<template #prepend>
|
||||||
<q-icon name="email" size="sm"></q-icon>
|
<q-icon name="email" size="sm"></q-icon>
|
||||||
</template>
|
</template>
|
||||||
|
@ -134,7 +149,8 @@ function setWorkers(data) {
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
<q-item-section v-if="zones">
|
<q-item-section v-if="zones">
|
||||||
<q-select
|
<q-select
|
||||||
label="Zone"
|
@update:model-value="searchFn"
|
||||||
|
:label="t('Zone')"
|
||||||
v-model="params.zoneFk"
|
v-model="params.zoneFk"
|
||||||
:options="zones"
|
:options="zones"
|
||||||
option-value="id"
|
option-value="id"
|
||||||
|
@ -147,7 +163,7 @@ function setWorkers(data) {
|
||||||
<q-item>
|
<q-item>
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-input
|
<q-input
|
||||||
label="Postcode"
|
:label="t('Postcode')"
|
||||||
v-model="params.postcode"
|
v-model="params.postcode"
|
||||||
lazy-rules
|
lazy-rules
|
||||||
/>
|
/>
|
||||||
|
@ -160,12 +176,54 @@ function setWorkers(data) {
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<i18n>
|
<i18n>
|
||||||
|
en:
|
||||||
|
params:
|
||||||
|
fi: FI
|
||||||
|
name: Name
|
||||||
|
socialName: Social Name
|
||||||
|
salesPersonFk: Salesperson
|
||||||
|
provinceFk: Province
|
||||||
|
city: City
|
||||||
|
phone: Phone
|
||||||
|
email: Email
|
||||||
|
zoneFk: Zone
|
||||||
|
postcode: Postcode
|
||||||
|
es:
|
||||||
|
params:
|
||||||
|
fi: NIF
|
||||||
|
name: Nombre
|
||||||
|
socialName: Razón Social
|
||||||
|
salesPersonFk: Comercial
|
||||||
|
provinceFk: Provincia
|
||||||
|
city: Ciudad
|
||||||
|
phone: Teléfono
|
||||||
|
email: Email
|
||||||
|
zoneFk: Zona
|
||||||
|
postcode: CP
|
||||||
|
FI: NIF
|
||||||
|
Name: Nombre
|
||||||
|
Social Name: Razón social
|
||||||
|
Salesperson: Comercial
|
||||||
|
Province: Provincia
|
||||||
|
City: Ciudad
|
||||||
|
More options: Más opciones
|
||||||
|
Phone: Teléfono
|
||||||
|
Email: Email
|
||||||
|
Zone: Zona
|
||||||
|
Postcode: Código postal
|
||||||
|
</i18n>
|
||||||
|
|
||||||
|
<!-- <i18n>
|
||||||
{
|
{
|
||||||
"en": {
|
"en": {
|
||||||
"fi": "FI",
|
"fi": "Fiscal ID",
|
||||||
"name": "Name",
|
"name": "Name",
|
||||||
"socialName": "Social Name",
|
"socialName": "Social Name",
|
||||||
"salesPersonFk": "Salesperson"
|
"salesPersonFk": "Salesperson",
|
||||||
|
"provinceFk": "Province",
|
||||||
|
"city": "City",
|
||||||
|
"zoneFk": "Zone",
|
||||||
|
"postcode": "Postcode"
|
||||||
},
|
},
|
||||||
"es": {
|
"es": {
|
||||||
"fi": "NIF",
|
"fi": "NIF",
|
||||||
|
@ -174,4 +232,4 @@ function setWorkers(data) {
|
||||||
"salesPersonFk": "Comercial"
|
"salesPersonFk": "Comercial"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</i18n>
|
</i18n> -->
|
||||||
|
|
|
@ -23,6 +23,15 @@ function setWorkers(data) {
|
||||||
workers.value = data;
|
workers.value = data;
|
||||||
workersCopy.value = data;
|
workersCopy.value = data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function formatValue(value) {
|
||||||
|
console.log(value instanceof Boolean);
|
||||||
|
if (typeof value === 'boolean') {
|
||||||
|
return value ? t('Yes') : t('No');
|
||||||
|
}
|
||||||
|
//if (value)
|
||||||
|
return `"${value}"`;
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -37,111 +46,180 @@ function setWorkers(data) {
|
||||||
<VnFilterPanel :data-key="props.dataKey" :search-button="true">
|
<VnFilterPanel :data-key="props.dataKey" :search-button="true">
|
||||||
<template #tags="{ tag }">
|
<template #tags="{ tag }">
|
||||||
<div class="q-gutter-x-xs">
|
<div class="q-gutter-x-xs">
|
||||||
<strong>{{ t(tag.label) }}: </strong>
|
<strong>{{ t(`params.${tag.label}`) }}: </strong>
|
||||||
<span>"{{ tag.value }}"</span>
|
<span>{{ formatValue(tag.value) }}</span>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<template #body="{ params, searchFn }">
|
<template #body="{ params, searchFn }">
|
||||||
<q-list dense>
|
<q-item>
|
||||||
<q-item>
|
<q-item-section>
|
||||||
<q-item-section>
|
<q-input
|
||||||
<q-input
|
v-model="params.clientFk"
|
||||||
v-model="params.clientFk"
|
:label="t('Customer ID')"
|
||||||
label="Customer ID"
|
lazy-rules
|
||||||
lazy-rules
|
autofocus
|
||||||
autofocus
|
/>
|
||||||
/>
|
</q-item-section>
|
||||||
</q-item-section>
|
<q-item-section>
|
||||||
<q-item-section>
|
<q-input v-model="params.orderFk" :label="t('Order ID')" lazy-rules />
|
||||||
<q-input v-model="params.orderFk" label="Order ID" lazy-rules />
|
</q-item-section>
|
||||||
</q-item-section>
|
</q-item>
|
||||||
</q-item>
|
<q-item>
|
||||||
<q-item>
|
<q-item-section>
|
||||||
<q-item-section>
|
<q-input
|
||||||
<q-input
|
v-model="params.dateFrom"
|
||||||
v-model="params.dateFrom"
|
:label="t('From')"
|
||||||
label="From"
|
autofocus
|
||||||
autofocus
|
readonly
|
||||||
readonly
|
>
|
||||||
>
|
<template #append>
|
||||||
<template #append>
|
<q-icon name="event" class="cursor-pointer">
|
||||||
<q-icon name="event" class="cursor-pointer">
|
<q-popup-proxy
|
||||||
<q-popup-proxy
|
cover
|
||||||
cover
|
transition-show="scale"
|
||||||
transition-show="scale"
|
transition-hide="scale"
|
||||||
transition-hide="scale"
|
>
|
||||||
>
|
<q-date v-model="params.dateFrom">
|
||||||
<q-date v-model="params.dateFrom">
|
<div class="row items-center justify-end">
|
||||||
<div class="row items-center justify-end">
|
<q-btn
|
||||||
<q-btn
|
v-close-popup
|
||||||
v-close-popup
|
label="Close"
|
||||||
label="Close"
|
color="primary"
|
||||||
color="primary"
|
flat
|
||||||
flat
|
/>
|
||||||
/>
|
</div>
|
||||||
</div>
|
</q-date>
|
||||||
</q-date>
|
</q-popup-proxy>
|
||||||
</q-popup-proxy>
|
</q-icon>
|
||||||
</q-icon>
|
</template>
|
||||||
</template>
|
</q-input>
|
||||||
</q-input>
|
</q-item-section>
|
||||||
</q-item-section>
|
<q-item-section>
|
||||||
<q-item-section>
|
<q-input v-model="params.dateTo" :label="t('To')" autofocus readonly>
|
||||||
<q-input v-model="params.dateTo" label="To" autofocus readonly>
|
<template #append>
|
||||||
<template #append>
|
<q-icon name="event" class="cursor-pointer">
|
||||||
<q-icon name="event" class="cursor-pointer">
|
<q-popup-proxy
|
||||||
<q-popup-proxy
|
cover
|
||||||
cover
|
transition-show="scale"
|
||||||
transition-show="scale"
|
transition-hide="scale"
|
||||||
transition-hide="scale"
|
>
|
||||||
>
|
<q-date v-model="params.dateTo">
|
||||||
<q-date v-model="params.dateTo">
|
<div class="row items-center justify-end">
|
||||||
<div class="row items-center justify-end">
|
<q-btn
|
||||||
<q-btn
|
v-close-popup
|
||||||
v-close-popup
|
label="Close"
|
||||||
label="Close"
|
color="primary"
|
||||||
color="primary"
|
flat
|
||||||
flat
|
/>
|
||||||
/>
|
</div>
|
||||||
</div>
|
</q-date>
|
||||||
</q-date>
|
</q-popup-proxy>
|
||||||
</q-popup-proxy>
|
</q-icon>
|
||||||
</q-icon>
|
</template>
|
||||||
</template>
|
</q-input>
|
||||||
</q-input>
|
</q-item-section>
|
||||||
</q-item-section>
|
</q-item>
|
||||||
</q-item>
|
<q-item>
|
||||||
|
<q-item-section>
|
||||||
|
<q-select
|
||||||
|
v-model="params.salesPersonFk"
|
||||||
|
:options="workers"
|
||||||
|
option-value="id"
|
||||||
|
option-label="name"
|
||||||
|
emit-value
|
||||||
|
:label="t('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="t('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="t('Invoice Out')"
|
||||||
|
lazy-rules
|
||||||
|
/>
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
<q-item>
|
||||||
|
<q-item-section>
|
||||||
|
<q-checkbox
|
||||||
|
v-model="params.myTeam"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="t('My team')"
|
||||||
|
toggle-indeterminate
|
||||||
|
/>
|
||||||
|
</q-item-section>
|
||||||
|
<q-item-section>
|
||||||
|
<q-checkbox
|
||||||
|
v-model="params.pending"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="t('Pending')"
|
||||||
|
toggle-indeterminate
|
||||||
|
/>
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
<q-item>
|
||||||
|
<q-item-section>
|
||||||
|
<q-checkbox
|
||||||
|
v-model="params.hasInvoice"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="t('Invoiced')"
|
||||||
|
toggle-indeterminate
|
||||||
|
/>
|
||||||
|
</q-item-section>
|
||||||
|
<q-item-section>
|
||||||
|
<q-checkbox
|
||||||
|
v-model="params.hasRoute"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="t('Routed')"
|
||||||
|
toggle-indeterminate
|
||||||
|
/>
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
<q-item>
|
||||||
|
<q-item-section>
|
||||||
|
<q-checkbox
|
||||||
|
v-model="params.problems"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="t('With problems')"
|
||||||
|
toggle-indeterminate
|
||||||
|
/>
|
||||||
|
</q-item-section>
|
||||||
|
</q-item>
|
||||||
|
<q-separator />
|
||||||
|
<q-expansion-item :label="t('More options')" expand-separator>
|
||||||
<q-item>
|
<q-item>
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-select
|
<q-select
|
||||||
v-model="params.salesPersonFk"
|
:label="t('Province')"
|
||||||
:options="workers"
|
v-model="params.provinceFk"
|
||||||
option-value="id"
|
:options="provinces"
|
||||||
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-value="id"
|
||||||
option-label="name"
|
option-label="name"
|
||||||
emit-value
|
emit-value
|
||||||
|
@ -151,112 +229,91 @@ function setWorkers(data) {
|
||||||
</q-item>
|
</q-item>
|
||||||
<q-item>
|
<q-item>
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-input v-model="params.refFk" label="Invoice Out" lazy-rules />
|
<q-select
|
||||||
</q-item-section>
|
:label="t('Agency')"
|
||||||
</q-item>
|
v-model="params.agencyModeFk"
|
||||||
<q-item>
|
:options="agencies"
|
||||||
<q-item-section>
|
option-value="id"
|
||||||
<q-checkbox
|
option-label="name"
|
||||||
v-model="params.myTeam"
|
emit-value
|
||||||
label="My team"
|
map-options
|
||||||
@update:model-value="searchFn()"
|
|
||||||
toggle-indeterminate
|
|
||||||
/>
|
|
||||||
</q-item-section>
|
|
||||||
<q-item-section>
|
|
||||||
<q-checkbox
|
|
||||||
v-model="params.problems"
|
|
||||||
label="Has problems"
|
|
||||||
toggle-indeterminate
|
|
||||||
/>
|
/>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
<q-item>
|
<q-item>
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-checkbox
|
<q-select
|
||||||
v-model="params.pending"
|
:label="t('Warehouse')"
|
||||||
label="Pending"
|
v-model="params.warehouseFk"
|
||||||
toggle-indeterminate
|
:options="warehouses"
|
||||||
/>
|
option-value="id"
|
||||||
</q-item-section>
|
option-label="name"
|
||||||
|
emit-value
|
||||||
<q-item-section>
|
map-options
|
||||||
<q-checkbox
|
|
||||||
v-model="params.hasRoute"
|
|
||||||
label="Has route"
|
|
||||||
toggle-indeterminate
|
|
||||||
/>
|
/>
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
</q-item>
|
</q-item>
|
||||||
<q-item>
|
</q-expansion-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>
|
</template>
|
||||||
</VnFilterPanel>
|
</VnFilterPanel>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<i18n>
|
<i18n>
|
||||||
|
en:
|
||||||
|
params:
|
||||||
|
search: Contains
|
||||||
|
es:
|
||||||
|
params:
|
||||||
|
search: Contiene
|
||||||
|
clientFk: Cliente
|
||||||
|
orderFK: Pedido
|
||||||
|
dateFrom: Desde
|
||||||
|
dateTo: Hasta
|
||||||
|
salesPersonFk: Comercial
|
||||||
|
stateFk: Estado
|
||||||
|
refFk: Ref. Factura
|
||||||
|
myTeam: Mi equipo
|
||||||
|
pending: Pendiente
|
||||||
|
hasInvoice: Facturado
|
||||||
|
hasRoute: Enrutado
|
||||||
|
Customer ID: ID Cliente
|
||||||
|
Order ID: ID Pedido
|
||||||
|
From: Desde
|
||||||
|
To: Hasta
|
||||||
|
Salesperson: Comercial
|
||||||
|
State: Estado
|
||||||
|
Invoice Out: Ref. Factura
|
||||||
|
My team: Mi equipo
|
||||||
|
Pending: Pendiente
|
||||||
|
With problems: Con problemas
|
||||||
|
Invoiced: Facturado
|
||||||
|
Routed: Enrutado
|
||||||
|
More options: Más opciones
|
||||||
|
Province: Provincia
|
||||||
|
Agency: Agencia
|
||||||
|
Warehouse: Almacén
|
||||||
|
|
||||||
|
Yes: Si
|
||||||
|
No: No
|
||||||
|
</i18n>
|
||||||
|
|
||||||
|
<!-- <i18n>
|
||||||
{
|
{
|
||||||
"en": {
|
"en": {
|
||||||
"search": "Contains",
|
"search": "Contains",
|
||||||
"clientFk": 'Client',
|
"clientFk": 'Customer',
|
||||||
|
"orderFk": 'Order',
|
||||||
"dateFrom": 'From',
|
"dateFrom": 'From',
|
||||||
"dateTo": 'To'
|
"dateTo": 'To',
|
||||||
|
"salesPersonFk": "Sales Person"
|
||||||
},
|
},
|
||||||
"es": {
|
"es": {
|
||||||
"search": "Contiene",
|
"search": "Contiene",
|
||||||
"clientFk": 'Cliente',
|
"clientFk": 'Cliente',
|
||||||
|
"orderFk": 'Pedido',
|
||||||
"dateFrom": 'Desde',
|
"dateFrom": 'Desde',
|
||||||
"dateTo": 'Hasta'
|
"dateTo": 'Hasta',
|
||||||
|
"salesPersonFk": "Comercial"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</i18n>
|
</i18n> -->
|
||||||
|
|
Loading…
Reference in New Issue