forked from verdnatura/salix-front
Merge pull request 'refactor: refs #6887 pending claim changes' (!335) from 6887-endClaimMigration into dev
Reviewed-on: verdnatura/salix-front#335 Reviewed-by: Javier Segarra <jsegarra@verdnatura.es>
This commit is contained in:
commit
e3a36c0ab1
|
@ -141,15 +141,6 @@ select:-webkit-autofill {
|
||||||
background-color: var(--vn-section-color);
|
background-color: var(--vn-section-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
.q-checkbox {
|
|
||||||
& .q-checkbox__label {
|
|
||||||
color: var(--vn-text-color);
|
|
||||||
}
|
|
||||||
& .q-checkbox__inner {
|
|
||||||
color: var(--vn-label-color);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.tr-header {
|
.tr-header {
|
||||||
color: var(--vn-label-color);
|
color: var(--vn-label-color);
|
||||||
}
|
}
|
||||||
|
|
|
@ -521,7 +521,7 @@ claim:
|
||||||
records: records
|
records: records
|
||||||
card:
|
card:
|
||||||
claimId: Claim ID
|
claimId: Claim ID
|
||||||
assignedTo: Assigned
|
attendedBy: Attended by
|
||||||
created: Created
|
created: Created
|
||||||
state: State
|
state: State
|
||||||
ticketId: Ticket ID
|
ticketId: Ticket ID
|
||||||
|
@ -559,6 +559,7 @@ claim:
|
||||||
responsible: Responsible
|
responsible: Responsible
|
||||||
worker: Worker
|
worker: Worker
|
||||||
redelivery: Redelivery
|
redelivery: Redelivery
|
||||||
|
changeState: Change state
|
||||||
basicData:
|
basicData:
|
||||||
customer: Customer
|
customer: Customer
|
||||||
assignedTo: Assigned
|
assignedTo: Assigned
|
||||||
|
@ -1228,6 +1229,12 @@ item/itemType:
|
||||||
itemType: Item type
|
itemType: Item type
|
||||||
basicData: Basic data
|
basicData: Basic data
|
||||||
summary: Summary
|
summary: Summary
|
||||||
|
zone:
|
||||||
|
pageTitles:
|
||||||
|
zones: Zone
|
||||||
|
zonesList: Zones
|
||||||
|
deliveryList: Delivery days
|
||||||
|
upcomingList: Upcoming deliveries
|
||||||
components:
|
components:
|
||||||
topbar: {}
|
topbar: {}
|
||||||
itemsFilterPanel:
|
itemsFilterPanel:
|
||||||
|
|
|
@ -519,7 +519,7 @@ claim:
|
||||||
records: registros
|
records: registros
|
||||||
card:
|
card:
|
||||||
claimId: ID reclamación
|
claimId: ID reclamación
|
||||||
assignedTo: Asignada a
|
attendedBy: Atendida por
|
||||||
created: Creada
|
created: Creada
|
||||||
state: Estado
|
state: Estado
|
||||||
ticketId: ID ticket
|
ticketId: ID ticket
|
||||||
|
@ -557,6 +557,7 @@ claim:
|
||||||
responsible: Responsable
|
responsible: Responsable
|
||||||
worker: Trabajador
|
worker: Trabajador
|
||||||
redelivery: Devolución
|
redelivery: Devolución
|
||||||
|
changeState: Cambiar estado
|
||||||
basicData:
|
basicData:
|
||||||
customer: Cliente
|
customer: Cliente
|
||||||
assignedTo: Asignada a
|
assignedTo: Asignada a
|
||||||
|
@ -1227,6 +1228,12 @@ item/itemType:
|
||||||
itemType: Familia
|
itemType: Familia
|
||||||
basicData: Datos básicos
|
basicData: Datos básicos
|
||||||
summary: Resumen
|
summary: Resumen
|
||||||
|
zone:
|
||||||
|
pageTitles:
|
||||||
|
zones: Zona
|
||||||
|
zonesList: Zonas
|
||||||
|
deliveryList: Días de entrega
|
||||||
|
upcomingList: Próximos repartos
|
||||||
components:
|
components:
|
||||||
topbar: {}
|
topbar: {}
|
||||||
itemsFilterPanel:
|
itemsFilterPanel:
|
||||||
|
|
|
@ -41,10 +41,6 @@ const claimStates = ref([]);
|
||||||
const claimStatesCopy = ref([]);
|
const claimStatesCopy = ref([]);
|
||||||
const optionsList = ref([]);
|
const optionsList = ref([]);
|
||||||
|
|
||||||
function setWorkers(data) {
|
|
||||||
workers.value = data;
|
|
||||||
workersCopy.value = data;
|
|
||||||
}
|
|
||||||
const workersOptions = ref([]);
|
const workersOptions = ref([]);
|
||||||
|
|
||||||
function setClaimStates(data) {
|
function setClaimStates(data) {
|
||||||
|
|
|
@ -11,6 +11,7 @@ import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
import useCardDescription from 'src/composables/useCardDescription';
|
import useCardDescription from 'src/composables/useCardDescription';
|
||||||
import VnUserLink from 'src/components/ui/VnUserLink.vue';
|
import VnUserLink from 'src/components/ui/VnUserLink.vue';
|
||||||
import { getUrl } from 'src/composables/getUrl';
|
import { getUrl } from 'src/composables/getUrl';
|
||||||
|
import ZoneDescriptorProxy from 'src/pages/Zone/Card/ZoneDescriptorProxy.vue';
|
||||||
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
id: {
|
id: {
|
||||||
|
@ -73,8 +74,9 @@ const filter = {
|
||||||
|
|
||||||
const STATE_COLOR = {
|
const STATE_COLOR = {
|
||||||
pending: 'warning',
|
pending: 'warning',
|
||||||
managed: 'info',
|
incomplete: 'info',
|
||||||
resolved: 'positive',
|
resolved: 'positive',
|
||||||
|
canceled: 'negative',
|
||||||
};
|
};
|
||||||
function stateColor(code) {
|
function stateColor(code) {
|
||||||
return STATE_COLOR[code];
|
return STATE_COLOR[code];
|
||||||
|
@ -127,17 +129,24 @@ onMounted(async () => {
|
||||||
</VnLv>
|
</VnLv>
|
||||||
<VnLv
|
<VnLv
|
||||||
v-if="entity.worker"
|
v-if="entity.worker"
|
||||||
:label="t('claim.card.assignedTo')"
|
:label="t('claim.card.attendedBy')"
|
||||||
:value="entity.worker.user.name"
|
:value="entity.worker.user.name"
|
||||||
>
|
>
|
||||||
<template #value>
|
<template #value>
|
||||||
<VnUserLink
|
<VnUserLink
|
||||||
:name="entity.worker.user.name"
|
:name="entity.worker.user.nickname"
|
||||||
:worker-id="entity.worker.id"
|
:worker-id="entity.worker.id"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</VnLv>
|
</VnLv>
|
||||||
<VnLv :label="t('claim.card.zone')" :value="entity.ticket?.zone?.name" />
|
<VnLv :label="t('claim.card.zone')">
|
||||||
|
<template #value>
|
||||||
|
<span class="link">
|
||||||
|
{{ entity.ticket?.zone?.name }}
|
||||||
|
<ZoneDescriptorProxy :id="entity.ticket?.zone?.id" />
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('claim.card.province')"
|
:label="t('claim.card.province')"
|
||||||
:value="entity.ticket?.address?.province?.name"
|
:value="entity.ticket?.address?.province?.name"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { onMounted, ref, computed } from 'vue';
|
import { onMounted, ref, computed } from 'vue';
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute, useRouter } from 'vue-router';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { toDate, toCurrency } from 'src/filters';
|
import { toDate, toCurrency } from 'src/filters';
|
||||||
import CardSummary from 'components/ui/CardSummary.vue';
|
import CardSummary from 'components/ui/CardSummary.vue';
|
||||||
|
@ -13,8 +13,11 @@ import VnUserLink from 'src/components/ui/VnUserLink.vue';
|
||||||
import ItemDescriptorProxy from 'src/pages/Item/Card/ItemDescriptorProxy.vue';
|
import ItemDescriptorProxy from 'src/pages/Item/Card/ItemDescriptorProxy.vue';
|
||||||
import VnTitle from 'src/components/common/VnTitle.vue';
|
import VnTitle from 'src/components/common/VnTitle.vue';
|
||||||
import CustomerDescriptorProxy from 'src/pages/Customer/Card/CustomerDescriptorProxy.vue';
|
import CustomerDescriptorProxy from 'src/pages/Customer/Card/CustomerDescriptorProxy.vue';
|
||||||
|
import axios from 'axios';
|
||||||
|
import dashIfEmpty from 'src/filters/dashIfEmpty';
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
const router = useRouter();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const { getTokenMultimedia } = useSession();
|
const { getTokenMultimedia } = useSession();
|
||||||
const token = getTokenMultimedia();
|
const token = getTokenMultimedia();
|
||||||
|
@ -27,7 +30,7 @@ const $props = defineProps({
|
||||||
});
|
});
|
||||||
|
|
||||||
const entityId = computed(() => $props.id || route.params.id);
|
const entityId = computed(() => $props.id || route.params.id);
|
||||||
|
const ClaimStates = ref([]);
|
||||||
const claimUrl = ref();
|
const claimUrl = ref();
|
||||||
const salixUrl = ref();
|
const salixUrl = ref();
|
||||||
const claimDmsRef = ref();
|
const claimDmsRef = ref();
|
||||||
|
@ -99,8 +102,9 @@ const detailsColumns = ref([
|
||||||
|
|
||||||
const STATE_COLOR = {
|
const STATE_COLOR = {
|
||||||
pending: 'warning',
|
pending: 'warning',
|
||||||
managed: 'info',
|
incomplete: 'info',
|
||||||
resolved: 'positive',
|
resolved: 'positive',
|
||||||
|
canceled: 'negative',
|
||||||
};
|
};
|
||||||
function stateColor(code) {
|
function stateColor(code) {
|
||||||
return STATE_COLOR[code];
|
return STATE_COLOR[code];
|
||||||
|
@ -162,6 +166,10 @@ function openDialog(dmsId) {
|
||||||
multimediaSlide.value = dmsId;
|
multimediaSlide.value = dmsId;
|
||||||
multimediaDialog.value = true;
|
multimediaDialog.value = true;
|
||||||
}
|
}
|
||||||
|
async function changeState(value) {
|
||||||
|
await axios.patch(`Claims/updateClaim/${entityId.value}`, { claimStateFk: value });
|
||||||
|
router.go(route.fullPath);
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -171,6 +179,7 @@ function openDialog(dmsId) {
|
||||||
@on-fetch="(data) => setClaimDms(data)"
|
@on-fetch="(data) => setClaimDms(data)"
|
||||||
ref="claimDmsRef"
|
ref="claimDmsRef"
|
||||||
/>
|
/>
|
||||||
|
<FetchData url="ClaimStates" @on-fetch="(data) => (ClaimStates = data)" auto-load />
|
||||||
<CardSummary
|
<CardSummary
|
||||||
ref="summary"
|
ref="summary"
|
||||||
:url="`Claims/${entityId}/getSummary`"
|
:url="`Claims/${entityId}/getSummary`"
|
||||||
|
@ -180,6 +189,36 @@ function openDialog(dmsId) {
|
||||||
<template #header="{ entity: { claim } }">
|
<template #header="{ entity: { claim } }">
|
||||||
{{ claim.id }} - {{ claim.client.name }} ({{ claim.client.id }})
|
{{ claim.id }} - {{ claim.client.name }} ({{ claim.client.id }})
|
||||||
</template>
|
</template>
|
||||||
|
<template #header-right>
|
||||||
|
<QBtnDropdown
|
||||||
|
side
|
||||||
|
top
|
||||||
|
color="black"
|
||||||
|
text-color="white"
|
||||||
|
:label="t('ticket.summary.changeState')"
|
||||||
|
>
|
||||||
|
<QList>
|
||||||
|
<QVirtualScroll
|
||||||
|
style="max-height: 300px"
|
||||||
|
:items="ClaimStates"
|
||||||
|
separator
|
||||||
|
v-slot="{ item, index }"
|
||||||
|
>
|
||||||
|
<QItem
|
||||||
|
:key="index"
|
||||||
|
dense
|
||||||
|
clickable
|
||||||
|
v-close-popup
|
||||||
|
@click="changeState(item.id)"
|
||||||
|
>
|
||||||
|
<QItemSection>
|
||||||
|
<QItemLabel>{{ item.description }}</QItemLabel>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
</QVirtualScroll>
|
||||||
|
</QList>
|
||||||
|
</QBtnDropdown>
|
||||||
|
</template>
|
||||||
<template #body="{ entity: { claim, salesClaimed, developments } }">
|
<template #body="{ entity: { claim, salesClaimed, developments } }">
|
||||||
<QCard class="vn-one">
|
<QCard class="vn-one">
|
||||||
<VnTitle
|
<VnTitle
|
||||||
|
@ -223,7 +262,7 @@ function openDialog(dmsId) {
|
||||||
</VnLv>
|
</VnLv>
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('claim.basicData.pickup')"
|
:label="t('claim.basicData.pickup')"
|
||||||
:value="t(`claim.basicData.${claim.pickup}`)"
|
:value="`${dashIfEmpty(claim.pickup)}`"
|
||||||
/>
|
/>
|
||||||
</QCard>
|
</QCard>
|
||||||
<QCard class="vn-three">
|
<QCard class="vn-three">
|
||||||
|
@ -447,4 +486,8 @@ function openDialog(dmsId) {
|
||||||
.zindex {
|
.zindex {
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.change-state {
|
||||||
|
width: 10%;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -188,7 +188,7 @@ async function changeState(value) {
|
||||||
:label="t('ticket.summary.landed')"
|
:label="t('ticket.summary.landed')"
|
||||||
:value="toDate(ticket.landed)"
|
:value="toDate(ticket.landed)"
|
||||||
/>
|
/>
|
||||||
<VnLv :label="t('global.packages')" :value="ticket.packages" />
|
<VnLv :label="t('globals.packages')" :value="ticket.packages" />
|
||||||
<VnLv :value="ticket.address.phone">
|
<VnLv :value="ticket.address.phone">
|
||||||
<template #label>
|
<template #label>
|
||||||
{{ t('ticket.summary.consigneePhone') }}
|
{{ t('ticket.summary.consigneePhone') }}
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
<script setup>
|
||||||
|
import VnCard from 'components/common/VnCard.vue';
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<VnCard data-key="Zone" base-url="Zones" />
|
||||||
|
</template>
|
|
@ -0,0 +1,103 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref, computed } from 'vue';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
|
import CardDescriptor from 'components/ui/CardDescriptor.vue';
|
||||||
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
|
import ZoneDescriptorMenuItems from './ZoneDescriptorMenuItems.vue';
|
||||||
|
|
||||||
|
import useCardDescription from 'src/composables/useCardDescription';
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
id: {
|
||||||
|
type: Number,
|
||||||
|
required: false,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const route = useRoute();
|
||||||
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
const filter = {
|
||||||
|
include: [
|
||||||
|
{
|
||||||
|
relation: 'agencyMode',
|
||||||
|
scope: {
|
||||||
|
fields: ['name', 'id'],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|
||||||
|
const entityId = computed(() => {
|
||||||
|
return $props.id || route.params.id;
|
||||||
|
});
|
||||||
|
|
||||||
|
const data = ref(useCardDescription());
|
||||||
|
|
||||||
|
const setData = (entity) => {
|
||||||
|
data.value = useCardDescription(entity.ref, entity.id);
|
||||||
|
};
|
||||||
|
|
||||||
|
function extractHour(dateTime) {
|
||||||
|
const date = new Date(dateTime);
|
||||||
|
const hours = date.getHours().toString().padStart(2, '0');
|
||||||
|
const minutes = date.getMinutes().toString().padStart(2, '0');
|
||||||
|
return `${hours}:${minutes}`;
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<CardDescriptor
|
||||||
|
module="Zone"
|
||||||
|
:url="`Zones/${entityId}`"
|
||||||
|
:title="data.title"
|
||||||
|
:subtitle="data.subtitle"
|
||||||
|
:filter="filter"
|
||||||
|
@on-fetch="setData"
|
||||||
|
data-key="zoneData"
|
||||||
|
>
|
||||||
|
<template #header-extra-action>
|
||||||
|
<QBtn
|
||||||
|
round
|
||||||
|
flat
|
||||||
|
dense
|
||||||
|
size="md"
|
||||||
|
icon="preview"
|
||||||
|
color="white"
|
||||||
|
class="link"
|
||||||
|
:to="{ name: 'ZoneList' }"
|
||||||
|
>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('Summary') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
</template>
|
||||||
|
<!-- <template #menu="{ entity }">
|
||||||
|
<ZoneDescriptorMenuItems :zone="entity" />
|
||||||
|
</template> -->
|
||||||
|
<template #body="{ entity }">
|
||||||
|
{{ console.log('entity', entity) }}
|
||||||
|
<VnLv :label="t('Agency')" :value="entity.agencyMode.name" />
|
||||||
|
<VnLv :label="t('Closing hour')" :value="extractHour(entity.hour)" />
|
||||||
|
<VnLv :label="t('zoneing days')" :value="entity.zoneingDays" />
|
||||||
|
<VnLv :label="t('Price')" :value="entity.price" />
|
||||||
|
<VnLv :label="t('Bonus')" :value="entity.bonus" />
|
||||||
|
</template>
|
||||||
|
</CardDescriptor>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Summary: Detalles
|
||||||
|
The zone will be deleted: El envío será eliminado
|
||||||
|
Do you want to delete this zone?: ¿Quieres eliminar este envío?
|
||||||
|
All zones with current agency: Todos los envíos con la agencia actual
|
||||||
|
Agency: Agencia
|
||||||
|
Closing hour: Hora de cierre
|
||||||
|
zoneing days: Días de viaje
|
||||||
|
Price: Precio
|
||||||
|
Bonus: Bonificación
|
||||||
|
</i18n>
|
|
@ -0,0 +1,93 @@
|
||||||
|
<script setup>
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
import { useRouter } from 'vue-router';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
const { dialog, notify } = useQuasar();
|
||||||
|
|
||||||
|
import VnConfirm from 'components/ui/VnConfirm.vue';
|
||||||
|
|
||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
zone: {
|
||||||
|
type: Object,
|
||||||
|
default: () => {},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const { push, currentRoute } = useRouter();
|
||||||
|
const zoneId = currentRoute.value.params.id;
|
||||||
|
|
||||||
|
const actions = {
|
||||||
|
clone: async () => {
|
||||||
|
const opts = { message: t('Zone cloned'), type: 'positive' };
|
||||||
|
let clonedZoneId;
|
||||||
|
|
||||||
|
try {
|
||||||
|
const { data } = await axios.post(`Zones/${zoneId}/clone`, {
|
||||||
|
shipped: $props.zone.value.shipped,
|
||||||
|
});
|
||||||
|
clonedZoneId = data;
|
||||||
|
} catch (e) {
|
||||||
|
opts.message = t('It was not able to clone the zone');
|
||||||
|
opts.type = 'negative';
|
||||||
|
} finally {
|
||||||
|
notify(opts);
|
||||||
|
|
||||||
|
if (clonedZoneId) push({ name: 'ZoneSummary', params: { id: clonedZoneId } });
|
||||||
|
}
|
||||||
|
},
|
||||||
|
remove: async () => {
|
||||||
|
try {
|
||||||
|
await axios.post(`Zones/${zoneId}/setDeleted`);
|
||||||
|
|
||||||
|
notify({ message: t('Zone deleted'), type: 'positive' });
|
||||||
|
notify({
|
||||||
|
message: t('You can undo this action within the first hour'),
|
||||||
|
icon: 'info',
|
||||||
|
});
|
||||||
|
|
||||||
|
push({ name: 'ZoneList' });
|
||||||
|
} catch (e) {
|
||||||
|
notify({ message: e.message, type: 'negative' });
|
||||||
|
}
|
||||||
|
},
|
||||||
|
};
|
||||||
|
function openConfirmDialog(callback) {
|
||||||
|
dialog({
|
||||||
|
component: VnConfirm,
|
||||||
|
componentProps: {
|
||||||
|
promise: actions[callback],
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<QItem @click="openConfirmDialog('clone')" v-ripple clickable>
|
||||||
|
<QItemSection avatar>
|
||||||
|
<QIcon name="content_copy" />
|
||||||
|
</QItemSection>
|
||||||
|
<QItemSection>{{ t('To clone zone') }}</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem @click="openConfirmDialog('remove')" v-ripple clickable>
|
||||||
|
<QItemSection avatar>
|
||||||
|
<QIcon name="delete" />
|
||||||
|
</QItemSection>
|
||||||
|
<QItemSection>{{ t('deleteOrder') }}</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
en:
|
||||||
|
deleteOrder: Delete order
|
||||||
|
confirmDeletion: Confirm deletion
|
||||||
|
confirmDeletionMessage: Are you sure you want to delete this order?
|
||||||
|
|
||||||
|
es:
|
||||||
|
To clone zone: Clonar zone
|
||||||
|
deleteOrder: Eliminar pedido
|
||||||
|
confirmDeletion: Confirmar eliminación
|
||||||
|
confirmDeletionMessage: Seguro que quieres eliminar este pedido?
|
||||||
|
|
||||||
|
</i18n>
|
|
@ -0,0 +1,16 @@
|
||||||
|
<script setup>
|
||||||
|
import ZoneDescriptor from './ZoneDescriptor.vue';
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
id: {
|
||||||
|
type: Number,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<QPopupProxy>
|
||||||
|
<ZoneDescriptor v-if="$props.id" :id="$props.id" />
|
||||||
|
</QPopupProxy>
|
||||||
|
</template>
|
|
@ -0,0 +1,94 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref, onMounted, computed } from 'vue';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { dashIfEmpty } from 'src/filters';
|
||||||
|
import { getUrl } from 'src/composables/getUrl';
|
||||||
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
|
import VnLinkPhone from 'src/components/ui/VnLinkPhone.vue';
|
||||||
|
import CardSummary from 'components/ui/CardSummary.vue';
|
||||||
|
import VnUserLink from 'src/components/ui/VnUserLink.vue';
|
||||||
|
import VnTitle from 'src/components/common/VnTitle.vue';
|
||||||
|
|
||||||
|
const route = useRoute();
|
||||||
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
id: {
|
||||||
|
type: Number,
|
||||||
|
default: 0,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const entityId = computed(() => $props.id || route.params.id);
|
||||||
|
const zoneUrl = ref();
|
||||||
|
|
||||||
|
onMounted(async () => {
|
||||||
|
zoneUrl.value = (await getUrl('')) + `zone/${entityId.value}/`;
|
||||||
|
});
|
||||||
|
|
||||||
|
const filter = computed(() => {
|
||||||
|
return { where: { id: entityId.value } };
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<CardSummary
|
||||||
|
data-key="zoneData"
|
||||||
|
ref="summary"
|
||||||
|
:url="`Zones/summary`"
|
||||||
|
:filter="filter"
|
||||||
|
>
|
||||||
|
<template #header="{ entity }">
|
||||||
|
<div>{{ entity.id }} - {{ entity.firstName }} {{ entity.lastName }}</div>
|
||||||
|
</template>
|
||||||
|
<template #body="{ entity: zone }">
|
||||||
|
<QCard class="vn-one">
|
||||||
|
<VnTitle
|
||||||
|
:url="zoneUrl + `basic-data`"
|
||||||
|
:text="t('zone.summary.basicData')"
|
||||||
|
/>
|
||||||
|
<VnLv :label="t('zone.card.name')" :value="zone.user?.nickname" />
|
||||||
|
<VnLv
|
||||||
|
:label="t('zone.list.department')"
|
||||||
|
:value="zone.department?.department?.name"
|
||||||
|
/>
|
||||||
|
<VnLv :label="t('zone.list.email')" :value="zone.user.email" copy />
|
||||||
|
<VnLv :label="t('zone.summary.boss')" link>
|
||||||
|
<template #value>
|
||||||
|
<VnUserLink
|
||||||
|
v-if="zone.boss"
|
||||||
|
:name="dashIfEmpty(zone.boss?.name)"
|
||||||
|
:zone-id="zone.bossFk"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
|
<VnLv :value="zone.mobileExtension">
|
||||||
|
<template #label>
|
||||||
|
{{ t('zone.summary.phoneExtension') }}
|
||||||
|
<VnLinkPhone :phone-number="zone.mobileExtension" />
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
|
<VnLv :value="zone.phone">
|
||||||
|
<template #label>
|
||||||
|
{{ t('zone.summary.entPhone') }}
|
||||||
|
<VnLinkPhone :phone-number="zone.phone" />
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
|
<VnLv :label="t('zone.summary.locker')" :value="zone.locker" />
|
||||||
|
</QCard>
|
||||||
|
<QCard class="vn-one">
|
||||||
|
<VnTitle :text="t('zone.summary.userData')" />
|
||||||
|
<VnLv :label="t('zone.summary.userId')" :value="zone.user.id" />
|
||||||
|
<VnLv :label="t('zone.card.name')" :value="zone.user.nickname" />
|
||||||
|
<VnLv :label="t('zone.summary.role')" :value="zone.user.role.name" />
|
||||||
|
<VnLv :value="zone?.sip?.extension">
|
||||||
|
<template #label>
|
||||||
|
{{ t('zone.summary.sipExtension') }}
|
||||||
|
<VnLinkPhone :phone-number="zone?.sip?.extension" />
|
||||||
|
</template>
|
||||||
|
</VnLv>
|
||||||
|
</QCard>
|
||||||
|
</template>
|
||||||
|
</CardSummary>
|
||||||
|
</template>
|
|
@ -17,6 +17,7 @@ import roadmap from './roadmap';
|
||||||
import Parking from './parking';
|
import Parking from './parking';
|
||||||
import Agency from './agency';
|
import Agency from './agency';
|
||||||
import ItemType from './itemType';
|
import ItemType from './itemType';
|
||||||
|
import Zone from './zone';
|
||||||
|
|
||||||
export default [
|
export default [
|
||||||
Item,
|
Item,
|
||||||
|
@ -38,4 +39,5 @@ export default [
|
||||||
Parking,
|
Parking,
|
||||||
Agency,
|
Agency,
|
||||||
ItemType,
|
ItemType,
|
||||||
|
Zone,
|
||||||
];
|
];
|
||||||
|
|
|
@ -0,0 +1,160 @@
|
||||||
|
import { RouterView } from 'vue-router';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
path: '/zone',
|
||||||
|
name: 'Zone',
|
||||||
|
meta: {
|
||||||
|
title: 'zones',
|
||||||
|
icon: 'vn:zone',
|
||||||
|
moduleName: 'Zone',
|
||||||
|
},
|
||||||
|
component: RouterView,
|
||||||
|
redirect: { name: 'ZoneMain' },
|
||||||
|
menus: {
|
||||||
|
main: [
|
||||||
|
/*'ZoneList', 'ZoneDeliveryList', 'ZoneUpcomingList'*/
|
||||||
|
],
|
||||||
|
card: [
|
||||||
|
//
|
||||||
|
],
|
||||||
|
},
|
||||||
|
children: [
|
||||||
|
// {
|
||||||
|
// path: '/zone',
|
||||||
|
// name: 'ZoneMain',
|
||||||
|
// component: () => import('src/pages/Zone/ZoneMain.vue'),
|
||||||
|
// redirect: { name: 'ZoneList' },
|
||||||
|
// children: [
|
||||||
|
// {
|
||||||
|
// path: 'list',
|
||||||
|
// name: 'ZoneList',
|
||||||
|
// meta: {
|
||||||
|
// title: 'zonesList',
|
||||||
|
// icon: 'vn:zone',
|
||||||
|
// },
|
||||||
|
// component: () => import('src/pages/Zone/ZoneList.vue'),
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// path: 'create',
|
||||||
|
// name: 'ZoneCreate',
|
||||||
|
// meta: {
|
||||||
|
// title: 'zoneCreate',
|
||||||
|
// icon: 'create',
|
||||||
|
// },
|
||||||
|
// component: () => import('src/pages/Zone/ZoneCreate.vue'),
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// path: ':id/edit',
|
||||||
|
// name: 'ZoneEdit',
|
||||||
|
// meta: {
|
||||||
|
// title: 'zoneEdit',
|
||||||
|
// icon: 'edit',
|
||||||
|
// },
|
||||||
|
// component: () => import('src/pages/Zone/ZoneCreate.vue'),
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// path: 'counter',
|
||||||
|
// name: 'ZoneCounter',
|
||||||
|
// meta: {
|
||||||
|
// title: 'zoneCounter',
|
||||||
|
// icon: 'add_circle',
|
||||||
|
// },
|
||||||
|
// component: () => import('src/pages/Zone/ZoneCounter.vue'),
|
||||||
|
// },
|
||||||
|
// ],
|
||||||
|
// },
|
||||||
|
{
|
||||||
|
name: 'ZoneCard',
|
||||||
|
path: ':id',
|
||||||
|
component: () => import('src/pages/Zone/Card/ZoneCard.vue'),
|
||||||
|
redirect: { name: 'ZoneSummary' },
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
name: 'ZoneSummary',
|
||||||
|
path: 'summary',
|
||||||
|
meta: {
|
||||||
|
title: 'summary',
|
||||||
|
icon: 'launch',
|
||||||
|
},
|
||||||
|
component: () => import('src/pages/Zone/Card/ZoneSummary.vue'),
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// path: '/zone/delivery',
|
||||||
|
// name: 'ZoneDeliveryMain',
|
||||||
|
// component: () => import('src/pages/Zone/ZoneMain.vue'),
|
||||||
|
// redirect: { name: 'ZoneDeliveryList' },
|
||||||
|
// children: [
|
||||||
|
// {
|
||||||
|
// path: 'list',
|
||||||
|
// name: 'ZoneDeliveryList',
|
||||||
|
// meta: {
|
||||||
|
// title: 'deliveryList',
|
||||||
|
// icon: 'today',
|
||||||
|
// },
|
||||||
|
// component: () =>
|
||||||
|
// import('src/pages/Zone/Delivery/ZoneDeliveryList.vue'),
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// path: 'create',
|
||||||
|
// name: 'ZoneDeliveryCreate',
|
||||||
|
// meta: {
|
||||||
|
// title: 'deliveryCreate',
|
||||||
|
// icon: 'create',
|
||||||
|
// },
|
||||||
|
// component: () =>
|
||||||
|
// import('src/pages/Zone/Delivery/ZoneDeliveryCreate.vue'),
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// path: ':id/edit',
|
||||||
|
// name: 'ZoneDeliveryEdit',
|
||||||
|
// meta: {
|
||||||
|
// title: 'deliveryEdit',
|
||||||
|
// icon: 'edit',
|
||||||
|
// },
|
||||||
|
// component: () =>
|
||||||
|
// import('src/pages/Zone/Delivery/ZoneDeliveryCreate.vue'),
|
||||||
|
// },
|
||||||
|
// ],
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// path: '/zone/upcoming',
|
||||||
|
// name: 'ZoneUpcomingMain',
|
||||||
|
// component: () => import('src/pages/Zone/ZoneMain.vue'),
|
||||||
|
// redirect: { name: 'ZoneUpcomingList' },
|
||||||
|
// children: [
|
||||||
|
// {
|
||||||
|
// path: 'list',
|
||||||
|
// name: 'ZoneUpcomingList',
|
||||||
|
// meta: {
|
||||||
|
// title: 'upcomingList',
|
||||||
|
// icon: 'today',
|
||||||
|
// },
|
||||||
|
// component: () =>
|
||||||
|
// import('src/pages/Zone/Upcoming/ZoneUpcomingList.vue'),
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// path: 'create',
|
||||||
|
// name: 'ZoneUpcomingCreate',
|
||||||
|
// meta: {
|
||||||
|
// title: 'upcomingCreate',
|
||||||
|
// icon: 'create',
|
||||||
|
// },
|
||||||
|
// component: () =>
|
||||||
|
// import('src/pages/Zone/Upcoming/ZoneUpcomingCreate.vue'),
|
||||||
|
// },
|
||||||
|
// {
|
||||||
|
// path: ':id/edit',
|
||||||
|
// name: 'ZoneUpcomingEdit',
|
||||||
|
// meta: {
|
||||||
|
// title: 'upcomingEdit',
|
||||||
|
// icon: 'edit',
|
||||||
|
// },
|
||||||
|
// component: () =>
|
||||||
|
// import('src/pages/Zone/Upcoming/ZoneUpcomingCreate.vue'),
|
||||||
|
// },
|
||||||
|
// ],
|
||||||
|
// },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
|
@ -17,6 +17,7 @@ import entry from 'src/router/modules/entry';
|
||||||
import roadmap from 'src/router/modules/roadmap';
|
import roadmap from 'src/router/modules/roadmap';
|
||||||
import parking from 'src/router/modules/parking';
|
import parking from 'src/router/modules/parking';
|
||||||
import agency from 'src/router/modules/agency';
|
import agency from 'src/router/modules/agency';
|
||||||
|
import zone from 'src/router/modules/zone';
|
||||||
|
|
||||||
const routes = [
|
const routes = [
|
||||||
{
|
{
|
||||||
|
@ -75,6 +76,7 @@ const routes = [
|
||||||
parking,
|
parking,
|
||||||
agency,
|
agency,
|
||||||
ItemType,
|
ItemType,
|
||||||
|
zone,
|
||||||
{
|
{
|
||||||
path: '/:catchAll(.*)*',
|
path: '/:catchAll(.*)*',
|
||||||
name: 'NotFound',
|
name: 'NotFound',
|
||||||
|
|
|
@ -21,6 +21,7 @@ export const useNavigationStore = defineStore('navigationStore', () => {
|
||||||
'ticket',
|
'ticket',
|
||||||
'worker',
|
'worker',
|
||||||
'wagon',
|
'wagon',
|
||||||
|
'zone',
|
||||||
];
|
];
|
||||||
const pinnedModules = ref([]);
|
const pinnedModules = ref([]);
|
||||||
const role = useRole();
|
const role = useRole();
|
||||||
|
|
Loading…
Reference in New Issue