resolve conflicts
This commit is contained in:
commit
7466d03f15
|
@ -830,6 +830,7 @@ worker:
|
||||||
calendar: Calendar
|
calendar: Calendar
|
||||||
timeControl: Time control
|
timeControl: Time control
|
||||||
locker: Locker
|
locker: Locker
|
||||||
|
|
||||||
list:
|
list:
|
||||||
name: Name
|
name: Name
|
||||||
email: Email
|
email: Email
|
||||||
|
@ -861,6 +862,15 @@ worker:
|
||||||
role: Role
|
role: Role
|
||||||
sipExtension: Extension
|
sipExtension: Extension
|
||||||
locker: Locker
|
locker: Locker
|
||||||
|
fiDueDate: Fecha de caducidad del DNI
|
||||||
|
sex: Sexo
|
||||||
|
seniority: Antigüedad
|
||||||
|
fi: DNI/NIE/NIF
|
||||||
|
birth: Cumpleaños
|
||||||
|
isFreelance: Autónomo
|
||||||
|
isSsDiscounted: Bonificación SS
|
||||||
|
hasMachineryAuthorized: Autorizado para llevar maquinaria
|
||||||
|
isDisable: Trabajador desactivado
|
||||||
notificationsManager:
|
notificationsManager:
|
||||||
activeNotifications: Active notifications
|
activeNotifications: Active notifications
|
||||||
availableNotifications: Available notifications
|
availableNotifications: Available notifications
|
||||||
|
|
|
@ -3,7 +3,7 @@ import { computed, ref } from 'vue';
|
||||||
import { useRoute, useRouter } from 'vue-router';
|
import { useRoute, useRouter } from 'vue-router';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useQuasar } from 'quasar';
|
import { useQuasar } from 'quasar';
|
||||||
|
import { useVnConfirm } from 'composables/useVnConfirm';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
import CardDescriptor from 'src/components/ui/CardDescriptor.vue';
|
import CardDescriptor from 'src/components/ui/CardDescriptor.vue';
|
||||||
import useCardDescription from 'src/composables/useCardDescription';
|
import useCardDescription from 'src/composables/useCardDescription';
|
||||||
|
@ -43,30 +43,17 @@ const setData = (entity) => {
|
||||||
data.value = useCardDescription(entity.name, entity.id);
|
data.value = useCardDescription(entity.name, entity.id);
|
||||||
};
|
};
|
||||||
|
|
||||||
const removeDepartment = () => {
|
const removeDepartment = async () => {
|
||||||
quasar
|
|
||||||
.dialog({
|
|
||||||
title: 'Are you sure you want to delete it?',
|
|
||||||
message: 'Delete department',
|
|
||||||
ok: {
|
|
||||||
push: true,
|
|
||||||
color: 'primary',
|
|
||||||
},
|
|
||||||
cancel: true,
|
|
||||||
})
|
|
||||||
.onOk(async () => {
|
|
||||||
try {
|
try {
|
||||||
await axios.post(
|
await axios.post(`/Departments/${entityId.value}/removeChild`, entityId.value);
|
||||||
`/Departments/${entityId.value}/removeChild`,
|
|
||||||
entityId.value
|
|
||||||
);
|
|
||||||
router.push({ name: 'WorkerDepartment' });
|
router.push({ name: 'WorkerDepartment' });
|
||||||
notify('department.departmentRemoved', 'positive');
|
notify('department.departmentRemoved', 'positive');
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error('Error removing department');
|
console.error('Error removing department');
|
||||||
}
|
}
|
||||||
});
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const { openConfirmationModal } = useVnConfirm();
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<CardDescriptor
|
<CardDescriptor
|
||||||
|
@ -84,7 +71,17 @@ const removeDepartment = () => {
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
<template #menu="{}">
|
<template #menu="{}">
|
||||||
<QItem v-ripple clickable @click="removeDepartment()">
|
<QItem
|
||||||
|
v-ripple
|
||||||
|
clickable
|
||||||
|
@click="
|
||||||
|
openConfirmationModal(
|
||||||
|
t('Are you sure you want to delete it?'),
|
||||||
|
t('Delete department'),
|
||||||
|
removeDepartment
|
||||||
|
)
|
||||||
|
"
|
||||||
|
>
|
||||||
<QItemSection>{{ t('Delete') }}</QItemSection>
|
<QItemSection>{{ t('Delete') }}</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -13,6 +13,7 @@ import VnLinkPhone from 'src/components/ui/VnLinkPhone.vue';
|
||||||
import { getUrl } from 'src/composables/getUrl';
|
import { getUrl } from 'src/composables/getUrl';
|
||||||
import VnUserLink from 'src/components/ui/VnUserLink.vue';
|
import VnUserLink from 'src/components/ui/VnUserLink.vue';
|
||||||
import VnTitle from 'src/components/common/VnTitle.vue';
|
import VnTitle from 'src/components/common/VnTitle.vue';
|
||||||
|
import ItemDescriptorProxy from 'src/pages/Item/Card/ItemDescriptorProxy.vue';
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
|
@ -262,9 +263,12 @@ async function changeState(value) {
|
||||||
:url="ticketUrl + 'sale'"
|
:url="ticketUrl + 'sale'"
|
||||||
:text="t('ticket.summary.saleLines')"
|
:text="t('ticket.summary.saleLines')"
|
||||||
/>
|
/>
|
||||||
<QTable :rows="ticket.sales">
|
<QTable :rows="ticket.sales" style="text-align: center">
|
||||||
|
<template #body-cell="{ value }">
|
||||||
|
<QTd>{{ value }}</QTd>
|
||||||
|
</template>
|
||||||
<template #header="props">
|
<template #header="props">
|
||||||
<QTr :props="props">
|
<QTr class="tr-header" :props="props">
|
||||||
<QTh auto-width></QTh>
|
<QTh auto-width></QTh>
|
||||||
<QTh auto-width>{{ t('ticket.summary.item') }}</QTh>
|
<QTh auto-width>{{ t('ticket.summary.item') }}</QTh>
|
||||||
<QTh auto-width>{{ t('ticket.summary.visible') }}</QTh>
|
<QTh auto-width>{{ t('ticket.summary.visible') }}</QTh>
|
||||||
|
@ -360,23 +364,29 @@ async function changeState(value) {
|
||||||
</QTooltip>
|
</QTooltip>
|
||||||
</QIcon>
|
</QIcon>
|
||||||
</QTd>
|
</QTd>
|
||||||
<QTd class="link">{{ props.row.itemFk }}</QTd>
|
<QTd>
|
||||||
|
<QBtn class="link" flat>
|
||||||
|
{{ props.row.itemFk }}
|
||||||
|
<ItemDescriptorProxy :id="props.row.itemFk" />
|
||||||
|
</QBtn>
|
||||||
|
</QTd>
|
||||||
<QTd>{{ props.row.visible }}</QTd>
|
<QTd>{{ props.row.visible }}</QTd>
|
||||||
<QTd>{{ props.row.available }}</QTd>
|
<QTd>{{ props.row.available }}</QTd>
|
||||||
<QTd>{{ props.row.quantity }}</QTd>
|
<QTd>{{ props.row.quantity }}</QTd>
|
||||||
<QTd>
|
<QTd class="description-cell">
|
||||||
<div class="fetched-tags">
|
<div class="row full-width justify-between">
|
||||||
<span>{{ props.row.item.name }}</span>
|
{{ props.row.item.name }}
|
||||||
<span v-if="props.row.item.subName" class="subName">{{
|
<div v-if="props.row.item.subName" class="subName">
|
||||||
props.row.item.subName
|
{{ props.row.item.subName.toUpperCase() }}
|
||||||
}}</span>
|
|
||||||
</div>
|
</div>
|
||||||
<fetched-tags
|
</div>
|
||||||
|
<FetchedTags
|
||||||
|
class="fetched-tags"
|
||||||
:item="props.row.item"
|
:item="props.row.item"
|
||||||
:max-length="5"
|
:max-length="5"
|
||||||
></fetched-tags>
|
></FetchedTags>
|
||||||
</QTd>
|
</QTd>
|
||||||
<QTd>{{ props.row.price }}</QTd>
|
<QTd>{{ props.row.price }} €</QTd>
|
||||||
<QTd>{{ props.row.discount }} %</QTd>
|
<QTd>{{ props.row.discount }} %</QTd>
|
||||||
<QTd
|
<QTd
|
||||||
>{{
|
>{{
|
||||||
|
@ -453,4 +463,28 @@ async function changeState(value) {
|
||||||
padding: 1%;
|
padding: 1%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.q-table {
|
||||||
|
tr,
|
||||||
|
th,
|
||||||
|
.q-td {
|
||||||
|
border-bottom: 1px solid black;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.subName {
|
||||||
|
margin-left: 10%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.tr-header,
|
||||||
|
.subName {
|
||||||
|
color: var(--vn-label-color);
|
||||||
|
}
|
||||||
|
|
||||||
|
.description-cell {
|
||||||
|
width: 25%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.fetched-tags {
|
||||||
|
max-width: 70%;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import VnInputDate from 'src/components/common/VnInputDate.vue';
|
||||||
import FetchData from 'components/FetchData.vue';
|
import FetchData from 'components/FetchData.vue';
|
||||||
import FormModel from 'src/components/FormModel.vue';
|
import FormModel from 'src/components/FormModel.vue';
|
||||||
import VnRow from 'components/ui/VnRow.vue';
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
|
@ -74,12 +74,11 @@ const maritalStatus = [
|
||||||
model="Worker"
|
model="Worker"
|
||||||
>
|
>
|
||||||
<template #form="{ data }">
|
<template #form="{ data }">
|
||||||
<VnRow class="row q-gutter-md q-mb-md">
|
<VnRow>
|
||||||
<VnInput :label="t('Name')" clearable v-model="data.firstName" />
|
<VnInput :label="t('Name')" clearable v-model="data.firstName" />
|
||||||
<VnInput :label="t('Last name')" clearable v-model="data.lastName" />
|
<VnInput :label="t('Last name')" clearable v-model="data.lastName" />
|
||||||
</VnRow>
|
</VnRow>
|
||||||
|
<VnRow>
|
||||||
<VnRow class="row q-gutter-md q-mb-md">
|
|
||||||
<VnInput v-model="data.phone" :label="t('Business phone')" clearable />
|
<VnInput v-model="data.phone" :label="t('Business phone')" clearable />
|
||||||
<VnInput
|
<VnInput
|
||||||
v-model="data.mobileExtension"
|
v-model="data.mobileExtension"
|
||||||
|
@ -88,7 +87,7 @@ const maritalStatus = [
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
|
|
||||||
<VnRow class="row q-gutter-md q-mb-md">
|
<VnRow>
|
||||||
<VnSelect
|
<VnSelect
|
||||||
:label="t('Boss')"
|
:label="t('Boss')"
|
||||||
:options="workersOptions"
|
:options="workersOptions"
|
||||||
|
@ -119,7 +118,7 @@ const maritalStatus = [
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
|
|
||||||
<VnRow class="row q-gutter-md q-mb-md">
|
<VnRow>
|
||||||
<VnSelect
|
<VnSelect
|
||||||
:label="t('Origin country')"
|
:label="t('Origin country')"
|
||||||
:options="countriesOptions"
|
:options="countriesOptions"
|
||||||
|
@ -138,7 +137,7 @@ const maritalStatus = [
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
|
|
||||||
<VnRow class="row q-gutter-md q-mb-md">
|
<VnRow>
|
||||||
<VnInput v-model="data.SSN" :label="t('SSN')" clearable />
|
<VnInput v-model="data.SSN" :label="t('SSN')" clearable />
|
||||||
<VnInput
|
<VnInput
|
||||||
v-model="data.locker"
|
v-model="data.locker"
|
||||||
|
@ -147,6 +146,36 @@ const maritalStatus = [
|
||||||
clearable
|
clearable
|
||||||
/>
|
/>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
|
<VnRow>
|
||||||
|
<VnInputDate :label="t('fiDueDate')" v-model="data.fiDueDate" />
|
||||||
|
|
||||||
|
<VnInput v-model="data.sex" :label="t('sex')" clearable />
|
||||||
|
</VnRow>
|
||||||
|
<VnRow>
|
||||||
|
<VnInputDate :label="t('seniority')" v-model="data.seniority" />
|
||||||
|
<VnInput v-model="data.fi" :label="t('fi')" />
|
||||||
|
</VnRow>
|
||||||
|
<VnRow>
|
||||||
|
<VnInputDate :label="t('birth')" v-model="data.birth" />
|
||||||
|
</VnRow>
|
||||||
|
<VnRow>
|
||||||
|
<QCheckbox
|
||||||
|
size="sm"
|
||||||
|
:label="t('isFreelance')"
|
||||||
|
v-model="data.isFreelance"
|
||||||
|
/>
|
||||||
|
<QCheckbox
|
||||||
|
size="sm"
|
||||||
|
v-model="data.isSsDiscounted"
|
||||||
|
:label="t(`isSsDiscounted`)"
|
||||||
|
/>
|
||||||
|
<QCheckbox
|
||||||
|
size="sm"
|
||||||
|
v-model="data.hasMachineryAuthorized"
|
||||||
|
:label="t(`hasMachineryAuthorized`)"
|
||||||
|
/>
|
||||||
|
<QCheckbox size="sm" v-model="data.isDisable" :label="t(`isDisable`)" />
|
||||||
|
</VnRow>
|
||||||
</template>
|
</template>
|
||||||
</FormModel>
|
</FormModel>
|
||||||
</template>
|
</template>
|
||||||
|
@ -165,4 +194,13 @@ es:
|
||||||
Education level: Nivel educación
|
Education level: Nivel educación
|
||||||
SSN: NSS
|
SSN: NSS
|
||||||
Locker: Taquilla
|
Locker: Taquilla
|
||||||
|
fiDueDate: Fecha de caducidad del DNI
|
||||||
|
seniority: Antigüedad
|
||||||
|
hasMachineryAuthorized: Autorizado para llevar maquinaria
|
||||||
|
isFreelance: Autónomo
|
||||||
|
isDisable: Trabajador desactivado
|
||||||
|
fi: DNI/NIE/NIF
|
||||||
|
sex: Sexo
|
||||||
|
birth: Cumpleaños
|
||||||
|
isSsDiscounted: Bonificación SS
|
||||||
</i18n>
|
</i18n>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
import { ref, onMounted, computed } from 'vue';
|
import { ref, onMounted, computed } from 'vue';
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { dashIfEmpty } from 'src/filters';
|
import { dashIfEmpty, toDate } from 'src/filters';
|
||||||
import { getUrl } from 'src/composables/getUrl';
|
import { getUrl } from 'src/composables/getUrl';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
import VnLinkPhone from 'src/components/ui/VnLinkPhone.vue';
|
import VnLinkPhone from 'src/components/ui/VnLinkPhone.vue';
|
||||||
|
@ -111,6 +111,47 @@ const filter = {
|
||||||
</VnLv>
|
</VnLv>
|
||||||
<VnLv :label="t('worker.summary.locker')" :value="worker.locker" />
|
<VnLv :label="t('worker.summary.locker')" :value="worker.locker" />
|
||||||
</QCard>
|
</QCard>
|
||||||
|
<QCard class="vn-one">
|
||||||
|
<VnTitle
|
||||||
|
:url="workerUrl + `basic-data`"
|
||||||
|
:text="t('worker.summary.basicData')"
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('worker.summary.fiDueDate')"
|
||||||
|
:value="toDate(worker.fiDueDate)"
|
||||||
|
/>
|
||||||
|
<VnLv :label="t('worker.summary.sex')" :value="worker.sex" />
|
||||||
|
<VnLv
|
||||||
|
:label="t('worker.summary.seniority')"
|
||||||
|
:value="toDate(worker.seniority)"
|
||||||
|
/>
|
||||||
|
<VnLv :label="t('worker.summary.fi')" :value="worker.fi" />
|
||||||
|
<VnLv :label="t('worker.summary.birth')" :value="toDate(worker.birth)" />
|
||||||
|
<QCheckbox
|
||||||
|
class="padding-none"
|
||||||
|
:label="t('worker.summary.isFreelance')"
|
||||||
|
v-model="worker.isFreelance"
|
||||||
|
:disable="true"
|
||||||
|
/>
|
||||||
|
<QCheckbox
|
||||||
|
class="padding-none"
|
||||||
|
:label="t('worker.summary.isSsDiscounted')"
|
||||||
|
v-model="worker.isSsDiscounted"
|
||||||
|
:disable="true"
|
||||||
|
/>
|
||||||
|
<QCheckbox
|
||||||
|
class="padding-none"
|
||||||
|
:label="t('worker.summary.hasMachineryAuthorized')"
|
||||||
|
v-model="worker.hasMachineryAuthorized"
|
||||||
|
:disable="true"
|
||||||
|
/>
|
||||||
|
<QCheckbox
|
||||||
|
class="padding-none"
|
||||||
|
:label="t('worker.summary.isDisable')"
|
||||||
|
v-model="worker.isDisable"
|
||||||
|
:disable="true"
|
||||||
|
/>
|
||||||
|
</QCard>
|
||||||
<QCard class="vn-one">
|
<QCard class="vn-one">
|
||||||
<VnTitle :text="t('worker.summary.userData')" />
|
<VnTitle :text="t('worker.summary.userData')" />
|
||||||
<VnLv :label="t('worker.summary.userId')" :value="worker.user.id" />
|
<VnLv :label="t('worker.summary.userId')" :value="worker.user.id" />
|
||||||
|
|
|
@ -1,8 +1,35 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
import { computed } from 'vue';
|
||||||
|
|
||||||
import VnCard from 'components/common/VnCard.vue';
|
import VnCard from 'components/common/VnCard.vue';
|
||||||
import ZoneDescriptor from './ZoneDescriptor.vue';
|
import ZoneDescriptor from './ZoneDescriptor.vue';
|
||||||
|
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
||||||
|
|
||||||
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const stateStore = useStateStore();
|
||||||
|
const route = useRoute();
|
||||||
|
|
||||||
|
const routeName = computed(() => route.name);
|
||||||
|
const searchBarDataKeys = {
|
||||||
|
ZoneWarehouses: 'ZoneWarehouses',
|
||||||
|
ZoneSummary: 'ZoneSummary',
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
|
<template v-if="stateStore.isHeaderMounted()">
|
||||||
|
<Teleport to="#searchbar">
|
||||||
|
<VnSearchbar
|
||||||
|
:data-key="searchBarDataKeys[routeName]"
|
||||||
|
:custom-route-redirect-name="routeName"
|
||||||
|
:label="t('list.searchZone')"
|
||||||
|
:info="t('list.searchInfo')"
|
||||||
|
/>
|
||||||
|
</Teleport>
|
||||||
|
</template>
|
||||||
<VnCard
|
<VnCard
|
||||||
data-key="Zone"
|
data-key="Zone"
|
||||||
base-url="Zones"
|
base-url="Zones"
|
||||||
|
|
|
@ -0,0 +1,47 @@
|
||||||
|
<script setup>
|
||||||
|
import { reactive, ref } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
|
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||||
|
import FetchData from 'components/FetchData.vue';
|
||||||
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
|
import FormPopup from 'components/FormPopup.vue';
|
||||||
|
|
||||||
|
const emit = defineEmits(['onSubmitCreateWarehouse']);
|
||||||
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
const ZoneWarehouseFormData = reactive({
|
||||||
|
warehouseFk: null,
|
||||||
|
});
|
||||||
|
|
||||||
|
const warehousesOptions = ref([]);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<FetchData
|
||||||
|
url="Warehouses"
|
||||||
|
:filter="{ order: 'name' }"
|
||||||
|
auto-load
|
||||||
|
@on-fetch="(data) => (warehousesOptions = data)"
|
||||||
|
/>
|
||||||
|
<FormPopup
|
||||||
|
model="ZoneWarehouse"
|
||||||
|
@on-submit="emit('onSubmitCreateWarehouse', ZoneWarehouseFormData)"
|
||||||
|
>
|
||||||
|
<template #form-inputs>
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<VnSelect
|
||||||
|
:label="t('warehouses.warehouse')"
|
||||||
|
v-model="ZoneWarehouseFormData.warehouseFk"
|
||||||
|
:options="warehousesOptions"
|
||||||
|
option-value="id"
|
||||||
|
option-label="name"
|
||||||
|
hide-selected
|
||||||
|
:required="true"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</VnRow>
|
||||||
|
</template>
|
||||||
|
</FormPopup>
|
||||||
|
</template>
|
|
@ -74,20 +74,20 @@ function openConfirmDialog(callback) {
|
||||||
<QItemSection avatar>
|
<QItemSection avatar>
|
||||||
<QIcon name="delete" />
|
<QIcon name="delete" />
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
<QItemSection>{{ t('deleteOrder') }}</QItemSection>
|
<QItemSection>{{ t('deleteZone') }}</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<i18n>
|
<i18n>
|
||||||
en:
|
en:
|
||||||
deleteOrder: Delete order
|
deleteZone: Delete zone
|
||||||
confirmDeletion: Confirm deletion
|
confirmDeletion: Confirm deletion
|
||||||
confirmDeletionMessage: Are you sure you want to delete this order?
|
confirmDeletionMessage: Are you sure you want to delete this zone?
|
||||||
|
|
||||||
es:
|
es:
|
||||||
To clone zone: Clonar zone
|
To clone zone: Clonar zone
|
||||||
deleteOrder: Eliminar pedido
|
deleteZone: Eliminar zona
|
||||||
confirmDeletion: Confirmar eliminación
|
confirmDeletion: Confirmar eliminación
|
||||||
confirmDeletionMessage: Seguro que quieres eliminar este pedido?
|
confirmDeletionMessage: Seguro que quieres eliminar este zona?
|
||||||
|
|
||||||
</i18n>
|
</i18n>
|
||||||
|
|
|
@ -1,53 +1,119 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
|
import { computed, ref, watch } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
import VnPaginate from 'components/ui/VnPaginate.vue';
|
import VnPaginate from 'components/ui/VnPaginate.vue';
|
||||||
import CardList from 'components/CardList.vue';
|
import ZoneCreateWarehouse from './ZoneCreateWarehouse.vue';
|
||||||
import VnLv from 'components/ui/VnLv.vue';
|
|
||||||
|
|
||||||
|
import { useVnConfirm } from 'composables/useVnConfirm';
|
||||||
|
import { useArrayData } from 'composables/useArrayData';
|
||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
const { openConfirmationModal } = useVnConfirm();
|
||||||
|
|
||||||
const deleteWarehouse = () => {
|
const paginateRef = ref(null);
|
||||||
return true;
|
const createWarehouseDialogRef = ref(null);
|
||||||
|
|
||||||
|
const arrayData = useArrayData('ZoneWarehouses');
|
||||||
|
const store = arrayData.store;
|
||||||
|
|
||||||
|
const data = computed(() => store.data);
|
||||||
|
|
||||||
|
const urlPath = computed(() => `Zones/${route.params.id}/warehouses`);
|
||||||
|
|
||||||
|
const columns = computed(() => [
|
||||||
|
{
|
||||||
|
name: 'name',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'action',
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
const deleteWarehouse = async (row) => {
|
||||||
|
try {
|
||||||
|
await axios.delete(`${urlPath.value}/${row.id}`);
|
||||||
|
fetchWarehouses();
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const createZoneWarehouse = async (ZoneWarehouseFormData) => {
|
||||||
|
try {
|
||||||
|
await axios.post(urlPath.value, ZoneWarehouseFormData);
|
||||||
|
fetchWarehouses();
|
||||||
|
} catch (error) {
|
||||||
|
console.error(error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => route.params.id,
|
||||||
|
() => {
|
||||||
|
store.url = urlPath.value;
|
||||||
|
store.filter.include = 'warehouse';
|
||||||
|
fetchWarehouses();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
const fetchWarehouses = () => paginateRef.value.fetch();
|
||||||
|
|
||||||
|
const openCreateWarehouseForm = () => createWarehouseDialogRef.value.show();
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<QPage class="column items-center q-pa-md">
|
<QPage class="column items-center q-pa-md">
|
||||||
<div class="vn-card-list">
|
<div class="full-width" style="max-width: 400px">
|
||||||
<VnPaginate
|
<VnPaginate
|
||||||
|
ref="paginateRef"
|
||||||
data-key="ZoneWarehouses"
|
data-key="ZoneWarehouses"
|
||||||
:url="`Zones/${route.params.id}/warehouses`"
|
:filter="{ include: 'warehouse' }"
|
||||||
|
:url="urlPath"
|
||||||
auto-load
|
auto-load
|
||||||
>
|
>
|
||||||
<template #body="{ rows }">
|
<template #body="{ rows }">
|
||||||
<CardList
|
<QTable :rows="data" :columns="columns" hide-header>
|
||||||
v-for="row of rows"
|
<template #body="{ row, rowIndex }">
|
||||||
:key="row.id"
|
<QTr>
|
||||||
:title="row.name"
|
<QTd>
|
||||||
:id="row.id"
|
<span>{{ row.warehouse?.name }}</span>
|
||||||
>
|
</QTd>
|
||||||
<template #list-items>
|
<QTd style="width: 50px !important">
|
||||||
<VnLv :value="row.name" />
|
|
||||||
<QIcon
|
<QIcon
|
||||||
name="delete"
|
name="delete"
|
||||||
size="sm"
|
size="sm"
|
||||||
class="cursor-pointer"
|
class="cursor-pointer"
|
||||||
color="primary"
|
color="primary"
|
||||||
@click="deleteWarehouse()"
|
@click="
|
||||||
|
openConfirmationModal(
|
||||||
|
t('warehouses.deleteTitle'),
|
||||||
|
t('warehouses.deleteSubtitle'),
|
||||||
|
() => deleteWarehouse(row, rows, rowIndex)
|
||||||
|
)
|
||||||
|
"
|
||||||
>
|
>
|
||||||
<QTooltip>
|
<QTooltip>
|
||||||
{{ t('Remove row') }}
|
{{ t('warehouses.delete') }}
|
||||||
</QTooltip>
|
</QTooltip>
|
||||||
</QIcon>
|
</QIcon>
|
||||||
|
</QTd>
|
||||||
|
</QTr>
|
||||||
</template>
|
</template>
|
||||||
</CardList>
|
</QTable>
|
||||||
</template>
|
</template>
|
||||||
</VnPaginate>
|
</VnPaginate>
|
||||||
</div>
|
</div>
|
||||||
|
<QDialog ref="createWarehouseDialogRef">
|
||||||
|
<ZoneCreateWarehouse @on-submit-create-warehouse="createZoneWarehouse" />
|
||||||
|
</QDialog>
|
||||||
|
<QPageSticky position="bottom-right" :offset="[18, 18]">
|
||||||
|
<QBtn fab icon="add" color="primary" @click="openCreateWarehouseForm()">
|
||||||
|
<QTooltip>{{ t('warehouses.add') }}</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
</QPageSticky>
|
||||||
</QPage>
|
</QPage>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<i18n>
|
|
||||||
es:
|
|
||||||
Remove row: Eliminar fila
|
|
||||||
</i18n>
|
|
||||||
|
|
|
@ -3,9 +3,10 @@ zone:
|
||||||
zones: Zone
|
zones: Zone
|
||||||
zonesList: Zones
|
zonesList: Zones
|
||||||
zoneCreate: Create zone
|
zoneCreate: Create zone
|
||||||
|
locations: Locations
|
||||||
deliveryDays: Delivery days
|
deliveryDays: Delivery days
|
||||||
upcomingList: Upcoming deliveries
|
upcomingList: Upcoming deliveries
|
||||||
locations: Locations
|
warehouses: Warehouses
|
||||||
list:
|
list:
|
||||||
clone: Clone
|
clone: Clone
|
||||||
id: Id
|
id: Id
|
||||||
|
@ -59,3 +60,9 @@ zoneClosingTable:
|
||||||
price: Price
|
price: Price
|
||||||
preview: Preview
|
preview: Preview
|
||||||
zones: Zones
|
zones: Zones
|
||||||
|
warehouses:
|
||||||
|
delete: Delete
|
||||||
|
deleteTitle: This item will be deleted
|
||||||
|
deleteSubtitle: Are you sure you want to continue?
|
||||||
|
warehouse: Warehouse
|
||||||
|
add: Add
|
||||||
|
|
|
@ -3,9 +3,10 @@ zone:
|
||||||
zones: Zonas
|
zones: Zonas
|
||||||
zonesList: Zonas
|
zonesList: Zonas
|
||||||
zoneCreate: Nueva zona
|
zoneCreate: Nueva zona
|
||||||
|
locations: Localizaciones
|
||||||
deliveryDays: Días de entrega
|
deliveryDays: Días de entrega
|
||||||
upcomingList: Próximos repartos
|
upcomingList: Próximos repartos
|
||||||
locations: Localizaciones
|
warehouses: Almacenes
|
||||||
list:
|
list:
|
||||||
clone: Clonar
|
clone: Clonar
|
||||||
id: Id
|
id: Id
|
||||||
|
@ -61,3 +62,9 @@ zoneClosingTable:
|
||||||
zones: Zonas
|
zones: Zonas
|
||||||
Search zones: Buscar zonas
|
Search zones: Buscar zonas
|
||||||
You can search by zone reference: Puedes buscar por referencia de la zona
|
You can search by zone reference: Puedes buscar por referencia de la zona
|
||||||
|
warehouses:
|
||||||
|
delete: Eliminar
|
||||||
|
deleteTitle: Este elemento será eliminado
|
||||||
|
deleteSubtitle: ¿Seguro que quieres continuar?
|
||||||
|
warehouse: Almacén
|
||||||
|
add: Añadir
|
||||||
|
|
|
@ -12,7 +12,7 @@ export default {
|
||||||
redirect: { name: 'ZoneMain' },
|
redirect: { name: 'ZoneMain' },
|
||||||
menus: {
|
menus: {
|
||||||
main: ['ZoneList', 'ZoneDeliveryDays', 'ZoneUpcomingList'],
|
main: ['ZoneList', 'ZoneDeliveryDays', 'ZoneUpcomingList'],
|
||||||
card: ['ZoneBasicData', 'ZoneHistory', 'ZoneLocations'],
|
card: ['ZoneBasicData', 'ZoneWarehouses', 'ZoneHistory', 'ZoneLocations'],
|
||||||
},
|
},
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
|
@ -57,15 +57,6 @@ export default {
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Zone/ZoneCreate.vue'),
|
component: () => import('src/pages/Zone/ZoneCreate.vue'),
|
||||||
},
|
},
|
||||||
// {
|
|
||||||
// path: 'counter',
|
|
||||||
// name: 'ZoneCounter',
|
|
||||||
// meta: {
|
|
||||||
// title: 'zoneCounter',
|
|
||||||
// icon: 'add_circle',
|
|
||||||
// },
|
|
||||||
// component: () => import('src/pages/Zone/ZoneCounter.vue'),
|
|
||||||
// },
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -83,6 +74,15 @@ export default {
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Zone/Card/ZoneSummary.vue'),
|
component: () => import('src/pages/Zone/Card/ZoneSummary.vue'),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'ZoneBasicData',
|
||||||
|
path: 'basic-data',
|
||||||
|
meta: {
|
||||||
|
title: 'basicData',
|
||||||
|
icon: 'vn:settings',
|
||||||
|
},
|
||||||
|
component: () => import('src/pages/Zone/Card/ZoneBasicData.vue'),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'ZoneLocations',
|
name: 'ZoneLocations',
|
||||||
path: 'location',
|
path: 'location',
|
||||||
|
@ -93,13 +93,13 @@ export default {
|
||||||
component: () => import('src/pages/Zone/Card/ZoneLocations.vue'),
|
component: () => import('src/pages/Zone/Card/ZoneLocations.vue'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'ZoneBasicData',
|
name: 'ZoneWarehouses',
|
||||||
path: 'basic-data',
|
path: 'warehouses',
|
||||||
meta: {
|
meta: {
|
||||||
title: 'basicData',
|
title: 'warehouses',
|
||||||
icon: 'vn:settings',
|
icon: 'home',
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Zone/Card/ZoneBasicData.vue'),
|
component: () => import('src/pages/Zone/Card/ZoneWarehouses.vue'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'ZoneHistory',
|
name: 'ZoneHistory',
|
||||||
|
@ -110,83 +110,6 @@ export default {
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Zone/Card/ZoneLog.vue'),
|
component: () => import('src/pages/Zone/Card/ZoneLog.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'),
|
|
||||||
// },
|
|
||||||
// ],
|
|
||||||
// },
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
Loading…
Reference in New Issue