forked from verdnatura/salix-front
Merge branch 'dev' into feature/order-catalog-filter
# Conflicts: # src/components/ui/VnFilterPanel.vue # src/pages/Order/Card/OrderCatalogFilter.vue # src/pages/Order/OrderCatalog.vue
This commit is contained in:
commit
8a6e78a143
|
@ -4,8 +4,8 @@ import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
import VnSelectFilter from 'src/components/common/VnSelectFilter.vue';
|
import VnSelectFilter from 'src/components/common/VnSelectFilter.vue';
|
||||||
import FetchData from 'components/FetchData.vue';
|
import FetchData from 'components/FetchData.vue';
|
||||||
import FormModel from 'components/FormModel.vue';
|
|
||||||
import VnRow from 'components/ui/VnRow.vue';
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
|
import FormModelPopup from './FormModelPopup.vue';
|
||||||
|
|
||||||
const emit = defineEmits(['onDataSaved']);
|
const emit = defineEmits(['onDataSaved']);
|
||||||
|
|
||||||
|
@ -22,45 +22,29 @@ const countriesFilter = {
|
||||||
fields: ['id', 'country', 'code'],
|
fields: ['id', 'country', 'code'],
|
||||||
};
|
};
|
||||||
|
|
||||||
const closeButton = ref(null);
|
|
||||||
const countriesOptions = ref([]);
|
const countriesOptions = ref([]);
|
||||||
const loading = ref(false);
|
|
||||||
|
|
||||||
const setCountriesOptions = (data) => {
|
|
||||||
countriesOptions.value = data;
|
|
||||||
};
|
|
||||||
|
|
||||||
const onDataSaved = (data) => {
|
const onDataSaved = (data) => {
|
||||||
emit('onDataSaved', data);
|
emit('onDataSaved', data);
|
||||||
closeForm();
|
|
||||||
};
|
|
||||||
|
|
||||||
const closeForm = () => {
|
|
||||||
if (closeButton.value) closeButton.value.click();
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<FetchData
|
<FetchData
|
||||||
url="Countries"
|
url="Countries"
|
||||||
@on-fetch="(data) => setCountriesOptions(data)"
|
|
||||||
:filter="countriesFilter"
|
:filter="countriesFilter"
|
||||||
auto-load
|
auto-load
|
||||||
|
@on-fetch="(data) => (countriesOptions = data)"
|
||||||
/>
|
/>
|
||||||
<FormModel
|
<FormModelPopup
|
||||||
:form-initial-data="bankEntityFormData"
|
|
||||||
:observe-form-changes="false"
|
|
||||||
:default-actions="false"
|
|
||||||
url-create="bankEntities"
|
url-create="bankEntities"
|
||||||
model="bankEntity"
|
model="bankEntity"
|
||||||
|
:title="t('title')"
|
||||||
|
:subtitle="t('subtitle')"
|
||||||
|
:form-initial-data="bankEntityFormData"
|
||||||
@on-data-saved="onDataSaved($event)"
|
@on-data-saved="onDataSaved($event)"
|
||||||
>
|
>
|
||||||
<template #form="{ data, validate }">
|
<template #form-inputs="{ data, validate }">
|
||||||
<span ref="closeButton" class="close-icon" v-close-popup>
|
|
||||||
<QIcon name="close" size="22px" />
|
|
||||||
</span>
|
|
||||||
<h1 class="title">{{ t('title') }}</h1>
|
|
||||||
<p class="q-mb-md">{{ t('subtitle') }}</p>
|
|
||||||
<VnRow class="row q-gutter-md q-mb-md">
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<QInput
|
<QInput
|
||||||
|
@ -93,43 +77,10 @@ const closeForm = () => {
|
||||||
<QInput :label="t('id')" v-model="data.id" />
|
<QInput :label="t('id')" v-model="data.id" />
|
||||||
</div>
|
</div>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
<div class="q-mt-lg row justify-end">
|
|
||||||
<QBtn
|
|
||||||
:label="t('globals.save')"
|
|
||||||
type="submit"
|
|
||||||
color="primary"
|
|
||||||
:disabled="loading"
|
|
||||||
:loading="loading"
|
|
||||||
/>
|
|
||||||
<QBtn
|
|
||||||
:label="t('globals.cancel')"
|
|
||||||
type="reset"
|
|
||||||
color="primary"
|
|
||||||
flat
|
|
||||||
class="q-ml-sm"
|
|
||||||
:disabled="loading"
|
|
||||||
:loading="loading"
|
|
||||||
v-close-popup
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
</FormModel>
|
</FormModelPopup>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.close-icon {
|
|
||||||
position: absolute;
|
|
||||||
top: 20px;
|
|
||||||
right: 20px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
.title {
|
|
||||||
font-size: 17px;
|
|
||||||
font-weight: bold;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<i18n>
|
<i18n>
|
||||||
en:
|
en:
|
||||||
title: New bank entity
|
title: New bank entity
|
||||||
|
|
|
@ -0,0 +1,100 @@
|
||||||
|
<script setup>
|
||||||
|
import { onMounted, reactive, ref } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
|
import FormModel from 'components/FormModel.vue';
|
||||||
|
|
||||||
|
const emit = defineEmits(['onDataSaved']);
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
parentId: {
|
||||||
|
type: Number,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
const departmentChildData = reactive({
|
||||||
|
name: null,
|
||||||
|
});
|
||||||
|
|
||||||
|
const closeButton = ref(null);
|
||||||
|
const isLoading = ref(false);
|
||||||
|
|
||||||
|
const onDataSaved = () => {
|
||||||
|
emit('onDataSaved');
|
||||||
|
closeForm();
|
||||||
|
};
|
||||||
|
|
||||||
|
const closeForm = () => {
|
||||||
|
if (closeButton.value) closeButton.value.click();
|
||||||
|
};
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
if ($props.parentId) departmentChildData.parentId = $props.parentId;
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<FormModel
|
||||||
|
:form-initial-data="departmentChildData"
|
||||||
|
:observe-form-changes="false"
|
||||||
|
:default-actions="false"
|
||||||
|
url-create="departments/createChild"
|
||||||
|
@on-data-saved="onDataSaved()"
|
||||||
|
>
|
||||||
|
<template #form="{ data }">
|
||||||
|
<span ref="closeButton" class="close-icon" v-close-popup>
|
||||||
|
<QIcon name="close" size="sm" />
|
||||||
|
</span>
|
||||||
|
<h1 class="title">{{ t('New department') }}</h1>
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md" style="min-width: 250px">
|
||||||
|
<div class="col">
|
||||||
|
<VnInput :label="t('Name')" v-model="data.name" />
|
||||||
|
</div>
|
||||||
|
</VnRow>
|
||||||
|
<div class="q-mt-lg row justify-end">
|
||||||
|
<QBtn
|
||||||
|
:label="t('globals.cancel')"
|
||||||
|
type="reset"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
class="q-ml-sm"
|
||||||
|
:disabled="isLoading"
|
||||||
|
:loading="isLoading"
|
||||||
|
v-close-popup
|
||||||
|
/>
|
||||||
|
<QBtn
|
||||||
|
:label="t('globals.save')"
|
||||||
|
type="submit"
|
||||||
|
color="primary"
|
||||||
|
:disabled="isLoading"
|
||||||
|
:loading="isLoading"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</FormModel>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.close-icon {
|
||||||
|
position: absolute;
|
||||||
|
top: 20px;
|
||||||
|
right: 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
.title {
|
||||||
|
font-size: 17px;
|
||||||
|
font-weight: bold;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Name: Nombre
|
||||||
|
New department: Nuevo departamento
|
||||||
|
</i18n>
|
|
@ -6,7 +6,7 @@ import FetchData from 'components/FetchData.vue';
|
||||||
import VnRow from 'components/ui/VnRow.vue';
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
import VnSelectFilter from 'src/components/common/VnSelectFilter.vue';
|
import VnSelectFilter from 'src/components/common/VnSelectFilter.vue';
|
||||||
import VnInput from 'src/components/common/VnInput.vue';
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
import FormModel from 'components/FormModel.vue';
|
import FormModelPopup from './FormModelPopup.vue';
|
||||||
|
|
||||||
const emit = defineEmits(['onDataSaved']);
|
const emit = defineEmits(['onDataSaved']);
|
||||||
|
|
||||||
|
@ -17,17 +17,10 @@ const cityFormData = reactive({
|
||||||
provinceFk: null,
|
provinceFk: null,
|
||||||
});
|
});
|
||||||
|
|
||||||
const closeButton = ref(null);
|
|
||||||
const isLoading = ref(false);
|
|
||||||
const provincesOptions = ref([]);
|
const provincesOptions = ref([]);
|
||||||
|
|
||||||
const onDataSaved = () => {
|
const onDataSaved = () => {
|
||||||
emit('onDataSaved');
|
emit('onDataSaved');
|
||||||
closeForm();
|
|
||||||
};
|
|
||||||
|
|
||||||
const closeForm = () => {
|
|
||||||
if (closeButton.value) closeButton.value.click();
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -37,20 +30,15 @@ const closeForm = () => {
|
||||||
auto-load
|
auto-load
|
||||||
url="Provinces"
|
url="Provinces"
|
||||||
/>
|
/>
|
||||||
<FormModel
|
<FormModelPopup
|
||||||
|
:title="t('New city')"
|
||||||
|
:subtitle="t('Please, ensure you put the correct data!')"
|
||||||
:form-initial-data="cityFormData"
|
:form-initial-data="cityFormData"
|
||||||
:observe-form-changes="false"
|
|
||||||
:default-actions="false"
|
|
||||||
url-create="towns"
|
url-create="towns"
|
||||||
model="city"
|
model="city"
|
||||||
@on-data-saved="onDataSaved()"
|
@on-data-saved="onDataSaved($event)"
|
||||||
>
|
>
|
||||||
<template #form="{ data, validate }">
|
<template #form-inputs="{ data, validate }">
|
||||||
<span ref="closeButton" class="close-icon" v-close-popup>
|
|
||||||
<QIcon name="close" size="22px" />
|
|
||||||
</span>
|
|
||||||
<h1 class="title">{{ t('New city') }}</h1>
|
|
||||||
<p>{{ t('Please, ensure you put the correct data!') }}</p>
|
|
||||||
<VnRow class="row q-gutter-md q-mb-md">
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<VnInput
|
<VnInput
|
||||||
|
@ -71,43 +59,10 @@ const closeForm = () => {
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
<div class="q-mt-lg row justify-end">
|
|
||||||
<QBtn
|
|
||||||
:label="t('globals.save')"
|
|
||||||
type="submit"
|
|
||||||
color="primary"
|
|
||||||
:disabled="isLoading"
|
|
||||||
:loading="isLoading"
|
|
||||||
/>
|
|
||||||
<QBtn
|
|
||||||
:label="t('globals.cancel')"
|
|
||||||
type="reset"
|
|
||||||
color="primary"
|
|
||||||
flat
|
|
||||||
class="q-ml-sm"
|
|
||||||
:disabled="isLoading"
|
|
||||||
:loading="isLoading"
|
|
||||||
v-close-popup
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
</FormModel>
|
</FormModelPopup>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.close-icon {
|
|
||||||
position: absolute;
|
|
||||||
top: 20px;
|
|
||||||
right: 20px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
.title {
|
|
||||||
font-size: 17px;
|
|
||||||
font-weight: bold;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<i18n>
|
<i18n>
|
||||||
es:
|
es:
|
||||||
New city: Nueva ciudad
|
New city: Nueva ciudad
|
||||||
|
|
|
@ -6,10 +6,10 @@ import FetchData from 'components/FetchData.vue';
|
||||||
import VnRow from 'components/ui/VnRow.vue';
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
import VnSelectFilter from 'src/components/common/VnSelectFilter.vue';
|
import VnSelectFilter from 'src/components/common/VnSelectFilter.vue';
|
||||||
import VnInput from 'src/components/common/VnInput.vue';
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
import FormModel from 'components/FormModel.vue';
|
|
||||||
import CreateNewCityForm from './CreateNewCityForm.vue';
|
import CreateNewCityForm from './CreateNewCityForm.vue';
|
||||||
import CreateNewProvinceForm from './CreateNewProvinceForm.vue';
|
import CreateNewProvinceForm from './CreateNewProvinceForm.vue';
|
||||||
import VnSelectCreate from 'components/common/VnSelectCreate.vue';
|
import VnSelectCreate from 'components/common/VnSelectCreate.vue';
|
||||||
|
import FormModelPopup from './FormModelPopup.vue';
|
||||||
|
|
||||||
const emit = defineEmits(['onDataSaved']);
|
const emit = defineEmits(['onDataSaved']);
|
||||||
|
|
||||||
|
@ -24,15 +24,12 @@ const postcodeFormData = reactive({
|
||||||
|
|
||||||
const townsFetchDataRef = ref(null);
|
const townsFetchDataRef = ref(null);
|
||||||
const provincesFetchDataRef = ref(null);
|
const provincesFetchDataRef = ref(null);
|
||||||
const closeButton = ref(null);
|
|
||||||
const countriesOptions = ref([]);
|
const countriesOptions = ref([]);
|
||||||
const isLoading = ref(false);
|
|
||||||
const provincesOptions = ref([]);
|
const provincesOptions = ref([]);
|
||||||
const townsLocationOptions = ref([]);
|
const townsLocationOptions = ref([]);
|
||||||
|
|
||||||
const onDataSaved = () => {
|
const onDataSaved = () => {
|
||||||
emit('onDataSaved');
|
emit('onDataSaved');
|
||||||
closeForm();
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const onCityCreated = async () => {
|
const onCityCreated = async () => {
|
||||||
|
@ -42,10 +39,6 @@ const onCityCreated = async () => {
|
||||||
const onProvinceCreated = async () => {
|
const onProvinceCreated = async () => {
|
||||||
await provincesFetchDataRef.value.fetch();
|
await provincesFetchDataRef.value.fetch();
|
||||||
};
|
};
|
||||||
|
|
||||||
const closeForm = () => {
|
|
||||||
if (closeButton.value) closeButton.value.click();
|
|
||||||
};
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -66,20 +59,15 @@ const closeForm = () => {
|
||||||
auto-load
|
auto-load
|
||||||
url="Countries"
|
url="Countries"
|
||||||
/>
|
/>
|
||||||
<FormModel
|
<FormModelPopup
|
||||||
:form-initial-data="postcodeFormData"
|
|
||||||
:observe-form-changes="false"
|
|
||||||
:default-actions="false"
|
|
||||||
url-create="postcodes"
|
url-create="postcodes"
|
||||||
model="postcode"
|
model="postcode"
|
||||||
@on-data-saved="onDataSaved()"
|
:title="t('New postcode')"
|
||||||
|
:subtitle="t('Please, ensure you put the correct data!')"
|
||||||
|
:form-initial-data="postcodeFormData"
|
||||||
|
@on-data-saved="onDataSaved($event)"
|
||||||
>
|
>
|
||||||
<template #form="{ data, validate }">
|
<template #form-inputs="{ data, validate }">
|
||||||
<span ref="closeButton" class="close-icon" v-close-popup>
|
|
||||||
<QIcon name="close" size="22px" />
|
|
||||||
</span>
|
|
||||||
<h1 class="title">{{ t('New postcode') }}</h1>
|
|
||||||
<p>{{ t('Please, ensure you put the correct data!') }}</p>
|
|
||||||
<VnRow class="row q-gutter-md q-mb-md">
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<VnInput
|
<VnInput
|
||||||
|
@ -134,45 +122,11 @@ const closeForm = () => {
|
||||||
v-model="data.countryFk"
|
v-model="data.countryFk"
|
||||||
:rules="validate('postcode.countryFk')"
|
:rules="validate('postcode.countryFk')"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div> </VnRow
|
||||||
</VnRow>
|
></template>
|
||||||
<div class="q-mt-lg row justify-end">
|
</FormModelPopup>
|
||||||
<QBtn
|
|
||||||
:label="t('globals.save')"
|
|
||||||
type="submit"
|
|
||||||
color="primary"
|
|
||||||
:disabled="isLoading"
|
|
||||||
:loading="isLoading"
|
|
||||||
/>
|
|
||||||
<QBtn
|
|
||||||
:label="t('globals.cancel')"
|
|
||||||
type="reset"
|
|
||||||
color="primary"
|
|
||||||
flat
|
|
||||||
class="q-ml-sm"
|
|
||||||
:disabled="isLoading"
|
|
||||||
:loading="isLoading"
|
|
||||||
v-close-popup
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
</FormModel>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.close-icon {
|
|
||||||
position: absolute;
|
|
||||||
top: 20px;
|
|
||||||
right: 20px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
.title {
|
|
||||||
font-size: 17px;
|
|
||||||
font-weight: bold;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<i18n>
|
<i18n>
|
||||||
es:
|
es:
|
||||||
New postcode: Nuevo código postal
|
New postcode: Nuevo código postal
|
||||||
|
|
|
@ -6,7 +6,7 @@ import FetchData from 'components/FetchData.vue';
|
||||||
import VnRow from 'components/ui/VnRow.vue';
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
import VnSelectFilter from 'src/components/common/VnSelectFilter.vue';
|
import VnSelectFilter from 'src/components/common/VnSelectFilter.vue';
|
||||||
import VnInput from 'src/components/common/VnInput.vue';
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
import FormModel from 'components/FormModel.vue';
|
import FormModelPopup from './FormModelPopup.vue';
|
||||||
|
|
||||||
const emit = defineEmits(['onDataSaved']);
|
const emit = defineEmits(['onDataSaved']);
|
||||||
|
|
||||||
|
@ -17,17 +17,10 @@ const provinceFormData = reactive({
|
||||||
autonomyFk: null,
|
autonomyFk: null,
|
||||||
});
|
});
|
||||||
|
|
||||||
const closeButton = ref(null);
|
|
||||||
const isLoading = ref(false);
|
|
||||||
const autonomiesOptions = ref([]);
|
const autonomiesOptions = ref([]);
|
||||||
|
|
||||||
const onDataSaved = () => {
|
const onDataSaved = () => {
|
||||||
emit('onDataSaved');
|
emit('onDataSaved');
|
||||||
closeForm();
|
|
||||||
};
|
|
||||||
|
|
||||||
const closeForm = () => {
|
|
||||||
if (closeButton.value) closeButton.value.click();
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -37,20 +30,15 @@ const closeForm = () => {
|
||||||
auto-load
|
auto-load
|
||||||
url="Autonomies"
|
url="Autonomies"
|
||||||
/>
|
/>
|
||||||
<FormModel
|
<FormModelPopup
|
||||||
:form-initial-data="provinceFormData"
|
:title="t('New province')"
|
||||||
:observe-form-changes="false"
|
:subtitle="t('Please, ensure you put the correct data!')"
|
||||||
:default-actions="false"
|
|
||||||
url-create="provinces"
|
url-create="provinces"
|
||||||
model="province"
|
model="province"
|
||||||
@on-data-saved="onDataSaved()"
|
:form-initial-data="provinceFormData"
|
||||||
|
@on-data-saved="onDataSaved($event)"
|
||||||
>
|
>
|
||||||
<template #form="{ data, validate }">
|
<template #form-inputs="{ data, validate }">
|
||||||
<span ref="closeButton" class="close-icon" v-close-popup>
|
|
||||||
<QIcon name="close" size="22px" />
|
|
||||||
</span>
|
|
||||||
<h1 class="title">{{ t('New province') }}</h1>
|
|
||||||
<p>{{ t('Please, ensure you put the correct data!') }}</p>
|
|
||||||
<VnRow class="row q-gutter-md q-mb-md">
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<VnInput
|
<VnInput
|
||||||
|
@ -71,47 +59,13 @@ const closeForm = () => {
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
|
|
||||||
<div class="q-mt-lg row justify-end">
|
|
||||||
<QBtn
|
|
||||||
:label="t('globals.save')"
|
|
||||||
type="submit"
|
|
||||||
color="primary"
|
|
||||||
:disabled="isLoading"
|
|
||||||
:loading="isLoading"
|
|
||||||
/>
|
|
||||||
<QBtn
|
|
||||||
:label="t('globals.cancel')"
|
|
||||||
type="reset"
|
|
||||||
color="primary"
|
|
||||||
flat
|
|
||||||
class="q-ml-sm"
|
|
||||||
:disabled="isLoading"
|
|
||||||
:loading="isLoading"
|
|
||||||
v-close-popup
|
|
||||||
/>
|
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
</FormModel>
|
</FormModelPopup>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.close-icon {
|
|
||||||
position: absolute;
|
|
||||||
top: 20px;
|
|
||||||
right: 20px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
.title {
|
|
||||||
font-size: 17px;
|
|
||||||
font-weight: bold;
|
|
||||||
line-height: 20px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<i18n>
|
<i18n>
|
||||||
es:
|
es:
|
||||||
New postcode: Nuevo código postal
|
New province: Nueva provincia
|
||||||
Please, ensure you put the correct data!: ¡Por favor, asegúrese de poner los datos correctos!
|
Please, ensure you put the correct data!: ¡Por favor, asegúrese de poner los datos correctos!
|
||||||
Name: Nombre
|
Name: Nombre
|
||||||
Autonomy: Autonomía
|
Autonomy: Autonomía
|
||||||
|
|
|
@ -58,7 +58,7 @@ const $props = defineProps({
|
||||||
mapper: {
|
mapper: {
|
||||||
type: Function,
|
type: Function,
|
||||||
default: null,
|
default: null,
|
||||||
}
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const emit = defineEmits(['onFetch', 'onDataSaved']);
|
const emit = defineEmits(['onFetch', 'onDataSaved']);
|
||||||
|
@ -97,9 +97,7 @@ const startFormWatcher = () => {
|
||||||
watch(
|
watch(
|
||||||
() => formData.value,
|
() => formData.value,
|
||||||
(val) => {
|
(val) => {
|
||||||
if (!isResetting.value && val) {
|
hasChanges.value = !isResetting.value && val;
|
||||||
hasChanges.value = true;
|
|
||||||
}
|
|
||||||
isResetting.value = false;
|
isResetting.value = false;
|
||||||
},
|
},
|
||||||
{ deep: true }
|
{ deep: true }
|
||||||
|
@ -129,7 +127,7 @@ async function save() {
|
||||||
isLoading.value = true;
|
isLoading.value = true;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const body = $props.mapper ? $props.mapper(formData.value) : formData.value
|
const body = $props.mapper ? $props.mapper(formData.value) : formData.value;
|
||||||
if ($props.urlCreate) {
|
if ($props.urlCreate) {
|
||||||
await axios.post($props.urlCreate, body);
|
await axios.post($props.urlCreate, body);
|
||||||
notify('globals.dataCreated', 'positive');
|
notify('globals.dataCreated', 'positive');
|
||||||
|
@ -179,11 +177,14 @@ watch(formUrl, async () => {
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<QBanner v-if="$props.observeFormChanges && hasChanges" class="text-white bg-warning">
|
<QBanner
|
||||||
|
v-if="$props.observeFormChanges && hasChanges"
|
||||||
|
class="text-white bg-warning full-width"
|
||||||
|
>
|
||||||
<QIcon name="warning" size="md" class="q-mr-md" />
|
<QIcon name="warning" size="md" class="q-mr-md" />
|
||||||
<span>{{ t('globals.changesToSave') }}</span>
|
<span>{{ t('globals.changesToSave') }}</span>
|
||||||
</QBanner>
|
</QBanner>
|
||||||
<div class="column items-center">
|
<div class="column items-center full-width">
|
||||||
<QForm
|
<QForm
|
||||||
v-if="formData"
|
v-if="formData"
|
||||||
@submit="save"
|
@submit="save"
|
||||||
|
|
|
@ -0,0 +1,107 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
|
import FormModel from 'components/FormModel.vue';
|
||||||
|
|
||||||
|
const emit = defineEmits(['onDataSaved']);
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
title: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
subtitle: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
url: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
model: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
filter: {
|
||||||
|
type: Object,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
urlCreate: {
|
||||||
|
type: String,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
formInitialData: {
|
||||||
|
type: Object,
|
||||||
|
default: () => {},
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
const closeButton = ref(null);
|
||||||
|
const isLoading = ref(false);
|
||||||
|
|
||||||
|
const onDataSaved = () => {
|
||||||
|
emit('onDataSaved');
|
||||||
|
closeForm();
|
||||||
|
};
|
||||||
|
|
||||||
|
const closeForm = () => {
|
||||||
|
if (closeButton.value) closeButton.value.click();
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<FormModel
|
||||||
|
:form-initial-data="formInitialData"
|
||||||
|
:observe-form-changes="false"
|
||||||
|
:default-actions="false"
|
||||||
|
:url-create="urlCreate"
|
||||||
|
:model="model"
|
||||||
|
@on-data-saved="onDataSaved()"
|
||||||
|
>
|
||||||
|
<template #form="{ data, validate }">
|
||||||
|
<span ref="closeButton" class="close-icon" v-close-popup>
|
||||||
|
<QIcon name="close" size="sm" />
|
||||||
|
</span>
|
||||||
|
<h1 class="title">{{ title }}</h1>
|
||||||
|
<p>{{ subtitle }}</p>
|
||||||
|
<slot name="form-inputs" :data="data" :validate="validate" />
|
||||||
|
<div class="q-mt-lg row justify-end">
|
||||||
|
<QBtn
|
||||||
|
:label="t('globals.save')"
|
||||||
|
type="submit"
|
||||||
|
color="primary"
|
||||||
|
:disabled="isLoading"
|
||||||
|
:loading="isLoading"
|
||||||
|
/>
|
||||||
|
<QBtn
|
||||||
|
:label="t('globals.cancel')"
|
||||||
|
type="reset"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
class="q-ml-sm"
|
||||||
|
:disabled="isLoading"
|
||||||
|
:loading="isLoading"
|
||||||
|
v-close-popup
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</FormModel>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.title {
|
||||||
|
font-size: 17px;
|
||||||
|
font-weight: bold;
|
||||||
|
line-height: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.close-icon {
|
||||||
|
position: absolute;
|
||||||
|
top: 20px;
|
||||||
|
right: 20px;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -0,0 +1,192 @@
|
||||||
|
<script setup>
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { ref, computed, onMounted } from 'vue';
|
||||||
|
|
||||||
|
import { useState } from 'src/composables/useState';
|
||||||
|
import axios from 'axios';
|
||||||
|
import useNotify from 'src/composables/useNotify.js';
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
allColumns: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
|
tableCode: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
labelsTraductionsPath: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const emit = defineEmits(['onConfigSaved']);
|
||||||
|
|
||||||
|
const { notify } = useNotify();
|
||||||
|
const state = useState();
|
||||||
|
const { t } = useI18n();
|
||||||
|
const popupProxyRef = ref(null);
|
||||||
|
const user = state.getUser();
|
||||||
|
const initialUserConfigViewData = ref(null);
|
||||||
|
|
||||||
|
const formattedCols = ref([]);
|
||||||
|
|
||||||
|
const areAllChecksMarked = computed(() => {
|
||||||
|
return formattedCols.value.every((col) => col.active);
|
||||||
|
});
|
||||||
|
|
||||||
|
const setUserConfigViewData = (data) => {
|
||||||
|
if (!data) return;
|
||||||
|
// Importante: El name de las columnas de la tabla debe conincidir con el name de las variables que devuelve la view config
|
||||||
|
formattedCols.value = $props.allColumns.map((col) => ({
|
||||||
|
name: col,
|
||||||
|
active: data[col],
|
||||||
|
}));
|
||||||
|
emitSavedConfig();
|
||||||
|
};
|
||||||
|
|
||||||
|
const toggleMarkAll = (val) => {
|
||||||
|
formattedCols.value.forEach((col) => (col.active = val));
|
||||||
|
};
|
||||||
|
|
||||||
|
const getConfig = async (url, filter) => {
|
||||||
|
const response = await axios.get(url, {
|
||||||
|
params: { filter: filter },
|
||||||
|
});
|
||||||
|
return response.data && response.data.length > 0 ? response.data[0] : null;
|
||||||
|
};
|
||||||
|
|
||||||
|
const fetchViewConfigData = async () => {
|
||||||
|
try {
|
||||||
|
const userConfigFilter = {
|
||||||
|
where: { tableCode: $props.tableCode, userFk: user.id },
|
||||||
|
};
|
||||||
|
const userConfig = await getConfig('UserConfigViews', userConfigFilter);
|
||||||
|
|
||||||
|
if (userConfig) {
|
||||||
|
initialUserConfigViewData.value = userConfig;
|
||||||
|
setUserConfigViewData(userConfig.configuration);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const defaultConfigFilter = { where: { tableCode: $props.tableCode } };
|
||||||
|
const defaultConfig = await getConfig('DefaultViewConfigs', defaultConfigFilter);
|
||||||
|
|
||||||
|
if (defaultConfig) {
|
||||||
|
setUserConfigViewData(defaultConfig.columns);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
console.err('Error fetching config view data', err);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const saveConfig = async () => {
|
||||||
|
try {
|
||||||
|
const params = {};
|
||||||
|
const configuration = {};
|
||||||
|
|
||||||
|
formattedCols.value.forEach((col) => {
|
||||||
|
const { name, active } = col;
|
||||||
|
configuration[name] = active;
|
||||||
|
});
|
||||||
|
|
||||||
|
// Si existe una view config del usuario hacemos un update si no la creamos
|
||||||
|
if (initialUserConfigViewData.value) {
|
||||||
|
params.updates = [
|
||||||
|
{
|
||||||
|
data: {
|
||||||
|
configuration: configuration,
|
||||||
|
},
|
||||||
|
where: {
|
||||||
|
id: initialUserConfigViewData.value.id,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
];
|
||||||
|
} else {
|
||||||
|
params.creates = [
|
||||||
|
{
|
||||||
|
userFk: user.value.id,
|
||||||
|
tableCode: $props.tableCode,
|
||||||
|
tableConfig: $props.tableCode,
|
||||||
|
configuration: configuration,
|
||||||
|
},
|
||||||
|
];
|
||||||
|
}
|
||||||
|
|
||||||
|
const response = await axios.post('UserConfigViews/crud', params);
|
||||||
|
if (response.data && response.data[0]) {
|
||||||
|
initialUserConfigViewData.value = response.data[0];
|
||||||
|
}
|
||||||
|
emitSavedConfig();
|
||||||
|
notify('globals.dataSaved', 'positive');
|
||||||
|
popupProxyRef.value.hide();
|
||||||
|
} catch (err) {
|
||||||
|
console.error('Error saving user view config', err);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const emitSavedConfig = () => {
|
||||||
|
const activeColumns = formattedCols.value
|
||||||
|
.filter((col) => col.active)
|
||||||
|
.map((col) => col.name);
|
||||||
|
emit('onConfigSaved', activeColumns);
|
||||||
|
};
|
||||||
|
|
||||||
|
onMounted(async () => {
|
||||||
|
await fetchViewConfigData();
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<QBtn color="primary" icon="view_column">
|
||||||
|
<QPopupProxy ref="popupProxyRef">
|
||||||
|
<QCard class="column q-pa-md">
|
||||||
|
<QIcon name="info" size="sm" class="info-icon">
|
||||||
|
<QTooltip>{{ t('Check the columns you want to see') }}</QTooltip>
|
||||||
|
</QIcon>
|
||||||
|
<span class="text-body1 q-mb-sm">{{ t('Visible columns') }}</span>
|
||||||
|
<QCheckbox
|
||||||
|
:label="t('Tick all')"
|
||||||
|
:model-value="areAllChecksMarked"
|
||||||
|
@update:model-value="toggleMarkAll($event)"
|
||||||
|
class="q-mb-sm"
|
||||||
|
/>
|
||||||
|
<div
|
||||||
|
v-if="allColumns.length > 0 && formattedCols.length > 0"
|
||||||
|
class="checks-layout"
|
||||||
|
>
|
||||||
|
<QCheckbox
|
||||||
|
v-for="(col, index) in allColumns"
|
||||||
|
:key="index"
|
||||||
|
:label="t(`${$props.labelsTraductionsPath + '.' + col}`)"
|
||||||
|
v-model="formattedCols[index].active"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<QBtn class="full-width q-mt-md" color="primary" @click="saveConfig()">{{
|
||||||
|
t('globals.save')
|
||||||
|
}}</QBtn>
|
||||||
|
</QCard>
|
||||||
|
</QPopupProxy>
|
||||||
|
<QTooltip>{{ t('Visible columns') }}</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.info-icon {
|
||||||
|
position: absolute;
|
||||||
|
top: 20px;
|
||||||
|
right: 20px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.checks-layout {
|
||||||
|
display: grid;
|
||||||
|
grid-template-columns: repeat(3, 200px);
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Check the columns you want to see: Marca las columnas que quieres ver
|
||||||
|
Visible columns: Columnas visibles
|
||||||
|
</i18n>
|
|
@ -40,6 +40,7 @@ const styleAttrs = computed(() => {
|
||||||
v-model="value"
|
v-model="value"
|
||||||
v-bind="{ ...$attrs, ...styleAttrs }"
|
v-bind="{ ...$attrs, ...styleAttrs }"
|
||||||
type="text"
|
type="text"
|
||||||
|
:class="{ required: $attrs.required }"
|
||||||
>
|
>
|
||||||
<template v-if="$slots.prepend" #prepend>
|
<template v-if="$slots.prepend" #prepend>
|
||||||
<slot name="prepend" />
|
<slot name="prepend" />
|
||||||
|
|
|
@ -49,7 +49,7 @@ const toggleForm = () => {
|
||||||
<QIcon
|
<QIcon
|
||||||
@click.stop.prevent="toggleForm()"
|
@click.stop.prevent="toggleForm()"
|
||||||
name="add"
|
name="add"
|
||||||
size="19px"
|
size="xs"
|
||||||
class="add-icon"
|
class="add-icon"
|
||||||
/>
|
/>
|
||||||
<QDialog v-model="showForm" transition-show="scale" transition-hide="scale">
|
<QDialog v-model="showForm" transition-show="scale" transition-hide="scale">
|
||||||
|
|
|
@ -87,13 +87,14 @@ const value = computed({
|
||||||
hide-selected
|
hide-selected
|
||||||
fill-input
|
fill-input
|
||||||
ref="vnSelectRef"
|
ref="vnSelectRef"
|
||||||
|
:class="{ required: $attrs.required }"
|
||||||
>
|
>
|
||||||
<template v-if="isClearable" #append>
|
<template v-if="isClearable" #append>
|
||||||
<QIcon
|
<QIcon
|
||||||
name="close"
|
name="close"
|
||||||
@click.stop="value = null"
|
@click.stop="value = null"
|
||||||
class="cursor-pointer"
|
class="cursor-pointer"
|
||||||
size="18px"
|
size="xs"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
<template v-for="(_, slotName) in $slots" #[slotName]="slotData" :key="slotName">
|
<template v-for="(_, slotName) in $slots" #[slotName]="slotData" :key="slotName">
|
||||||
|
|
|
@ -0,0 +1,159 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useRouter } from 'vue-router';
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
|
||||||
|
import CreateDepartmentChild from '../CreateDepartmentChild.vue';
|
||||||
|
|
||||||
|
import axios from 'axios';
|
||||||
|
import useNotify from 'src/composables/useNotify.js';
|
||||||
|
|
||||||
|
const quasar = useQuasar();
|
||||||
|
const { t } = useI18n();
|
||||||
|
const router = useRouter();
|
||||||
|
const { notify } = useNotify();
|
||||||
|
|
||||||
|
const treeRef = ref(null);
|
||||||
|
const showCreateNodeFormVal = ref(false);
|
||||||
|
const creationNodeSelectedId = ref(null);
|
||||||
|
const expanded = ref([]);
|
||||||
|
|
||||||
|
const nodes = ref([{ id: null, name: t('Departments'), sons: true, children: [{}] }]);
|
||||||
|
|
||||||
|
const fetchedChildrensSet = ref(new Set());
|
||||||
|
|
||||||
|
const onNodeExpanded = (nodeKeysArray) => {
|
||||||
|
// Verificar si el nodo ya fue expandido
|
||||||
|
if (!fetchedChildrensSet.value.has(nodeKeysArray.at(-1))) {
|
||||||
|
fetchedChildrensSet.value.add(nodeKeysArray.at(-1));
|
||||||
|
fetchNodeLeaves(nodeKeysArray.at(-1)); // Llamar a la función para obtener los nodos hijos
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const fetchNodeLeaves = async (nodeKey) => {
|
||||||
|
try {
|
||||||
|
const node = treeRef.value.getNodeByKey(nodeKey);
|
||||||
|
if (!node || node.sons === 0) return;
|
||||||
|
|
||||||
|
const params = { parentId: node.id };
|
||||||
|
const response = await axios.get('/departments/getLeaves', { params });
|
||||||
|
|
||||||
|
// Si hay datos en la respuesta y tiene hijos, agregarlos al nodo actual
|
||||||
|
if (response.data) {
|
||||||
|
node.children = response.data;
|
||||||
|
node.children.forEach((node) => {
|
||||||
|
if (node.sons) node.children = [{}];
|
||||||
|
});
|
||||||
|
}
|
||||||
|
} catch (err) {
|
||||||
|
console.error('Error fetching department leaves');
|
||||||
|
throw new Error();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const removeNode = (node) => {
|
||||||
|
const { id, parentFk } = node;
|
||||||
|
quasar
|
||||||
|
.dialog({
|
||||||
|
title: t('Are you sure you want to delete it?'),
|
||||||
|
message: t('Delete department'),
|
||||||
|
ok: {
|
||||||
|
push: true,
|
||||||
|
color: 'primary',
|
||||||
|
},
|
||||||
|
cancel: true,
|
||||||
|
})
|
||||||
|
.onOk(async () => {
|
||||||
|
try {
|
||||||
|
await axios.post(`/Departments/${id}/removeChild`, id);
|
||||||
|
notify(t('department.departmentRemoved'), 'positive');
|
||||||
|
await fetchNodeLeaves(parentFk);
|
||||||
|
} catch (err) {
|
||||||
|
console.log('Error removing department');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const showCreateNodeForm = (nodeId) => {
|
||||||
|
showCreateNodeFormVal.value = true;
|
||||||
|
creationNodeSelectedId.value = nodeId;
|
||||||
|
};
|
||||||
|
|
||||||
|
const onNodeCreated = async () => {
|
||||||
|
await fetchNodeLeaves(creationNodeSelectedId.value);
|
||||||
|
};
|
||||||
|
|
||||||
|
const redirectToDepartmentSummary = (id) => {
|
||||||
|
if (!id) return;
|
||||||
|
router.push({ name: 'DepartmentSummary', params: { id } });
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<QCard class="full-width" style="max-width: 800px">
|
||||||
|
<QTree
|
||||||
|
ref="treeRef"
|
||||||
|
:nodes="nodes"
|
||||||
|
node-key="id"
|
||||||
|
label-key="name"
|
||||||
|
v-model:expanded="expanded"
|
||||||
|
@update:expanded="onNodeExpanded($event)"
|
||||||
|
>
|
||||||
|
<template #default-header="{ node }">
|
||||||
|
<div
|
||||||
|
class="row justify-between full-width q-pr-md cursor-pointer"
|
||||||
|
@click.stop="redirectToDepartmentSummary(node.id)"
|
||||||
|
>
|
||||||
|
<span class="text-uppercase">
|
||||||
|
{{ node.name }}
|
||||||
|
</span>
|
||||||
|
<div class="row justify-between" style="max-width: max-content">
|
||||||
|
<QIcon
|
||||||
|
v-if="node.id"
|
||||||
|
name="delete"
|
||||||
|
color="primary"
|
||||||
|
size="sm"
|
||||||
|
class="q-pr-xs cursor-pointer"
|
||||||
|
@click.stop="removeNode(node)"
|
||||||
|
>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('Remove') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QIcon>
|
||||||
|
<QIcon
|
||||||
|
name="add"
|
||||||
|
color="primary"
|
||||||
|
size="sm"
|
||||||
|
class="cursor-pointer"
|
||||||
|
@click.stop="showCreateNodeForm(node.id)"
|
||||||
|
>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('Create') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QIcon>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
</QTree>
|
||||||
|
<QDialog
|
||||||
|
v-model="showCreateNodeFormVal"
|
||||||
|
transition-show="scale"
|
||||||
|
transition-hide="scale"
|
||||||
|
>
|
||||||
|
<CreateDepartmentChild
|
||||||
|
:parent-id="creationNodeSelectedId"
|
||||||
|
@on-data-saved="onNodeCreated()"
|
||||||
|
/>
|
||||||
|
</QDialog>
|
||||||
|
</QCard>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Departments: Departamentos
|
||||||
|
Remove: Quitar
|
||||||
|
Create: Crear
|
||||||
|
Are you sure you want to delete it?: ¿Seguro que quieres eliminarlo?
|
||||||
|
Delete department: Eliminar departamento
|
||||||
|
</i18n>
|
|
@ -156,9 +156,7 @@ export function useArrayData(key, userOptions) {
|
||||||
delete store.userParams[param];
|
delete store.userParams[param];
|
||||||
delete params[param];
|
delete params[param];
|
||||||
if (store.filter?.where) {
|
if (store.filter?.where) {
|
||||||
delete store.filter.where[
|
delete store.filter.where[Object.keys(exprBuilder ? exprBuilder(param) : param)[0]];
|
||||||
Object.keys(exprBuilder ? exprBuilder(param) : param)[0]
|
|
||||||
];
|
|
||||||
if (Object.keys(store.filter.where).length === 0) {
|
if (Object.keys(store.filter.where).length === 0) {
|
||||||
delete store.filter.where;
|
delete store.filter.where;
|
||||||
}
|
}
|
||||||
|
|
|
@ -53,3 +53,8 @@ body.body--dark {
|
||||||
color: var(--vn-text);
|
color: var(--vn-text);
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Estilo para el asterisco en campos requeridos */
|
||||||
|
.q-field.required .q-field__label:after {
|
||||||
|
content: ' *';
|
||||||
|
}
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
export default function dateRange(value) {
|
||||||
|
const minHour = new Date(value);
|
||||||
|
minHour.setHours(0, 0, 0, 0);
|
||||||
|
const maxHour = new Date(value);
|
||||||
|
maxHour.setHours(23, 59, 59, 59);
|
||||||
|
|
||||||
|
return [minHour, maxHour];
|
||||||
|
}
|
|
@ -7,6 +7,7 @@ import toCurrency from './toCurrency';
|
||||||
import toPercentage from './toPercentage';
|
import toPercentage from './toPercentage';
|
||||||
import toLowerCamel from './toLowerCamel';
|
import toLowerCamel from './toLowerCamel';
|
||||||
import dashIfEmpty from './dashIfEmpty';
|
import dashIfEmpty from './dashIfEmpty';
|
||||||
|
import dateRange from './dateRange';
|
||||||
|
|
||||||
export {
|
export {
|
||||||
toLowerCase,
|
toLowerCase,
|
||||||
|
@ -18,4 +19,5 @@ export {
|
||||||
toCurrency,
|
toCurrency,
|
||||||
toPercentage,
|
toPercentage,
|
||||||
dashIfEmpty,
|
dashIfEmpty,
|
||||||
|
dateRange,
|
||||||
};
|
};
|
||||||
|
|
|
@ -49,7 +49,6 @@ export default {
|
||||||
microsip: 'Open in MicroSIP',
|
microsip: 'Open in MicroSIP',
|
||||||
noSelectedRows: `You don't have any line selected`,
|
noSelectedRows: `You don't have any line selected`,
|
||||||
downloadCSVSuccess: 'CSV downloaded successfully',
|
downloadCSVSuccess: 'CSV downloaded successfully',
|
||||||
// labels compartidos entre vistas
|
|
||||||
reference: 'Reference',
|
reference: 'Reference',
|
||||||
agency: 'Agency',
|
agency: 'Agency',
|
||||||
wareHouseOut: 'Warehouse Out',
|
wareHouseOut: 'Warehouse Out',
|
||||||
|
@ -113,9 +112,24 @@ export default {
|
||||||
list: 'List',
|
list: 'List',
|
||||||
webPayments: 'Web Payments',
|
webPayments: 'Web Payments',
|
||||||
extendedList: 'Extended list',
|
extendedList: 'Extended list',
|
||||||
|
notifications: 'Notifications',
|
||||||
|
defaulter: 'Defaulter',
|
||||||
createCustomer: 'Create customer',
|
createCustomer: 'Create customer',
|
||||||
summary: 'Summary',
|
summary: 'Summary',
|
||||||
basicData: 'Basic Data',
|
basicData: 'Basic data',
|
||||||
|
fiscalData: 'Fiscal data',
|
||||||
|
billingData: 'Billing data',
|
||||||
|
consignees: 'Consignees',
|
||||||
|
notes: 'Notes',
|
||||||
|
credits: 'Credits',
|
||||||
|
greuges: 'Greuges',
|
||||||
|
balance: 'Balance',
|
||||||
|
recoveries: 'Recoveries',
|
||||||
|
webAccess: 'Web access',
|
||||||
|
log: 'Log',
|
||||||
|
sms: 'Sms',
|
||||||
|
creditManagement: 'Credit management',
|
||||||
|
others: 'Others',
|
||||||
},
|
},
|
||||||
list: {
|
list: {
|
||||||
phone: 'Phone',
|
phone: 'Phone',
|
||||||
|
@ -206,6 +220,52 @@ export default {
|
||||||
salesPerson: 'Sales person',
|
salesPerson: 'Sales person',
|
||||||
contactChannel: 'Contact channel',
|
contactChannel: 'Contact channel',
|
||||||
},
|
},
|
||||||
|
extendedList: {
|
||||||
|
tableVisibleColumns: {
|
||||||
|
id: 'Identifier',
|
||||||
|
name: 'Name',
|
||||||
|
fi: 'Tax number',
|
||||||
|
salesPersonFk: 'Salesperson',
|
||||||
|
credit: 'Credit',
|
||||||
|
creditInsurance: 'Credit insurance',
|
||||||
|
phone: 'Phone',
|
||||||
|
mobile: 'Mobile',
|
||||||
|
street: 'Street',
|
||||||
|
countryFk: 'Country',
|
||||||
|
provinceFk: 'Province',
|
||||||
|
city: 'City',
|
||||||
|
postcode: 'Postcode',
|
||||||
|
email: 'Email',
|
||||||
|
created: 'Created',
|
||||||
|
businessTypeFk: 'Business type',
|
||||||
|
payMethodFk: 'Billing data',
|
||||||
|
sageTaxTypeFk: 'Sage tax type',
|
||||||
|
sageTransactionTypeFk: 'Sage tr. type',
|
||||||
|
isActive: 'Active',
|
||||||
|
isVies: 'Vies',
|
||||||
|
isTaxDataChecked: 'Verified data',
|
||||||
|
isEqualizated: 'Is equalizated',
|
||||||
|
isFreezed: 'Freezed',
|
||||||
|
hasToInvoice: 'Invoice',
|
||||||
|
hasToInvoiceByAddress: 'Invoice by address',
|
||||||
|
isToBeMailed: 'Mailing',
|
||||||
|
hasLcr: 'Received LCR',
|
||||||
|
hasCoreVnl: 'VNL core received',
|
||||||
|
hasSepaVnl: 'VNL B2B received',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
entry: {
|
||||||
|
pageTitles: {
|
||||||
|
entries: 'Entries',
|
||||||
|
list: 'List',
|
||||||
|
createEntry: 'New entry',
|
||||||
|
summary: 'Summary',
|
||||||
|
create: 'Create',
|
||||||
|
},
|
||||||
|
list: {
|
||||||
|
newEntry: 'New entry',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
ticket: {
|
ticket: {
|
||||||
pageTitles: {
|
pageTitles: {
|
||||||
|
@ -569,7 +629,7 @@ export default {
|
||||||
landed: 'Landed',
|
landed: 'Landed',
|
||||||
hour: 'Hour',
|
hour: 'Hour',
|
||||||
agency: 'Agency',
|
agency: 'Agency',
|
||||||
total: 'Total'
|
total: 'Total',
|
||||||
},
|
},
|
||||||
form: {
|
form: {
|
||||||
clientFk: 'Client',
|
clientFk: 'Client',
|
||||||
|
@ -578,7 +638,7 @@ export default {
|
||||||
agencyModeFk: 'Agency',
|
agencyModeFk: 'Agency',
|
||||||
},
|
},
|
||||||
list: {
|
list: {
|
||||||
newOrder: 'New Order'
|
newOrder: 'New Order',
|
||||||
},
|
},
|
||||||
summary: {
|
summary: {
|
||||||
basket: 'Basket',
|
basket: 'Basket',
|
||||||
|
@ -604,8 +664,27 @@ export default {
|
||||||
description: 'Description',
|
description: 'Description',
|
||||||
quantity: 'Quantity',
|
quantity: 'Quantity',
|
||||||
price: 'Price',
|
price: 'Price',
|
||||||
amount: 'Amount'
|
amount: 'Amount',
|
||||||
}
|
},
|
||||||
|
},
|
||||||
|
department: {
|
||||||
|
pageTitles: {
|
||||||
|
basicData: 'Basic data',
|
||||||
|
department: 'Department',
|
||||||
|
summary: 'Summary',
|
||||||
|
},
|
||||||
|
name: 'Name',
|
||||||
|
code: 'Code',
|
||||||
|
chat: 'Chat',
|
||||||
|
bossDepartment: 'Boss Department',
|
||||||
|
email: 'Email',
|
||||||
|
selfConsumptionCustomer: 'Self-consumption customer',
|
||||||
|
telework: 'Telework',
|
||||||
|
notifyOnErrors: 'Notify on errors',
|
||||||
|
worksInProduction: 'Works in production',
|
||||||
|
hasToRefill: 'Fill in days without physical check-ins',
|
||||||
|
hasToSendMail: 'Send check-ins by email',
|
||||||
|
departmentRemoved: 'Department removed',
|
||||||
},
|
},
|
||||||
worker: {
|
worker: {
|
||||||
pageTitles: {
|
pageTitles: {
|
||||||
|
@ -615,6 +694,7 @@ export default {
|
||||||
summary: 'Summary',
|
summary: 'Summary',
|
||||||
notifications: 'Notifications',
|
notifications: 'Notifications',
|
||||||
workerCreate: 'New worker',
|
workerCreate: 'New worker',
|
||||||
|
department: 'Department',
|
||||||
},
|
},
|
||||||
list: {
|
list: {
|
||||||
name: 'Name',
|
name: 'Name',
|
||||||
|
@ -750,6 +830,15 @@ export default {
|
||||||
list: 'List',
|
list: 'List',
|
||||||
create: 'Create',
|
create: 'Create',
|
||||||
summary: 'Summary',
|
summary: 'Summary',
|
||||||
|
basicData: 'Basic data',
|
||||||
|
fiscalData: 'Fiscal data',
|
||||||
|
billingData: 'Billing data',
|
||||||
|
log: 'Log',
|
||||||
|
accounts: 'Accounts',
|
||||||
|
contacts: 'Contacts',
|
||||||
|
addresses: 'Addresses',
|
||||||
|
consumption: 'Consumption',
|
||||||
|
agencyTerm: 'Agency agreement',
|
||||||
},
|
},
|
||||||
list: {
|
list: {
|
||||||
payMethod: 'Pay method',
|
payMethod: 'Pay method',
|
||||||
|
|
|
@ -48,7 +48,6 @@ export default {
|
||||||
dateFormat: 'es-ES',
|
dateFormat: 'es-ES',
|
||||||
noSelectedRows: `No tienes ninguna línea seleccionada`,
|
noSelectedRows: `No tienes ninguna línea seleccionada`,
|
||||||
microsip: 'Abrir en MicroSIP',
|
microsip: 'Abrir en MicroSIP',
|
||||||
// labels compartidos entre vistas
|
|
||||||
downloadCSVSuccess: 'Descarga de CSV exitosa',
|
downloadCSVSuccess: 'Descarga de CSV exitosa',
|
||||||
reference: 'Referencia',
|
reference: 'Referencia',
|
||||||
agency: 'Agencia',
|
agency: 'Agencia',
|
||||||
|
@ -113,9 +112,24 @@ export default {
|
||||||
list: 'Listado',
|
list: 'Listado',
|
||||||
webPayments: 'Pagos Web',
|
webPayments: 'Pagos Web',
|
||||||
extendedList: 'Listado extendido',
|
extendedList: 'Listado extendido',
|
||||||
|
notifications: 'Notificaciones',
|
||||||
|
defaulter: 'Morosos',
|
||||||
createCustomer: 'Crear cliente',
|
createCustomer: 'Crear cliente',
|
||||||
basicData: 'Datos básicos',
|
|
||||||
summary: 'Resumen',
|
summary: 'Resumen',
|
||||||
|
basicData: 'Datos básicos',
|
||||||
|
fiscalData: 'Datos fiscales',
|
||||||
|
billingData: 'Forma de pago',
|
||||||
|
consignees: 'Consignatarios',
|
||||||
|
notes: 'Notas',
|
||||||
|
credits: 'Créditos',
|
||||||
|
greuges: 'Greuges',
|
||||||
|
balance: 'Balance',
|
||||||
|
recoveries: 'Recobros',
|
||||||
|
webAccess: 'Acceso web',
|
||||||
|
log: 'Historial',
|
||||||
|
sms: 'Sms',
|
||||||
|
creditManagement: 'Gestión de crédito',
|
||||||
|
others: 'Otros',
|
||||||
},
|
},
|
||||||
list: {
|
list: {
|
||||||
phone: 'Teléfono',
|
phone: 'Teléfono',
|
||||||
|
@ -205,6 +219,51 @@ export default {
|
||||||
salesPerson: 'Comercial',
|
salesPerson: 'Comercial',
|
||||||
contactChannel: 'Canal de contacto',
|
contactChannel: 'Canal de contacto',
|
||||||
},
|
},
|
||||||
|
extendedList: {
|
||||||
|
tableVisibleColumns: {
|
||||||
|
id: 'Identificador',
|
||||||
|
name: 'Nombre',
|
||||||
|
fi: 'NIF / CIF',
|
||||||
|
salesPersonFk: 'Comercial',
|
||||||
|
credit: 'Crédito',
|
||||||
|
creditInsurance: 'Crédito asegurado',
|
||||||
|
phone: 'Teléfono',
|
||||||
|
mobile: 'Móvil',
|
||||||
|
street: 'Dirección fiscal',
|
||||||
|
countryFk: 'País',
|
||||||
|
provinceFk: 'Provincia',
|
||||||
|
city: 'Población',
|
||||||
|
postcode: 'Código postal',
|
||||||
|
email: 'Email',
|
||||||
|
created: 'Fecha creación',
|
||||||
|
businessTypeFk: 'Tipo de negocio',
|
||||||
|
payMethodFk: 'Forma de pago',
|
||||||
|
sageTaxTypeFk: 'Tipo de impuesto Sage',
|
||||||
|
sageTransactionTypeFk: 'Tipo tr. sage',
|
||||||
|
isActive: 'Activo',
|
||||||
|
isVies: 'Vies',
|
||||||
|
isTaxDataChecked: 'Datos comprobados',
|
||||||
|
isEqualizated: 'Recargo de equivalencias',
|
||||||
|
isFreezed: 'Congelado',
|
||||||
|
hasToInvoice: 'Factura',
|
||||||
|
hasToInvoiceByAddress: 'Factura por consigna',
|
||||||
|
isToBeMailed: 'Env. emails',
|
||||||
|
hasLcr: 'Recibido LCR',
|
||||||
|
hasCoreVnl: 'Recibido core VNL',
|
||||||
|
hasSepaVnl: 'Recibido B2B VNL',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
entry: {
|
||||||
|
pageTitles: {
|
||||||
|
entries: 'Entradas',
|
||||||
|
list: 'Listado',
|
||||||
|
summary: 'Resumen',
|
||||||
|
create: 'Crear',
|
||||||
|
},
|
||||||
|
list: {
|
||||||
|
newEntry: 'Nueva entrada',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
ticket: {
|
ticket: {
|
||||||
pageTitles: {
|
pageTitles: {
|
||||||
|
@ -478,7 +537,7 @@ export default {
|
||||||
landed: 'F. entrega',
|
landed: 'F. entrega',
|
||||||
hour: 'Hora',
|
hour: 'Hora',
|
||||||
agency: 'Agencia',
|
agency: 'Agencia',
|
||||||
total: 'Total'
|
total: 'Total',
|
||||||
},
|
},
|
||||||
form: {
|
form: {
|
||||||
clientFk: 'Cliente',
|
clientFk: 'Cliente',
|
||||||
|
@ -487,7 +546,7 @@ export default {
|
||||||
agencyModeFk: 'Agencia',
|
agencyModeFk: 'Agencia',
|
||||||
},
|
},
|
||||||
list: {
|
list: {
|
||||||
newOrder: 'Nuevo Pedido'
|
newOrder: 'Nuevo Pedido',
|
||||||
},
|
},
|
||||||
summary: {
|
summary: {
|
||||||
basket: 'Cesta',
|
basket: 'Cesta',
|
||||||
|
@ -513,8 +572,8 @@ export default {
|
||||||
description: 'Descripción',
|
description: 'Descripción',
|
||||||
quantity: 'Cantidad',
|
quantity: 'Cantidad',
|
||||||
price: 'Precio',
|
price: 'Precio',
|
||||||
amount: 'Monto'
|
amount: 'Monto',
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
shelving: {
|
shelving: {
|
||||||
pageTitles: {
|
pageTitles: {
|
||||||
|
@ -607,6 +666,25 @@ export default {
|
||||||
country: 'País',
|
country: 'País',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
department: {
|
||||||
|
pageTitles: {
|
||||||
|
basicData: 'Basic data',
|
||||||
|
department: 'Departamentos',
|
||||||
|
summary: 'Resumen',
|
||||||
|
},
|
||||||
|
name: 'Nombre',
|
||||||
|
code: 'Código',
|
||||||
|
chat: 'Chat',
|
||||||
|
bossDepartment: 'Jefe de departamento',
|
||||||
|
email: 'Email',
|
||||||
|
selfConsumptionCustomer: 'Cliente autoconsumo',
|
||||||
|
telework: 'Teletrabaja',
|
||||||
|
notifyOnErrors: 'Notificar errores',
|
||||||
|
worksInProduction: 'Pertenece a producción',
|
||||||
|
hasToRefill: 'Completar días sin registros físicos',
|
||||||
|
hasToSendMail: 'Enviar fichadas por mail',
|
||||||
|
departmentRemoved: 'Departamento eliminado',
|
||||||
|
},
|
||||||
worker: {
|
worker: {
|
||||||
pageTitles: {
|
pageTitles: {
|
||||||
workers: 'Trabajadores',
|
workers: 'Trabajadores',
|
||||||
|
@ -615,6 +693,7 @@ export default {
|
||||||
summary: 'Resumen',
|
summary: 'Resumen',
|
||||||
notifications: 'Notificaciones',
|
notifications: 'Notificaciones',
|
||||||
workerCreate: 'Nuevo trabajador',
|
workerCreate: 'Nuevo trabajador',
|
||||||
|
department: 'Departamentos',
|
||||||
},
|
},
|
||||||
list: {
|
list: {
|
||||||
name: 'Nombre',
|
name: 'Nombre',
|
||||||
|
@ -750,6 +829,15 @@ export default {
|
||||||
list: 'Listado',
|
list: 'Listado',
|
||||||
create: 'Crear',
|
create: 'Crear',
|
||||||
summary: 'Resumen',
|
summary: 'Resumen',
|
||||||
|
basicData: 'Datos básicos',
|
||||||
|
fiscalData: 'Datos fiscales',
|
||||||
|
billingData: 'Forma de pago',
|
||||||
|
log: 'Historial',
|
||||||
|
accounts: 'Cuentas',
|
||||||
|
contacts: 'Contactos',
|
||||||
|
addresses: 'Direcciones',
|
||||||
|
consumption: 'Consumo',
|
||||||
|
agencyTerm: 'Acuerdo agencia',
|
||||||
},
|
},
|
||||||
list: {
|
list: {
|
||||||
payMethod: 'Método de pago',
|
payMethod: 'Método de pago',
|
||||||
|
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<div class="flex justify-center">Balance</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<div class="flex justify-center">Billing data</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<div class="flex justify-center">Consignees</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<div class="flex justify-center">Credit management</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<div class="flex justify-center">Credits</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<div class="flex justify-center">Fiscal data</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<div class="flex justify-center">Greuges</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<div class="flex justify-center">Log</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<div class="flex justify-center">Notes</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<div class="flex justify-center">Others</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<div class="flex justify-center">Recoveries</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<div class="flex justify-center">Sms</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,3 @@
|
||||||
|
<template>
|
||||||
|
<div class="flex justify-center">Web access</div>
|
||||||
|
</template>
|
|
@ -0,0 +1,51 @@
|
||||||
|
<script setup>
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
|
import { toCurrency } from 'filters/index';
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
amount: {
|
||||||
|
type: Number,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div class="card_balance q-px-md q-py-sm q-my-sm">
|
||||||
|
<h6 class="title_balance text-center">{{ t('Total') }}</h6>
|
||||||
|
<div class="row">
|
||||||
|
<p class="key_balance">{{ t('Balance due') }}: </p>
|
||||||
|
<b class="value_balance">
|
||||||
|
{{ toCurrency($props.amount) }}
|
||||||
|
</b>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.card_balance {
|
||||||
|
border: 1px solid black;
|
||||||
|
}
|
||||||
|
.title_balance {
|
||||||
|
color: var(--vn-text);
|
||||||
|
margin-top: 0;
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
.key_balance {
|
||||||
|
color: var(--vn-label);
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
.value_balance {
|
||||||
|
color: var(--vn-text);
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Total: Total
|
||||||
|
Balance due: Saldo vencido
|
||||||
|
</i18n>
|
|
@ -0,0 +1,252 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref, computed, onBeforeMount } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
|
import { QBtn, QCheckbox } from 'quasar';
|
||||||
|
|
||||||
|
import { toCurrency, toDate } from 'filters/index';
|
||||||
|
import { useArrayData } from 'composables/useArrayData';
|
||||||
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
|
|
||||||
|
import CustomerNotificationsFilter from './CustomerDefaulterFilter.vue';
|
||||||
|
import CustomerBalanceDueTotal from './CustomerBalanceDueTotal.vue';
|
||||||
|
import CustomerDescriptorProxy from 'src/pages/Customer/Card/CustomerDescriptorProxy.vue';
|
||||||
|
import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue';
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const stateStore = useStateStore();
|
||||||
|
|
||||||
|
const arrayData = ref(null);
|
||||||
|
const balanceDueTotal = ref(0);
|
||||||
|
|
||||||
|
onBeforeMount(async () => {
|
||||||
|
arrayData.value = useArrayData('CustomerDefaulter', {
|
||||||
|
url: 'Defaulters/filter',
|
||||||
|
limit: 0,
|
||||||
|
});
|
||||||
|
await arrayData.value.fetch({ append: false });
|
||||||
|
balanceDueTotal.value = arrayData.value.store.data.reduce(
|
||||||
|
(accumulator, currentValue) => {
|
||||||
|
return accumulator + (currentValue['amount'] || 0);
|
||||||
|
},
|
||||||
|
0
|
||||||
|
);
|
||||||
|
console.log(balanceDueTotal.value);
|
||||||
|
stateStore.rightDrawer = true;
|
||||||
|
});
|
||||||
|
|
||||||
|
const rows = computed(() => arrayData.value.store.data);
|
||||||
|
|
||||||
|
const selected = ref([]);
|
||||||
|
const workerId = ref(0);
|
||||||
|
const customerId = ref(0);
|
||||||
|
|
||||||
|
const tableColumnComponents = {
|
||||||
|
client: {
|
||||||
|
component: QBtn,
|
||||||
|
props: () => ({ flat: true, color: 'blue' }),
|
||||||
|
event: ({ row }) => selectCustomerId(row.clientFk),
|
||||||
|
},
|
||||||
|
isWorker: {
|
||||||
|
component: QCheckbox,
|
||||||
|
props: ({ value }) => ({
|
||||||
|
disable: true,
|
||||||
|
'model-value': Boolean(value),
|
||||||
|
}),
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
salesperson: {
|
||||||
|
component: QBtn,
|
||||||
|
props: () => ({ flat: true, color: 'blue' }),
|
||||||
|
event: ({ row }) => selectWorkerId(row.salesPersonFk),
|
||||||
|
},
|
||||||
|
country: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
paymentMethod: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
balance: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
author: {
|
||||||
|
component: QBtn,
|
||||||
|
props: () => ({ flat: true, color: 'blue' }),
|
||||||
|
event: ({ row }) => selectWorkerId(row.workerFk),
|
||||||
|
},
|
||||||
|
lastObservation: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
date: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
credit: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
from: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
const columns = computed(() => [
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'clientName',
|
||||||
|
label: t('Client'),
|
||||||
|
name: 'client',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'isWorker',
|
||||||
|
label: t('Is worker'),
|
||||||
|
name: 'isWorker',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'salesPersonName',
|
||||||
|
label: t('Salesperson'),
|
||||||
|
name: 'salesperson',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'country',
|
||||||
|
label: t('Country'),
|
||||||
|
name: 'country',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'payMethod',
|
||||||
|
label: t('P. Method'),
|
||||||
|
name: 'paymentMethod',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: ({ amount }) => toCurrency(amount),
|
||||||
|
label: t('Balance D.'),
|
||||||
|
name: 'balance',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'workerName',
|
||||||
|
label: t('Author'),
|
||||||
|
name: 'author',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'observation',
|
||||||
|
label: t('Last observation'),
|
||||||
|
name: 'lastObservation',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: ({ created }) => toDate(created),
|
||||||
|
label: t('L. O. Date'),
|
||||||
|
name: 'date',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: ({ creditInsurance }) => toCurrency(creditInsurance),
|
||||||
|
label: t('Credit I.'),
|
||||||
|
name: 'credit',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: ({ defaulterSinced }) => toDate(defaulterSinced),
|
||||||
|
label: t('From'),
|
||||||
|
name: 'from',
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
const selectCustomerId = (id) => {
|
||||||
|
workerId.value = 0;
|
||||||
|
customerId.value = id;
|
||||||
|
};
|
||||||
|
|
||||||
|
const selectWorkerId = (id) => {
|
||||||
|
customerId.value = 0;
|
||||||
|
workerId.value = id;
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<QDrawer v-model="stateStore.rightDrawer" side="right" :width="256" show-if-above>
|
||||||
|
<QScrollArea class="fit text-grey-8">
|
||||||
|
<CustomerNotificationsFilter data-key="CustomerDefaulter" />
|
||||||
|
</QScrollArea>
|
||||||
|
</QDrawer>
|
||||||
|
|
||||||
|
<QToolbar class="bg-vn-dark">
|
||||||
|
<div id="st-data">
|
||||||
|
<CustomerBalanceDueTotal :amount="balanceDueTotal" />
|
||||||
|
</div>
|
||||||
|
<QSpace />
|
||||||
|
<div id="st-actions"></div>
|
||||||
|
</QToolbar>
|
||||||
|
|
||||||
|
<QPage class="column items-center q-pa-md">
|
||||||
|
<QTable
|
||||||
|
:columns="columns"
|
||||||
|
:pagination="{ rowsPerPage: 0 }"
|
||||||
|
:rows="rows"
|
||||||
|
class="full-width q-mt-md"
|
||||||
|
hide-bottom
|
||||||
|
row-key="id"
|
||||||
|
selection="multiple"
|
||||||
|
v-model:selected="selected"
|
||||||
|
>
|
||||||
|
<template #body-cell="props">
|
||||||
|
<QTd :props="props">
|
||||||
|
<QTr :props="props" class="cursor-pointer">
|
||||||
|
<component
|
||||||
|
:is="tableColumnComponents[props.col.name].component"
|
||||||
|
class="col-content"
|
||||||
|
v-bind="tableColumnComponents[props.col.name].props(props)"
|
||||||
|
@click="tableColumnComponents[props.col.name].event(props)"
|
||||||
|
>
|
||||||
|
{{ props.value }}
|
||||||
|
|
||||||
|
<WorkerDescriptorProxy v-if="workerId" :id="workerId" />
|
||||||
|
<CustomerDescriptorProxy v-else :id="customerId" />
|
||||||
|
</component>
|
||||||
|
</QTr>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
</QTable>
|
||||||
|
</QPage>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.col-content {
|
||||||
|
border-radius: 4px;
|
||||||
|
padding: 6px;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Client: Cliente
|
||||||
|
Is worker: Es trabajador
|
||||||
|
Salesperson: Comercial
|
||||||
|
Country: País
|
||||||
|
P. Method: F. Pago
|
||||||
|
Balance D.: Saldo V.
|
||||||
|
Author: Autor
|
||||||
|
Last observation: Última observación
|
||||||
|
L. O. Date: Fecha Ú. O.
|
||||||
|
Credit I.: Crédito A.
|
||||||
|
From: Desde
|
||||||
|
</i18n>
|
|
@ -0,0 +1,238 @@
|
||||||
|
<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';
|
||||||
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
|
import VnInputDate from 'src/components/common/VnInputDate.vue';
|
||||||
|
import VnSelectFilter from 'components/common/VnSelectFilter.vue';
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const props = defineProps({
|
||||||
|
dataKey: {
|
||||||
|
type: String,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const clients = ref();
|
||||||
|
const salespersons = ref();
|
||||||
|
const countries = ref();
|
||||||
|
const authors = ref();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<FetchData @on-fetch="(data) => (clients = data)" auto-load url="Clients" />
|
||||||
|
<FetchData
|
||||||
|
:filter="{ where: { role: 'salesPerson' } }"
|
||||||
|
@on-fetch="(data) => (salespersons = data)"
|
||||||
|
auto-load
|
||||||
|
url="Workers/activeWithInheritedRole"
|
||||||
|
/>
|
||||||
|
<FetchData @on-fetch="(data) => (countries = data)" auto-load url="Countries" />
|
||||||
|
<FetchData
|
||||||
|
@on-fetch="(data) => (authors = data)"
|
||||||
|
auto-load
|
||||||
|
url="Workers/activeWithInheritedRole"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<VnFilterPanel :data-key="props.dataKey" :search-button="true">
|
||||||
|
<template #tags="{ tag, formatFn }">
|
||||||
|
<div class="q-gutter-x-xs">
|
||||||
|
<strong>{{ t(`params.${tag.label}`) }}: </strong>
|
||||||
|
<span>{{ formatFn(tag.value) }}</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<template #body="{ params }">
|
||||||
|
<QList dense class="list">
|
||||||
|
<QItem class="q-mb-sm q-mt-sm">
|
||||||
|
<QItemSection v-if="clients">
|
||||||
|
<VnSelectFilter
|
||||||
|
:input-debounce="0"
|
||||||
|
:label="t('Client')"
|
||||||
|
:options="clients"
|
||||||
|
dense
|
||||||
|
emit-value
|
||||||
|
hide-selected
|
||||||
|
map-options
|
||||||
|
option-label="name"
|
||||||
|
option-value="clientTypeFk"
|
||||||
|
outlined
|
||||||
|
rounded
|
||||||
|
use-input
|
||||||
|
v-model="params.clientFk"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
<QItemSection v-else>
|
||||||
|
<QSkeleton class="full-width" type="QInput" />
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
|
||||||
|
<QItem class="q-mb-sm">
|
||||||
|
<QItemSection v-if="salespersons">
|
||||||
|
<VnSelectFilter
|
||||||
|
:input-debounce="0"
|
||||||
|
:label="t('Salesperson')"
|
||||||
|
:options="salespersons"
|
||||||
|
dense
|
||||||
|
emit-value
|
||||||
|
hide-selected
|
||||||
|
map-options
|
||||||
|
option-label="name"
|
||||||
|
option-value="id"
|
||||||
|
outlined
|
||||||
|
rounded
|
||||||
|
use-input
|
||||||
|
v-model="params.salesPersonFk"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
<QItemSection v-else>
|
||||||
|
<QSkeleton class="full-width" type="QInput" />
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
|
||||||
|
<QItem class="q-mb-sm">
|
||||||
|
<QItemSection v-if="countries">
|
||||||
|
<VnSelectFilter
|
||||||
|
:input-debounce="0"
|
||||||
|
:label="t('Country')"
|
||||||
|
:options="countries"
|
||||||
|
dense
|
||||||
|
emit-value
|
||||||
|
hide-selected
|
||||||
|
map-options
|
||||||
|
option-label="country"
|
||||||
|
option-value="id"
|
||||||
|
outlined
|
||||||
|
rounded
|
||||||
|
use-input
|
||||||
|
v-model="params.countryFk"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
<QItemSection v-else>
|
||||||
|
<QSkeleton class="full-width" type="QInput" />
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
|
||||||
|
<QItem class="q-mb-sm">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInput
|
||||||
|
:label="t('P. Method')"
|
||||||
|
is-outlined
|
||||||
|
v-model="params.paymentMethod"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
|
||||||
|
<QItem class="q-mb-sm">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInput
|
||||||
|
:label="t('Balance D.')"
|
||||||
|
is-outlined
|
||||||
|
v-model="params.balance"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
|
||||||
|
<QItem class="q-mb-sm">
|
||||||
|
<QItemSection v-if="authors">
|
||||||
|
<VnSelectFilter
|
||||||
|
:input-debounce="0"
|
||||||
|
:label="t('Author')"
|
||||||
|
:options="authors"
|
||||||
|
dense
|
||||||
|
emit-value
|
||||||
|
hide-selected
|
||||||
|
map-options
|
||||||
|
option-label="name"
|
||||||
|
option-value="id"
|
||||||
|
outlined
|
||||||
|
rounded
|
||||||
|
use-input
|
||||||
|
v-model="params.workerFk"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
<QItemSection v-else>
|
||||||
|
<QSkeleton class="full-width" type="QInput" />
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
|
||||||
|
<QItem class="q-mb-sm">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInput
|
||||||
|
:label="t('L. O. Date')"
|
||||||
|
is-outlined
|
||||||
|
v-model="params.date"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
|
||||||
|
<QItem class="q-mb-sm">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInput
|
||||||
|
:label="t('Credit I.')"
|
||||||
|
is-outlined
|
||||||
|
v-model="params.credit"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
|
||||||
|
<QItem class="q-mb-sm">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInputDate
|
||||||
|
:label="t('From')"
|
||||||
|
is-outlined
|
||||||
|
v-model="params.defaulterSinced"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QSeparator />
|
||||||
|
</QList>
|
||||||
|
</template>
|
||||||
|
</VnFilterPanel>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.list {
|
||||||
|
width: 256px;
|
||||||
|
}
|
||||||
|
.list * {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
en:
|
||||||
|
params:
|
||||||
|
clientFk: Client
|
||||||
|
salesPersonFk: Salesperson
|
||||||
|
countryFk: Country
|
||||||
|
paymentMethod: P. Method
|
||||||
|
balance: Balance D.
|
||||||
|
workerFk: Author
|
||||||
|
date: L. O. Date
|
||||||
|
credit: Credit I.
|
||||||
|
defaulterSinced: From
|
||||||
|
es:
|
||||||
|
params:
|
||||||
|
clientFk: Cliente
|
||||||
|
salesPersonFk: Comercial
|
||||||
|
countryFk: País
|
||||||
|
paymentMethod: F. Pago
|
||||||
|
balance: Saldo V.
|
||||||
|
workerFk: Autor
|
||||||
|
date: Fecha Ú. O.
|
||||||
|
credit: Crédito A.
|
||||||
|
defaulterSinced: Desde
|
||||||
|
Client: Cliente
|
||||||
|
Salesperson: Comercial
|
||||||
|
Country: País
|
||||||
|
P. Method: F. Pago
|
||||||
|
Balance D.: Saldo V.
|
||||||
|
Author: Autor
|
||||||
|
L. O. Date: Fecha Ú. O.
|
||||||
|
Credit I.: Crédito A.
|
||||||
|
From: Desde
|
||||||
|
</i18n>
|
|
@ -0,0 +1,568 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref, computed, onBeforeMount, onMounted } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useRouter } from 'vue-router';
|
||||||
|
|
||||||
|
import { QBtn, QIcon } from 'quasar';
|
||||||
|
import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue';
|
||||||
|
import CustomerDescriptorProxy from 'src/pages/Customer/Card/CustomerDescriptorProxy.vue';
|
||||||
|
import CustomerExtendedListActions from './CustomerExtendedListActions.vue';
|
||||||
|
import CustomerExtendedListFilter from './CustomerExtendedListFilter.vue';
|
||||||
|
import TableVisibleColumns from 'src/components/common/TableVisibleColumns.vue';
|
||||||
|
|
||||||
|
import { useArrayData } from 'composables/useArrayData';
|
||||||
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
|
import { dashIfEmpty, toDate } from 'src/filters';
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const router = useRouter();
|
||||||
|
const stateStore = useStateStore();
|
||||||
|
|
||||||
|
const arrayData = ref(null);
|
||||||
|
|
||||||
|
onBeforeMount(async () => {
|
||||||
|
arrayData.value = useArrayData('CustomerExtendedList', {
|
||||||
|
url: 'Clients/extendedListFilter',
|
||||||
|
limit: 0,
|
||||||
|
});
|
||||||
|
await arrayData.value.fetch({ append: false });
|
||||||
|
stateStore.rightDrawer = true;
|
||||||
|
});
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
const filteredColumns = columns.value.filter(
|
||||||
|
(col) => col.name !== 'actions' && col.name !== 'customerStatus'
|
||||||
|
);
|
||||||
|
allColumnNames.value = filteredColumns.map((col) => col.name);
|
||||||
|
});
|
||||||
|
|
||||||
|
const rows = computed(() => arrayData.value.store.data);
|
||||||
|
|
||||||
|
const selectedCustomerId = ref(0);
|
||||||
|
const selectedSalesPersonId = ref(0);
|
||||||
|
const allColumnNames = ref([]);
|
||||||
|
const visibleColumns = ref([]);
|
||||||
|
|
||||||
|
const tableColumnComponents = {
|
||||||
|
customerStatus: {
|
||||||
|
component: QIcon,
|
||||||
|
props: (prop) => ({
|
||||||
|
name: !prop.row.isActive
|
||||||
|
? 'vn:disabled'
|
||||||
|
: prop.row.isActive && prop.row.isFreezed
|
||||||
|
? 'vn:frozen'
|
||||||
|
: '',
|
||||||
|
color: 'primary',
|
||||||
|
size: 'sm',
|
||||||
|
}),
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
id: {
|
||||||
|
component: QBtn,
|
||||||
|
props: () => ({ flat: true, color: 'blue' }),
|
||||||
|
event: (prop) => {
|
||||||
|
selectCustomerId(prop.row.id);
|
||||||
|
},
|
||||||
|
},
|
||||||
|
name: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
fi: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
salesPersonFk: {
|
||||||
|
component: QBtn,
|
||||||
|
props: () => ({ flat: true, color: 'blue' }),
|
||||||
|
event: (prop) => selectSalesPersonId(prop.row.salesPersonFk),
|
||||||
|
},
|
||||||
|
credit: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
creditInsurance: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
phone: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
mobile: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
street: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
countryFk: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
provinceFk: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
city: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
postcode: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
email: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
created: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
businessTypeFk: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
payMethodFk: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
sageTaxTypeFk: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
sageTransactionTypeFk: {
|
||||||
|
component: 'span',
|
||||||
|
props: () => {},
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
isActive: {
|
||||||
|
component: QIcon,
|
||||||
|
props: (prop) => ({
|
||||||
|
name: prop.row.isActive ? 'check' : 'close',
|
||||||
|
color: prop.row.isActive ? 'positive' : 'negative',
|
||||||
|
size: 'sm',
|
||||||
|
}),
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
isVies: {
|
||||||
|
component: QIcon,
|
||||||
|
props: (prop) => ({
|
||||||
|
name: prop.row.isVies ? 'check' : 'close',
|
||||||
|
color: prop.row.isVies ? 'positive' : 'negative',
|
||||||
|
size: 'sm',
|
||||||
|
}),
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
isTaxDataChecked: {
|
||||||
|
component: QIcon,
|
||||||
|
props: (prop) => ({
|
||||||
|
name: prop.row.isTaxDataChecked ? 'check' : 'close',
|
||||||
|
color: prop.row.isTaxDataChecked ? 'positive' : 'negative',
|
||||||
|
size: 'sm',
|
||||||
|
}),
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
isEqualizated: {
|
||||||
|
component: QIcon,
|
||||||
|
props: (prop) => ({
|
||||||
|
name: prop.row.isEqualizated ? 'check' : 'close',
|
||||||
|
color: prop.row.isEqualizated ? 'positive' : 'negative',
|
||||||
|
size: 'sm',
|
||||||
|
}),
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
isFreezed: {
|
||||||
|
component: QIcon,
|
||||||
|
props: (prop) => ({
|
||||||
|
name: prop.row.isFreezed ? 'check' : 'close',
|
||||||
|
color: prop.row.isFreezed ? 'positive' : 'negative',
|
||||||
|
size: 'sm',
|
||||||
|
}),
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
hasToInvoice: {
|
||||||
|
component: QIcon,
|
||||||
|
props: (prop) => ({
|
||||||
|
name: prop.row.hasToInvoice ? 'check' : 'close',
|
||||||
|
color: prop.row.hasToInvoice ? 'positive' : 'negative',
|
||||||
|
size: 'sm',
|
||||||
|
}),
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
hasToInvoiceByAddress: {
|
||||||
|
component: QIcon,
|
||||||
|
props: (prop) => ({
|
||||||
|
name: prop.row.hasToInvoiceByAddress ? 'check' : 'close',
|
||||||
|
color: prop.row.hasToInvoiceByAddress ? 'positive' : 'negative',
|
||||||
|
size: 'sm',
|
||||||
|
}),
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
isToBeMailed: {
|
||||||
|
component: QIcon,
|
||||||
|
props: (prop) => ({
|
||||||
|
name: prop.row.isToBeMailed ? 'check' : 'close',
|
||||||
|
color: prop.row.isToBeMailed ? 'positive' : 'negative',
|
||||||
|
size: 'sm',
|
||||||
|
}),
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
hasLcr: {
|
||||||
|
component: QIcon,
|
||||||
|
props: (prop) => ({
|
||||||
|
name: prop.row.hasLcr ? 'check' : 'close',
|
||||||
|
color: prop.row.hasLcr ? 'positive' : 'negative',
|
||||||
|
size: 'sm',
|
||||||
|
}),
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
hasCoreVnl: {
|
||||||
|
component: QIcon,
|
||||||
|
props: (prop) => ({
|
||||||
|
name: prop.row.hasCoreVnl ? 'check' : 'close',
|
||||||
|
color: prop.row.hasCoreVnl ? 'positive' : 'negative',
|
||||||
|
size: 'sm',
|
||||||
|
}),
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
hasSepaVnl: {
|
||||||
|
component: QIcon,
|
||||||
|
props: (prop) => ({
|
||||||
|
name: prop.row.hasSepaVnl ? 'check' : 'close',
|
||||||
|
color: prop.row.hasSepaVnl ? 'positive' : 'negative',
|
||||||
|
size: 'sm',
|
||||||
|
}),
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
actions: {
|
||||||
|
component: CustomerExtendedListActions,
|
||||||
|
props: (prop) => ({
|
||||||
|
id: prop.row.id,
|
||||||
|
}),
|
||||||
|
event: () => {},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
|
const columns = computed(() => [
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: '',
|
||||||
|
label: '',
|
||||||
|
name: 'customerStatus',
|
||||||
|
format: () => ' ',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'id',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.id'),
|
||||||
|
name: 'id',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'name',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.name'),
|
||||||
|
name: 'name',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'fi',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.fi'),
|
||||||
|
name: 'fi',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'salesPerson',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.salesPersonFk'),
|
||||||
|
name: 'salesPersonFk',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'credit',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.credit'),
|
||||||
|
name: 'credit',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'creditInsurance',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.creditInsurance'),
|
||||||
|
name: 'creditInsurance',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'phone',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.phone'),
|
||||||
|
name: 'phone',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'mobile',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.mobile'),
|
||||||
|
name: 'mobile',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'street',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.street'),
|
||||||
|
name: 'street',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'country',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.countryFk'),
|
||||||
|
name: 'countryFk',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'province',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.provinceFk'),
|
||||||
|
name: 'provinceFk',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'city',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.city'),
|
||||||
|
name: 'city',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'postcode',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.postcode'),
|
||||||
|
name: 'postcode',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'email',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.email'),
|
||||||
|
name: 'email',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'created',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.created'),
|
||||||
|
name: 'created',
|
||||||
|
format: (value) => toDate(value),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'businessType',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.businessTypeFk'),
|
||||||
|
name: 'businessTypeFk',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'payMethod',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.payMethodFk'),
|
||||||
|
name: 'payMethodFk',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'sageTaxType',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.sageTaxTypeFk'),
|
||||||
|
name: 'sageTaxTypeFk',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'sageTransactionType',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.sageTransactionTypeFk'),
|
||||||
|
name: 'sageTransactionTypeFk',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'isActive',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.isActive'),
|
||||||
|
name: 'isActive',
|
||||||
|
format: () => ' ',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'isVies',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.isVies'),
|
||||||
|
name: 'isVies',
|
||||||
|
format: () => ' ',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'isTaxDataChecked',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.isTaxDataChecked'),
|
||||||
|
name: 'isTaxDataChecked',
|
||||||
|
format: () => ' ',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'isEqualizated',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.isEqualizated'),
|
||||||
|
name: 'isEqualizated',
|
||||||
|
format: () => ' ',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'isFreezed',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.isFreezed'),
|
||||||
|
name: 'isFreezed',
|
||||||
|
format: () => ' ',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'hasToInvoice',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.hasToInvoice'),
|
||||||
|
name: 'hasToInvoice',
|
||||||
|
format: () => ' ',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'hasToInvoiceByAddress',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.hasToInvoiceByAddress'),
|
||||||
|
name: 'hasToInvoiceByAddress',
|
||||||
|
format: () => ' ',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'isToBeMailed',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.isToBeMailed'),
|
||||||
|
name: 'isToBeMailed',
|
||||||
|
format: () => ' ',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'hasLcr',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.hasLcr'),
|
||||||
|
name: 'hasLcr',
|
||||||
|
format: () => ' ',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'hasCoreVnl',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.hasCoreVnl'),
|
||||||
|
name: 'hasCoreVnl',
|
||||||
|
format: () => ' ',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'hasSepaVnl',
|
||||||
|
label: t('customer.extendedList.tableVisibleColumns.hasSepaVnl'),
|
||||||
|
name: 'hasSepaVnl',
|
||||||
|
format: () => ' ',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'right',
|
||||||
|
field: 'actions',
|
||||||
|
label: '',
|
||||||
|
name: 'actions',
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
const stopEventPropagation = (event, col) => {
|
||||||
|
if (!['id', 'salesPersonFk'].includes(col.name)) return;
|
||||||
|
event.preventDefault();
|
||||||
|
event.stopPropagation();
|
||||||
|
};
|
||||||
|
|
||||||
|
const navigateToTravelId = (id) => {
|
||||||
|
router.push({ path: `/customer/${id}` });
|
||||||
|
};
|
||||||
|
|
||||||
|
const selectCustomerId = (id) => {
|
||||||
|
selectedCustomerId.value = id;
|
||||||
|
};
|
||||||
|
|
||||||
|
const selectSalesPersonId = (id) => {
|
||||||
|
console.log('selectedSalesPersonId:: ', selectedSalesPersonId.value);
|
||||||
|
selectedSalesPersonId.value = id;
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<QDrawer v-model="stateStore.rightDrawer" side="right" :width="256" show-if-above>
|
||||||
|
<QScrollArea class="fit text-grey-8">
|
||||||
|
<CustomerExtendedListFilter
|
||||||
|
v-if="visibleColumns.length !== 0"
|
||||||
|
data-key="CustomerExtendedList"
|
||||||
|
:visible-columns="visibleColumns"
|
||||||
|
/>
|
||||||
|
</QScrollArea>
|
||||||
|
</QDrawer>
|
||||||
|
|
||||||
|
<QToolbar class="bg-vn-dark">
|
||||||
|
<div id="st-data">
|
||||||
|
<TableVisibleColumns
|
||||||
|
:all-columns="allColumnNames"
|
||||||
|
table-code="clientsDetail"
|
||||||
|
labels-traductions-path="customer.extendedList.tableVisibleColumns"
|
||||||
|
@on-config-saved="
|
||||||
|
visibleColumns = ['customerStatus', ...$event, 'actions']
|
||||||
|
"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<QSpace />
|
||||||
|
<div id="st-actions"></div>
|
||||||
|
</QToolbar>
|
||||||
|
|
||||||
|
<QPage class="column items-center q-pa-md">
|
||||||
|
<QTable
|
||||||
|
:columns="columns"
|
||||||
|
:pagination="{ rowsPerPage: 12 }"
|
||||||
|
:rows="rows"
|
||||||
|
class="full-width q-mt-md"
|
||||||
|
row-key="id"
|
||||||
|
:visible-columns="visibleColumns"
|
||||||
|
>
|
||||||
|
<template #body="props">
|
||||||
|
<QTr
|
||||||
|
:props="props"
|
||||||
|
@click="navigateToTravelId(props.row.id)"
|
||||||
|
class="cursor-pointer"
|
||||||
|
>
|
||||||
|
<QTd
|
||||||
|
v-for="col in props.cols"
|
||||||
|
:key="col.name"
|
||||||
|
:props="props"
|
||||||
|
@click="stopEventPropagation($event, col)"
|
||||||
|
>
|
||||||
|
<component
|
||||||
|
:is="tableColumnComponents[col.name].component"
|
||||||
|
class="col-content"
|
||||||
|
v-bind="tableColumnComponents[col.name].props(props)"
|
||||||
|
@click="tableColumnComponents[col.name].event(props)"
|
||||||
|
>
|
||||||
|
{{ dashIfEmpty(col.value) }}
|
||||||
|
<WorkerDescriptorProxy
|
||||||
|
v-if="props.row.salesPersonFk"
|
||||||
|
:id="selectedSalesPersonId"
|
||||||
|
/>
|
||||||
|
<CustomerDescriptorProxy
|
||||||
|
v-if="props.row.id"
|
||||||
|
:id="selectedCustomerId"
|
||||||
|
/>
|
||||||
|
</component>
|
||||||
|
</QTd>
|
||||||
|
</QTr>
|
||||||
|
</template>
|
||||||
|
</QTable>
|
||||||
|
</QPage>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.col-content {
|
||||||
|
border-radius: 4px;
|
||||||
|
padding: 6px;
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -0,0 +1,71 @@
|
||||||
|
<script setup>
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useRouter } from 'vue-router';
|
||||||
|
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
|
||||||
|
import CustomerSummaryDialog from '../Card/CustomerSummaryDialog.vue';
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const quasar = useQuasar();
|
||||||
|
const router = useRouter();
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
id: {
|
||||||
|
type: Number,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const redirectToCreateView = () => {
|
||||||
|
router.push({
|
||||||
|
name: 'TicketList',
|
||||||
|
query: {
|
||||||
|
params: JSON.stringify({
|
||||||
|
clientFk: $props.id,
|
||||||
|
}),
|
||||||
|
},
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const viewSummary = () => {
|
||||||
|
quasar.dialog({
|
||||||
|
component: CustomerSummaryDialog,
|
||||||
|
componentProps: {
|
||||||
|
id: $props.id,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div>
|
||||||
|
<QIcon
|
||||||
|
@click.stop="redirectToCreateView"
|
||||||
|
color="primary"
|
||||||
|
name="vn:ticket"
|
||||||
|
size="sm"
|
||||||
|
>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('Client ticket list') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QIcon>
|
||||||
|
<QIcon
|
||||||
|
@click.stop="viewSummary"
|
||||||
|
class="q-ml-md"
|
||||||
|
color="primary"
|
||||||
|
name="preview"
|
||||||
|
size="sm"
|
||||||
|
>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('Preview') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QIcon>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Client ticket list: Listado de tickets del cliente
|
||||||
|
Preview: Vista previa
|
||||||
|
</i18n>
|
|
@ -0,0 +1,617 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref, computed } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
|
import FetchData from 'components/FetchData.vue';
|
||||||
|
import VnFilterPanel from 'src/components/ui/VnFilterPanel.vue';
|
||||||
|
import VnSelectFilter from 'components/common/VnSelectFilter.vue';
|
||||||
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
|
import VnInputDate from 'components/common/VnInputDate.vue';
|
||||||
|
import { dateRange } from 'src/filters';
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
dataKey: {
|
||||||
|
type: String,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
visibleColumns: {
|
||||||
|
type: Array,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
const clients = ref();
|
||||||
|
const workers = ref();
|
||||||
|
const countriesOptions = ref([]);
|
||||||
|
const provincesOptions = ref([]);
|
||||||
|
const paymethodsOptions = ref([]);
|
||||||
|
const businessTypesOptions = ref([]);
|
||||||
|
const sageTaxTypesOptions = ref([]);
|
||||||
|
const sageTransactionTypesOptions = ref([]);
|
||||||
|
|
||||||
|
const visibleColumnsSet = computed(() => new Set(props.visibleColumns));
|
||||||
|
|
||||||
|
const exprBuilder = (param, value) => {
|
||||||
|
switch (param) {
|
||||||
|
case 'created':
|
||||||
|
return {
|
||||||
|
'c.created': {
|
||||||
|
between: dateRange(value),
|
||||||
|
},
|
||||||
|
};
|
||||||
|
case 'id':
|
||||||
|
case 'name':
|
||||||
|
case 'socialName':
|
||||||
|
case 'fi':
|
||||||
|
case 'credit':
|
||||||
|
case 'creditInsurance':
|
||||||
|
case 'phone':
|
||||||
|
case 'mobile':
|
||||||
|
case 'street':
|
||||||
|
case 'city':
|
||||||
|
case 'postcode':
|
||||||
|
case 'email':
|
||||||
|
case 'isActive':
|
||||||
|
case 'isVies':
|
||||||
|
case 'isTaxDataChecked':
|
||||||
|
case 'isEqualizated':
|
||||||
|
case 'isFreezed':
|
||||||
|
case 'hasToInvoice':
|
||||||
|
case 'hasToInvoiceByAddress':
|
||||||
|
case 'isToBeMailed':
|
||||||
|
case 'hasSepaVnl':
|
||||||
|
case 'hasLcr':
|
||||||
|
case 'hasCoreVnl':
|
||||||
|
case 'countryFk':
|
||||||
|
case 'provinceFk':
|
||||||
|
case 'salesPersonFk':
|
||||||
|
case 'businessTypeFk':
|
||||||
|
case 'payMethodFk':
|
||||||
|
case 'sageTaxTypeFk':
|
||||||
|
case 'sageTransactionTypeFk':
|
||||||
|
return { [`c.${param}`]: value };
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const shouldRenderColumn = (colName) => {
|
||||||
|
return visibleColumnsSet.value.has(colName);
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<FetchData
|
||||||
|
url="Clients"
|
||||||
|
:filter="{ where: { role: 'socialName' } }"
|
||||||
|
@on-fetch="(data) => (clients = data)"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
url="Workers/activeWithInheritedRole"
|
||||||
|
:filter="{ where: { role: 'salesPerson' } }"
|
||||||
|
@on-fetch="(data) => (workers = data)"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
url="Workers/activeWithInheritedRole"
|
||||||
|
:filter="{ where: { role: 'salesPerson' } }"
|
||||||
|
@on-fetch="(data) => (workers = data)"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
url="Countries"
|
||||||
|
:filter="{ fields: ['id', 'country'], order: 'country ASC' }"
|
||||||
|
@on-fetch="(data) => (countriesOptions = data)"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
ref="provincesFetchDataRef"
|
||||||
|
@on-fetch="(data) => (provincesOptions = data)"
|
||||||
|
auto-load
|
||||||
|
url="Provinces"
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
url="Paymethods"
|
||||||
|
@on-fetch="(data) => (paymethodsOptions = data)"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
url="BusinessTypes"
|
||||||
|
@on-fetch="(data) => (businessTypesOptions = data)"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
url="SageTaxTypes"
|
||||||
|
auto-load
|
||||||
|
@on-fetch="(data) => (sageTaxTypesOptions = data)"
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
url="sageTransactionTypes"
|
||||||
|
auto-load
|
||||||
|
@on-fetch="(data) => (sageTransactionTypesOptions = data)"
|
||||||
|
/>
|
||||||
|
<VnFilterPanel
|
||||||
|
:data-key="props.dataKey"
|
||||||
|
:search-button="true"
|
||||||
|
:expr-builder="exprBuilder"
|
||||||
|
>
|
||||||
|
<template #tags="{ tag, formatFn }">
|
||||||
|
<div class="q-gutter-x-xs">
|
||||||
|
<strong
|
||||||
|
>{{ t(`customer.extendedList.tableVisibleColumns.${tag.label}`) }}:
|
||||||
|
</strong>
|
||||||
|
<span>{{ formatFn(tag.value) }}</span>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<template #body="{ params, searchFn }">
|
||||||
|
<QList dense class="list q-gutter-y-sm q-mt-sm">
|
||||||
|
<QItem v-if="shouldRenderColumn('id')">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInput
|
||||||
|
:label="t('customer.extendedList.tableVisibleColumns.id')"
|
||||||
|
v-model="params.id"
|
||||||
|
is-outlined
|
||||||
|
clearable
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem v-if="shouldRenderColumn('name')">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInput
|
||||||
|
:label="t('customer.extendedList.tableVisibleColumns.name')"
|
||||||
|
v-model="params.name"
|
||||||
|
is-outlined
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<!-- <QItem class="q-mb-sm">
|
||||||
|
<QItemSection v-if="!clients">
|
||||||
|
<QSkeleton type="QInput" class="full-width" />
|
||||||
|
</QItemSection>
|
||||||
|
<QItemSection v-if="clients">
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="t('Social name')"
|
||||||
|
v-model="params.socialName"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:options="clients"
|
||||||
|
option-value="socialName"
|
||||||
|
option-label="socialName"
|
||||||
|
emit-value
|
||||||
|
map-options
|
||||||
|
use-input
|
||||||
|
hide-selected
|
||||||
|
dense
|
||||||
|
outlined
|
||||||
|
rounded
|
||||||
|
:input-debounce="0"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem> -->
|
||||||
|
<QItem v-if="shouldRenderColumn('fi')">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInput
|
||||||
|
:label="t('customer.extendedList.tableVisibleColumns.fi')"
|
||||||
|
v-model="params.fi"
|
||||||
|
is-outlined
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem v-if="shouldRenderColumn('salesPersonFk')">
|
||||||
|
<QItemSection v-if="!workers">
|
||||||
|
<QSkeleton type="QInput" class="full-width" />
|
||||||
|
</QItemSection>
|
||||||
|
<QItemSection v-if="workers">
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="
|
||||||
|
t(
|
||||||
|
'customer.extendedList.tableVisibleColumns.salesPersonFk'
|
||||||
|
)
|
||||||
|
"
|
||||||
|
v-model="params.salesPersonFk"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:options="workers"
|
||||||
|
option-value="id"
|
||||||
|
option-label="name"
|
||||||
|
emit-value
|
||||||
|
map-options
|
||||||
|
use-input
|
||||||
|
hide-selected
|
||||||
|
dense
|
||||||
|
outlined
|
||||||
|
rounded
|
||||||
|
:input-debounce="0"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem v-if="shouldRenderColumn('credit')">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInput
|
||||||
|
:label="t('customer.extendedList.tableVisibleColumns.credit')"
|
||||||
|
v-model="params.credit"
|
||||||
|
is-outlined
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem v-if="shouldRenderColumn('creditInsurance')">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInput
|
||||||
|
:label="
|
||||||
|
t(
|
||||||
|
'customer.extendedList.tableVisibleColumns.creditInsurance'
|
||||||
|
)
|
||||||
|
"
|
||||||
|
v-model="params.creditInsurance"
|
||||||
|
is-outlined
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem v-if="shouldRenderColumn('phone')">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInput
|
||||||
|
:label="t('customer.extendedList.tableVisibleColumns.phone')"
|
||||||
|
v-model="params.phone"
|
||||||
|
is-outlined
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem v-if="shouldRenderColumn('mobile')">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInput
|
||||||
|
:label="t('customer.extendedList.tableVisibleColumns.mobile')"
|
||||||
|
v-model="params.mobile"
|
||||||
|
is-outlined
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem v-if="shouldRenderColumn('street')">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInput
|
||||||
|
:label="t('customer.extendedList.tableVisibleColumns.street')"
|
||||||
|
v-model="params.street"
|
||||||
|
is-outlined
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem v-if="shouldRenderColumn('countryFk')">
|
||||||
|
<QItemSection>
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="
|
||||||
|
t('customer.extendedList.tableVisibleColumns.countryFk')
|
||||||
|
"
|
||||||
|
v-model="params.countryFk"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:options="countriesOptions"
|
||||||
|
option-value="id"
|
||||||
|
option-label="country"
|
||||||
|
map-options
|
||||||
|
hide-selected
|
||||||
|
dense
|
||||||
|
outlined
|
||||||
|
rounded
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem v-if="shouldRenderColumn('provinceFk')">
|
||||||
|
<QItemSection>
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="
|
||||||
|
t('customer.extendedList.tableVisibleColumns.provinceFk')
|
||||||
|
"
|
||||||
|
v-model="params.provinceFk"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:options="provincesOptions"
|
||||||
|
option-value="id"
|
||||||
|
option-label="name"
|
||||||
|
map-options
|
||||||
|
hide-selected
|
||||||
|
dense
|
||||||
|
outlined
|
||||||
|
rounded
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem v-if="shouldRenderColumn('city')">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInput
|
||||||
|
:label="t('customer.extendedList.tableVisibleColumns.city')"
|
||||||
|
v-model="params.city"
|
||||||
|
is-outlined
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem v-if="shouldRenderColumn('postcode')">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInput
|
||||||
|
:label="
|
||||||
|
t('customer.extendedList.tableVisibleColumns.postcode')
|
||||||
|
"
|
||||||
|
v-model="params.postcode"
|
||||||
|
is-outlined
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem v-if="shouldRenderColumn('email')">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInput
|
||||||
|
:label="t('customer.extendedList.tableVisibleColumns.email')"
|
||||||
|
v-model="params.email"
|
||||||
|
is-outlined
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
|
||||||
|
<QItem v-if="shouldRenderColumn('created')">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInputDate
|
||||||
|
v-model="params.created"
|
||||||
|
:label="
|
||||||
|
t('customer.extendedList.tableVisibleColumns.created')
|
||||||
|
"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
is-outlined
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem v-if="shouldRenderColumn('businessTypeFk')">
|
||||||
|
<QItemSection>
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="
|
||||||
|
t(
|
||||||
|
'customer.extendedList.tableVisibleColumns.businessTypeFk'
|
||||||
|
)
|
||||||
|
"
|
||||||
|
v-model="params.businessTypeFk"
|
||||||
|
:options="businessTypesOptions"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
option-value="code"
|
||||||
|
option-label="description"
|
||||||
|
map-options
|
||||||
|
hide-selected
|
||||||
|
dense
|
||||||
|
outlined
|
||||||
|
rounded
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem v-if="shouldRenderColumn('payMethodFk')">
|
||||||
|
<QItemSection>
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="
|
||||||
|
t('customer.extendedList.tableVisibleColumns.payMethodFk')
|
||||||
|
"
|
||||||
|
v-model="params.payMethodFk"
|
||||||
|
:options="paymethodsOptions"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
option-value="id"
|
||||||
|
option-label="name"
|
||||||
|
map-options
|
||||||
|
hide-selected
|
||||||
|
dense
|
||||||
|
outlined
|
||||||
|
rounded
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem v-if="shouldRenderColumn('sageTaxTypeFk')">
|
||||||
|
<QItemSection>
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="
|
||||||
|
t(
|
||||||
|
'customer.extendedList.tableVisibleColumns.sageTaxTypeFk'
|
||||||
|
)
|
||||||
|
"
|
||||||
|
v-model="params.sageTaxTypeFk"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:options="sageTaxTypesOptions"
|
||||||
|
option-value="id"
|
||||||
|
option-label="vat"
|
||||||
|
map-options
|
||||||
|
hide-selected
|
||||||
|
dense
|
||||||
|
outlined
|
||||||
|
rounded
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem v-if="shouldRenderColumn('sageTransactionTypeFk')">
|
||||||
|
<QItemSection>
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="
|
||||||
|
t(
|
||||||
|
'customer.extendedList.tableVisibleColumns.sageTransactionTypeFk'
|
||||||
|
)
|
||||||
|
"
|
||||||
|
v-model="params.sageTransactionTypeFk"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:options="sageTransactionTypesOptions"
|
||||||
|
option-value="id"
|
||||||
|
option-label="transaction"
|
||||||
|
map-options
|
||||||
|
hide-selected
|
||||||
|
dense
|
||||||
|
outlined
|
||||||
|
rounded
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem
|
||||||
|
v-if="shouldRenderColumn('isActive') || shouldRenderColumn('isVies')"
|
||||||
|
>
|
||||||
|
<QItemSection v-if="shouldRenderColumn('isActive')">
|
||||||
|
<QCheckbox
|
||||||
|
v-model="params.isActive"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="
|
||||||
|
t('customer.extendedList.tableVisibleColumns.isActive')
|
||||||
|
"
|
||||||
|
toggle-indeterminate
|
||||||
|
:false-value="undefined"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
<QItemSection v-if="shouldRenderColumn('isVies')">
|
||||||
|
<QCheckbox
|
||||||
|
v-model="params.isVies"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="t('customer.extendedList.tableVisibleColumns.isVies')"
|
||||||
|
toggle-indeterminate
|
||||||
|
:false-value="undefined"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem
|
||||||
|
v-if="
|
||||||
|
shouldRenderColumn('isEqualizated') ||
|
||||||
|
shouldRenderColumn('isTaxDataChecked')
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<QItemSection v-if="shouldRenderColumn('isTaxDataChecked')">
|
||||||
|
<QCheckbox
|
||||||
|
v-model="params.isTaxDataChecked"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="
|
||||||
|
t(
|
||||||
|
'customer.extendedList.tableVisibleColumns.isTaxDataChecked'
|
||||||
|
)
|
||||||
|
"
|
||||||
|
toggle-indeterminate
|
||||||
|
:false-value="undefined"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
<QItemSection v-if="shouldRenderColumn('isEqualizated')">
|
||||||
|
<QCheckbox
|
||||||
|
v-model="params.isEqualizated"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="
|
||||||
|
t(
|
||||||
|
'customer.extendedList.tableVisibleColumns.isEqualizated'
|
||||||
|
)
|
||||||
|
"
|
||||||
|
toggle-indeterminate
|
||||||
|
:false-value="undefined"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem
|
||||||
|
v-if="
|
||||||
|
shouldRenderColumn('hasToInvoice') ||
|
||||||
|
shouldRenderColumn('isFreezed')
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<QItemSection v-if="shouldRenderColumn('isFreezed')">
|
||||||
|
<QCheckbox
|
||||||
|
v-model="params.isFreezed"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="
|
||||||
|
t('customer.extendedList.tableVisibleColumns.isFreezed')
|
||||||
|
"
|
||||||
|
toggle-indeterminate
|
||||||
|
:false-value="undefined"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
<QItemSection v-if="shouldRenderColumn('hasToInvoice')">
|
||||||
|
<QCheckbox
|
||||||
|
v-model="params.hasToInvoice"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="
|
||||||
|
t(
|
||||||
|
'customer.extendedList.tableVisibleColumns.hasToInvoice'
|
||||||
|
)
|
||||||
|
"
|
||||||
|
toggle-indeterminate
|
||||||
|
:false-value="undefined"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem
|
||||||
|
v-if="
|
||||||
|
shouldRenderColumn('isToBeMailed') ||
|
||||||
|
shouldRenderColumn('hasToInvoiceByAddress')
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<QItemSection v-if="shouldRenderColumn('hasToInvoiceByAddress')">
|
||||||
|
<QCheckbox
|
||||||
|
v-model="params.hasToInvoiceByAddress"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="
|
||||||
|
t(
|
||||||
|
'customer.extendedList.tableVisibleColumns.hasToInvoiceByAddress'
|
||||||
|
)
|
||||||
|
"
|
||||||
|
toggle-indeterminate
|
||||||
|
:false-value="undefined"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
<QItemSection v-if="shouldRenderColumn('isToBeMailed')">
|
||||||
|
<QCheckbox
|
||||||
|
v-model="params.isToBeMailed"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="
|
||||||
|
t(
|
||||||
|
'customer.extendedList.tableVisibleColumns.isToBeMailed'
|
||||||
|
)
|
||||||
|
"
|
||||||
|
toggle-indeterminate
|
||||||
|
:false-value="undefined"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem
|
||||||
|
v-if="
|
||||||
|
shouldRenderColumn('hasLcr') || shouldRenderColumn('hasCoreVnl')
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<QItemSection v-if="shouldRenderColumn('hasLcr')">
|
||||||
|
<QCheckbox
|
||||||
|
v-model="params.hasLcr"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="t('customer.extendedList.tableVisibleColumns.hasLcr')"
|
||||||
|
toggle-indeterminate
|
||||||
|
:false-value="undefined"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
<QItemSection v-if="shouldRenderColumn('hasCoreVnl')">
|
||||||
|
<QCheckbox
|
||||||
|
v-model="params.hasCoreVnl"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="
|
||||||
|
t('customer.extendedList.tableVisibleColumns.hasCoreVnl')
|
||||||
|
"
|
||||||
|
toggle-indeterminate
|
||||||
|
:false-value="undefined"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<QItem v-if="shouldRenderColumn('hasSepaVnl')">
|
||||||
|
<QItemSection>
|
||||||
|
<QCheckbox
|
||||||
|
v-model="params.hasSepaVnl"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
:label="
|
||||||
|
t('customer.extendedList.tableVisibleColumns.hasSepaVnl')
|
||||||
|
"
|
||||||
|
toggle-indeterminate
|
||||||
|
:false-value="undefined"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
|
||||||
|
<QSeparator />
|
||||||
|
</QList>
|
||||||
|
</template>
|
||||||
|
</VnFilterPanel>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.list {
|
||||||
|
width: 256px;
|
||||||
|
}
|
||||||
|
.list * {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Social name: Razón social
|
||||||
|
</i18n>
|
|
@ -1,39 +1,46 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, computed, onBeforeMount } from 'vue';
|
import { ref, computed, onBeforeMount } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
import CustomerExtendedListFilter from './CustomerExtendedListFilter.vue';
|
import { QBtn } from 'quasar';
|
||||||
|
|
||||||
import { useStateStore } from 'stores/useStateStore';
|
|
||||||
import { useArrayData } from 'composables/useArrayData';
|
import { useArrayData } from 'composables/useArrayData';
|
||||||
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
|
|
||||||
|
import CustomerNotificationsFilter from './CustomerNotificationsFilter.vue';
|
||||||
|
import CustomerDescriptorProxy from '../Card/CustomerDescriptorProxy.vue';
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
const stateStore = useStateStore();
|
const stateStore = useStateStore();
|
||||||
|
|
||||||
const arrayData = ref(null);
|
const arrayData = ref(null);
|
||||||
|
|
||||||
onBeforeMount(async () => {
|
onBeforeMount(async () => {
|
||||||
arrayData.value = useArrayData('CustomerExtendedList', {
|
arrayData.value = useArrayData('CustomerNotifications', {
|
||||||
url: 'Clients/extendedListFilter',
|
url: 'Clients',
|
||||||
limit: 0,
|
limit: 0,
|
||||||
});
|
});
|
||||||
await arrayData.value.fetch({ append: false });
|
await arrayData.value.fetch({ append: false });
|
||||||
|
|
||||||
stateStore.rightDrawer = true;
|
stateStore.rightDrawer = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
const rows = computed(() => arrayData.value.store.data);
|
const rows = computed(() => arrayData.value.store.data);
|
||||||
|
|
||||||
|
const selected = ref([]);
|
||||||
|
const selectedCustomerId = ref(0);
|
||||||
|
|
||||||
const tableColumnComponents = {
|
const tableColumnComponents = {
|
||||||
id: {
|
id: {
|
||||||
component: 'span',
|
component: QBtn,
|
||||||
props: () => {},
|
props: () => ({ flat: true, color: 'blue' }),
|
||||||
event: () => {},
|
event: (prop) => selectCustomerId(prop.row.id),
|
||||||
},
|
},
|
||||||
socialName: {
|
socialName: {
|
||||||
component: 'span',
|
component: 'span',
|
||||||
props: () => {},
|
props: () => {},
|
||||||
event: () => {},
|
event: () => {},
|
||||||
},
|
},
|
||||||
salesPerson: {
|
city: {
|
||||||
component: 'span',
|
component: 'span',
|
||||||
props: () => {},
|
props: () => {},
|
||||||
event: () => {},
|
event: () => {},
|
||||||
|
@ -43,11 +50,6 @@ const tableColumnComponents = {
|
||||||
props: () => {},
|
props: () => {},
|
||||||
event: () => {},
|
event: () => {},
|
||||||
},
|
},
|
||||||
city: {
|
|
||||||
component: 'span',
|
|
||||||
props: () => {},
|
|
||||||
event: () => {},
|
|
||||||
},
|
|
||||||
email: {
|
email: {
|
||||||
component: 'span',
|
component: 'span',
|
||||||
props: () => {},
|
props: () => {},
|
||||||
|
@ -55,50 +57,48 @@ const tableColumnComponents = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const columns = ref([
|
const columns = computed(() => [
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
field: 'id',
|
field: 'id',
|
||||||
label: 'Identifier',
|
label: t('Identifier'),
|
||||||
name: 'id',
|
name: 'id',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
field: 'socialName',
|
field: 'socialName',
|
||||||
label: 'Social name',
|
label: t('Social name'),
|
||||||
name: 'socialName',
|
name: 'socialName',
|
||||||
},
|
},
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
field: 'salesPerson',
|
|
||||||
label: 'Salesperson',
|
|
||||||
name: 'salesPerson',
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
field: 'phone',
|
|
||||||
label: 'Phone',
|
|
||||||
name: 'phone',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
field: 'city',
|
field: 'city',
|
||||||
label: 'City',
|
label: t('City'),
|
||||||
name: 'city',
|
name: 'city',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
field: 'phone',
|
||||||
|
label: t('Phone'),
|
||||||
|
name: 'phone',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'left',
|
||||||
field: 'email',
|
field: 'email',
|
||||||
label: 'Email',
|
label: t('Email'),
|
||||||
name: 'email',
|
name: 'email',
|
||||||
},
|
},
|
||||||
]);
|
]);
|
||||||
|
|
||||||
|
const selectCustomerId = (id) => {
|
||||||
|
selectedCustomerId.value = id;
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<QDrawer v-model="stateStore.rightDrawer" side="right" :width="256" show-if-above>
|
<QDrawer v-model="stateStore.rightDrawer" side="right" :width="256" show-if-above>
|
||||||
<QScrollArea class="fit text-grey-8">
|
<QScrollArea class="fit text-grey-8">
|
||||||
<CustomerExtendedListFilter data-key="CustomerExtendedList" />
|
<CustomerNotificationsFilter data-key="CustomerNotifications" />
|
||||||
</QScrollArea>
|
</QScrollArea>
|
||||||
</QDrawer>
|
</QDrawer>
|
||||||
|
|
||||||
|
@ -111,22 +111,27 @@ const columns = ref([
|
||||||
<QPage class="column items-center q-pa-md">
|
<QPage class="column items-center q-pa-md">
|
||||||
<QTable
|
<QTable
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
|
:pagination="{ rowsPerPage: 0 }"
|
||||||
:rows="rows"
|
:rows="rows"
|
||||||
|
class="full-width q-mt-md"
|
||||||
hide-bottom
|
hide-bottom
|
||||||
row-key="id"
|
row-key="id"
|
||||||
:pagination="{ rowsPerPage: 0 }"
|
selection="multiple"
|
||||||
class="full-width q-mt-md"
|
v-model:selected="selected"
|
||||||
>
|
>
|
||||||
<template #body-cell="props">
|
<template #body-cell="props">
|
||||||
<QTd :props="props">
|
<QTd :props="props">
|
||||||
<component
|
<QTr :props="props" class="cursor-pointer">
|
||||||
:is="tableColumnComponents[props.col.name].component"
|
<component
|
||||||
class="col-content"
|
:is="tableColumnComponents[props.col.name].component"
|
||||||
v-bind="tableColumnComponents[props.col.name].props(props)"
|
class="col-content"
|
||||||
@click="tableColumnComponents[props.col.name].event(props)"
|
v-bind="tableColumnComponents[props.col.name].props(props)"
|
||||||
>
|
@click="tableColumnComponents[props.col.name].event(props)"
|
||||||
{{ props.value }}
|
>
|
||||||
</component>
|
{{ props.value }}
|
||||||
|
<CustomerDescriptorProxy :id="selectedCustomerId" />
|
||||||
|
</component>
|
||||||
|
</QTr>
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
</QTable>
|
</QTable>
|
||||||
|
@ -136,6 +141,16 @@ const columns = ref([
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.col-content {
|
.col-content {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
padding: 6px 6px 6px 6px;
|
padding: 6px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Identifier: Identificador
|
||||||
|
Social name: Razón social
|
||||||
|
Salesperson: Comercial
|
||||||
|
Phone: Teléfono
|
||||||
|
City: Población
|
||||||
|
Email: Email
|
||||||
|
</i18n>
|
|
@ -4,8 +4,8 @@ import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
import FetchData from 'components/FetchData.vue';
|
import FetchData from 'components/FetchData.vue';
|
||||||
import VnFilterPanel from 'src/components/ui/VnFilterPanel.vue';
|
import VnFilterPanel from 'src/components/ui/VnFilterPanel.vue';
|
||||||
import VnSelectFilter from 'components/common/VnSelectFilter.vue';
|
|
||||||
import VnInput from 'src/components/common/VnInput.vue';
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
|
import VnSelectFilter from 'components/common/VnSelectFilter.vue';
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
|
@ -15,23 +15,18 @@ const props = defineProps({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const cities = ref();
|
||||||
const clients = ref();
|
const clients = ref();
|
||||||
const workers = ref();
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<FetchData
|
<FetchData
|
||||||
url="Clients"
|
|
||||||
:filter="{ where: { role: 'socialName' } }"
|
:filter="{ where: { role: 'socialName' } }"
|
||||||
@on-fetch="(data) => (clients = data)"
|
@on-fetch="(data) => (clients = data)"
|
||||||
auto-load
|
auto-load
|
||||||
|
url="Clients"
|
||||||
/>
|
/>
|
||||||
<FetchData
|
<FetchData @on-fetch="(data) => (cities = data)" auto-load url="Towns" />
|
||||||
url="Workers/activeWithInheritedRole"
|
|
||||||
:filter="{ where: { role: 'salesPerson' } }"
|
|
||||||
@on-fetch="(data) => (workers = data)"
|
|
||||||
auto-load
|
|
||||||
/>
|
|
||||||
<VnFilterPanel :data-key="props.dataKey" :search-button="true">
|
<VnFilterPanel :data-key="props.dataKey" :search-button="true">
|
||||||
<template #tags="{ tag, formatFn }">
|
<template #tags="{ tag, formatFn }">
|
||||||
<div class="q-gutter-x-xs">
|
<div class="q-gutter-x-xs">
|
||||||
|
@ -39,79 +34,78 @@ const workers = ref();
|
||||||
<span>{{ formatFn(tag.value) }}</span>
|
<span>{{ formatFn(tag.value) }}</span>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template #body="{ params, searchFn }">
|
<template #body="{ params, searchFn }">
|
||||||
<QList dense class="list">
|
<QList dense class="list">
|
||||||
<QItem class="q-mb-sm q-mt-sm">
|
<QItem class="q-mb-sm q-mt-sm">
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
<VnInput
|
<VnInput
|
||||||
:label="t('Identifier')"
|
:label="t('Identifier')"
|
||||||
v-model="params.identifier"
|
|
||||||
is-outlined
|
is-outlined
|
||||||
|
v-model="params.identifier"
|
||||||
/>
|
/>
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
|
|
||||||
<QItem class="q-mb-sm">
|
<QItem class="q-mb-sm">
|
||||||
<QItemSection v-if="!clients">
|
<QItemSection v-if="!clients">
|
||||||
<QSkeleton type="QInput" class="full-width" />
|
<QSkeleton type="QInput" class="full-width" />
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
<QItemSection v-if="clients">
|
<QItemSection v-if="clients">
|
||||||
<VnSelectFilter
|
<VnSelectFilter
|
||||||
|
:input-debounce="0"
|
||||||
:label="t('Social name')"
|
:label="t('Social name')"
|
||||||
v-model="params.socialName"
|
|
||||||
@update:model-value="searchFn()"
|
|
||||||
:options="clients"
|
:options="clients"
|
||||||
option-value="id"
|
|
||||||
option-label="name"
|
|
||||||
emit-value
|
|
||||||
map-options
|
|
||||||
use-input
|
|
||||||
hide-selected
|
|
||||||
dense
|
|
||||||
outlined
|
|
||||||
rounded
|
|
||||||
:input-debounce="0"
|
|
||||||
/>
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
<QItem class="q-mb-sm">
|
|
||||||
<QItemSection v-if="!workers">
|
|
||||||
<QSkeleton type="QInput" class="full-width" />
|
|
||||||
</QItemSection>
|
|
||||||
<QItemSection v-if="workers">
|
|
||||||
<VnSelectFilter
|
|
||||||
:label="t('Salesperson')"
|
|
||||||
v-model="params.salesPerson"
|
|
||||||
@update:model-value="searchFn()"
|
@update:model-value="searchFn()"
|
||||||
:options="workers"
|
|
||||||
option-value="id"
|
|
||||||
option-label="name"
|
|
||||||
emit-value
|
|
||||||
map-options
|
|
||||||
use-input
|
|
||||||
hide-selected
|
|
||||||
dense
|
dense
|
||||||
|
emit-value
|
||||||
|
hide-selected
|
||||||
|
map-options
|
||||||
|
option-label="socialName"
|
||||||
|
option-value="socialName"
|
||||||
outlined
|
outlined
|
||||||
rounded
|
rounded
|
||||||
:input-debounce="0"
|
use-input
|
||||||
|
v-model="params.socialName"
|
||||||
/>
|
/>
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
<QItem class="q-mb-sm">
|
|
||||||
<QItemSection>
|
|
||||||
<VnInput :label="t('Phone')" v-model="params.phone" is-outlined />
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
<QItem class="q-mb-sm">
|
|
||||||
<QItemSection>
|
|
||||||
<VnInput :label="t('City')" v-model="params.city" is-outlined />
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
<QItem class="q-mb-sm">
|
|
||||||
<QItemSection>
|
|
||||||
<VnInput :label="t('Email')" v-model="params.email" is-outlined />
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
|
|
||||||
|
<QItem class="q-mb-sm">
|
||||||
|
<QItemSection v-if="!cities">
|
||||||
|
<QSkeleton type="QInput" class="full-width" />
|
||||||
|
</QItemSection>
|
||||||
|
<QItemSection v-if="cities">
|
||||||
|
<VnSelectFilter
|
||||||
|
:input-debounce="0"
|
||||||
|
:label="t('City')"
|
||||||
|
:options="cities"
|
||||||
|
@update:model-value="searchFn()"
|
||||||
|
dense
|
||||||
|
emit-value
|
||||||
|
hide-selected
|
||||||
|
map-options
|
||||||
|
option-label="name"
|
||||||
|
option-value="name"
|
||||||
|
outlined
|
||||||
|
rounded
|
||||||
|
use-input
|
||||||
|
v-model="params.city"
|
||||||
|
/>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
|
||||||
|
<QItem class="q-mb-sm">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInput :label="t('Phone')" is-outlined v-model="params.phone" />
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
|
||||||
|
<QItem class="q-mb-sm">
|
||||||
|
<QItemSection>
|
||||||
|
<VnInput :label="t('Email')" is-outlined v-model="params.email" />
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
<QSeparator />
|
<QSeparator />
|
||||||
</QList>
|
</QList>
|
||||||
</template>
|
</template>
|
||||||
|
@ -132,22 +126,19 @@ en:
|
||||||
params:
|
params:
|
||||||
identifier: Identifier
|
identifier: Identifier
|
||||||
socialName: Social name
|
socialName: Social name
|
||||||
salesPerson: Salesperson
|
|
||||||
phone: Phone
|
|
||||||
city: City
|
city: City
|
||||||
|
phone: Phone
|
||||||
email: Email
|
email: Email
|
||||||
es:
|
es:
|
||||||
params:
|
params:
|
||||||
identifier: Identificador
|
identifier: Identificador
|
||||||
socialName: Razón social
|
socialName: Razón social
|
||||||
salesPerson: Comercial
|
|
||||||
phone: Teléfono
|
|
||||||
city: Población
|
city: Población
|
||||||
|
phone: Teléfono
|
||||||
email: Email
|
email: Email
|
||||||
Identifier: Identificador
|
Identifier: Identificador
|
||||||
Social name: Razón social
|
Social name: Razón social
|
||||||
Salesperson: Comercial
|
|
||||||
Phone: Teléfono
|
|
||||||
City: Población
|
City: Población
|
||||||
|
Phone: Teléfono
|
||||||
Email: Email
|
Email: Email
|
||||||
</i18n>
|
</i18n>
|
|
@ -7,7 +7,7 @@ import { useStateStore } from 'stores/useStateStore';
|
||||||
import { useArrayData } from 'composables/useArrayData';
|
import { useArrayData } from 'composables/useArrayData';
|
||||||
import VnPaginate from 'components/ui/VnPaginate.vue';
|
import VnPaginate from 'components/ui/VnPaginate.vue';
|
||||||
import VnConfirm from 'components/ui/VnConfirm.vue';
|
import VnConfirm from 'components/ui/VnConfirm.vue';
|
||||||
import CustomerDescriptorProxy from './Card/CustomerDescriptorProxy.vue';
|
import CustomerDescriptorProxy from '../Card/CustomerDescriptorProxy.vue';
|
||||||
import { toDate, toCurrency } from 'filters/index';
|
import { toDate, toCurrency } from 'filters/index';
|
||||||
import CustomerPaymentsFilter from './CustomerPaymentsFilter.vue';
|
import CustomerPaymentsFilter from './CustomerPaymentsFilter.vue';
|
||||||
|
|
|
@ -0,0 +1,135 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
|
import FetchData from 'components/FetchData.vue';
|
||||||
|
import FormModel from 'components/FormModel.vue';
|
||||||
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
|
import VnSelectFilter from 'src/components/common/VnSelectFilter.vue';
|
||||||
|
|
||||||
|
const route = useRoute();
|
||||||
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
const workersOptions = ref([]);
|
||||||
|
const clientsOptions = ref([]);
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<fetch-data
|
||||||
|
url="Workers/search"
|
||||||
|
@on-fetch="(data) => (workersOptions = data)"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
<fetch-data url="Clients" @on-fetch="(data) => (clientsOptions = data)" auto-load />
|
||||||
|
<FormModel
|
||||||
|
:url="`Departments/${route.params.id}`"
|
||||||
|
model="department"
|
||||||
|
auto-load
|
||||||
|
class="full-width"
|
||||||
|
>
|
||||||
|
<template #form="{ data, validate }">
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<VnInput
|
||||||
|
:label="t('department.name')"
|
||||||
|
v-model="data.name"
|
||||||
|
:rules="validate('department.name')"
|
||||||
|
clearable
|
||||||
|
autofocus
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<VnInput
|
||||||
|
v-model="data.code"
|
||||||
|
:label="t('department.code')"
|
||||||
|
:rules="validate('department.code')"
|
||||||
|
clearable
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</VnRow>
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<VnInput
|
||||||
|
:label="t('department.chat')"
|
||||||
|
v-model="data.chatName"
|
||||||
|
:rules="validate('department.chat')"
|
||||||
|
clearable
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<VnInput
|
||||||
|
v-model="data.notificationEmail"
|
||||||
|
:label="t('department.email')"
|
||||||
|
:rules="validate('department.email')"
|
||||||
|
clearable
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</VnRow>
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="t('department.bossDepartment')"
|
||||||
|
v-model="data.workerFk"
|
||||||
|
:options="workersOptions"
|
||||||
|
option-value="id"
|
||||||
|
option-label="name"
|
||||||
|
hide-selected
|
||||||
|
map-options
|
||||||
|
:rules="validate('department.workerFk')"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="t('department.selfConsumptionCustomer')"
|
||||||
|
v-model="data.clientFk"
|
||||||
|
:options="clientsOptions"
|
||||||
|
option-value="id"
|
||||||
|
option-label="name"
|
||||||
|
hide-selected
|
||||||
|
map-options
|
||||||
|
:rules="validate('department.clientFk')"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</VnRow>
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<QCheckbox
|
||||||
|
:label="t('department.telework')"
|
||||||
|
v-model="data.isTeleworking"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<QCheckbox
|
||||||
|
:label="t('department.notifyOnErrors')"
|
||||||
|
v-model="data.hasToMistake"
|
||||||
|
:false-value="0"
|
||||||
|
:true-value="1"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</VnRow>
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<QCheckbox
|
||||||
|
:label="t('department.worksInProduction')"
|
||||||
|
v-model="data.isProduction"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="col">
|
||||||
|
<QCheckbox
|
||||||
|
:label="t('department.hasToRefill')"
|
||||||
|
v-model="data.hasToRefill"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</VnRow>
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<div class="col">
|
||||||
|
<QCheckbox
|
||||||
|
:label="t('department.hasToSendMail')"
|
||||||
|
v-model="data.hasToSendMail"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</VnRow>
|
||||||
|
</template>
|
||||||
|
</FormModel>
|
||||||
|
</template>
|
|
@ -0,0 +1,28 @@
|
||||||
|
<script setup>
|
||||||
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
|
import DepartmentDescriptor from 'pages/Department/Card/DepartmentDescriptor.vue';
|
||||||
|
import LeftMenu from 'components/LeftMenu.vue';
|
||||||
|
|
||||||
|
const stateStore = useStateStore();
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<QDrawer v-model="stateStore.leftDrawer" show-if-above :width="256">
|
||||||
|
<QScrollArea class="fit">
|
||||||
|
<DepartmentDescriptor />
|
||||||
|
<QSeparator />
|
||||||
|
<LeftMenu source="card" />
|
||||||
|
</QScrollArea>
|
||||||
|
</QDrawer>
|
||||||
|
<QPageContainer>
|
||||||
|
<QPage>
|
||||||
|
<QToolbar class="bg-vn-dark justify-end">
|
||||||
|
<div id="st-data"></div>
|
||||||
|
<QSpace />
|
||||||
|
<div id="st-actions"></div>
|
||||||
|
</QToolbar>
|
||||||
|
<div class="q-pa-md column items-center">
|
||||||
|
<RouterView></RouterView>
|
||||||
|
</div>
|
||||||
|
</QPage>
|
||||||
|
</QPageContainer>
|
||||||
|
</template>
|
|
@ -0,0 +1,129 @@
|
||||||
|
<script setup>
|
||||||
|
import { computed, ref } from 'vue';
|
||||||
|
import { useRoute, useRouter } from 'vue-router';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
|
||||||
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
|
import CardDescriptor from 'src/components/ui/CardDescriptor.vue';
|
||||||
|
import useCardDescription from 'src/composables/useCardDescription';
|
||||||
|
|
||||||
|
import axios from 'axios';
|
||||||
|
import useNotify from 'src/composables/useNotify.js';
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
id: {
|
||||||
|
type: Number,
|
||||||
|
required: false,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
summary: {
|
||||||
|
type: Object,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const quasar = useQuasar();
|
||||||
|
const route = useRoute();
|
||||||
|
const router = useRouter();
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const { notify } = useNotify();
|
||||||
|
|
||||||
|
const entityId = computed(() => {
|
||||||
|
return $props.id || route.params.id;
|
||||||
|
});
|
||||||
|
|
||||||
|
const department = ref();
|
||||||
|
|
||||||
|
const data = ref(useCardDescription());
|
||||||
|
|
||||||
|
const setData = (entity) => {
|
||||||
|
if (!entity) return;
|
||||||
|
data.value = useCardDescription(entity.name, entity.id);
|
||||||
|
};
|
||||||
|
|
||||||
|
const removeDepartment = () => {
|
||||||
|
console.log('entityId: ', entityId.value);
|
||||||
|
quasar
|
||||||
|
.dialog({
|
||||||
|
title: 'Are you sure you want to delete it?',
|
||||||
|
message: 'Delete department',
|
||||||
|
ok: {
|
||||||
|
push: true,
|
||||||
|
color: 'primary',
|
||||||
|
},
|
||||||
|
cancel: true,
|
||||||
|
})
|
||||||
|
.onOk(async () => {
|
||||||
|
try {
|
||||||
|
await axios.post(
|
||||||
|
`/Departments/${entityId.value}/removeChild`,
|
||||||
|
entityId.value
|
||||||
|
);
|
||||||
|
router.push({ name: 'WorkerDepartment' });
|
||||||
|
notify('department.departmentRemoved', 'positive');
|
||||||
|
} catch (err) {
|
||||||
|
console.log('Error removing department');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<CardDescriptor
|
||||||
|
module="Department"
|
||||||
|
data-key="departmentData"
|
||||||
|
:url="`Departments/${entityId}`"
|
||||||
|
:title="data.title"
|
||||||
|
:subtitle="data.subtitle"
|
||||||
|
:summary="$props.summary"
|
||||||
|
@on-fetch="
|
||||||
|
(data) => {
|
||||||
|
department = data;
|
||||||
|
setData(data);
|
||||||
|
}
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<template #menu="{}">
|
||||||
|
<QItem v-ripple clickable @click="removeDepartment()">
|
||||||
|
<QItemSection>{{ t('Delete') }}</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
</template>
|
||||||
|
<template #body="{ entity }">
|
||||||
|
<VnLv :label="t('department.chat')" :value="entity.chatName" dash />
|
||||||
|
<VnLv :label="t('department.email')" :value="entity.notificationEmail" dash />
|
||||||
|
<VnLv
|
||||||
|
:label="t('department.selfConsumptionCustomer')"
|
||||||
|
:value="entity.client?.name"
|
||||||
|
dash
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('department.bossDepartment')"
|
||||||
|
:value="entity.worker?.user?.name"
|
||||||
|
dash
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<template #actions>
|
||||||
|
<QCardActions>
|
||||||
|
<QBtn
|
||||||
|
size="md"
|
||||||
|
icon="vn:worker"
|
||||||
|
color="primary"
|
||||||
|
:to="{
|
||||||
|
name: 'WorkerList',
|
||||||
|
query: {
|
||||||
|
params: JSON.stringify({ departmentFk: entityId }),
|
||||||
|
},
|
||||||
|
}"
|
||||||
|
>
|
||||||
|
<QTooltip>{{ t('Department workers') }}</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
</QCardActions>
|
||||||
|
</template>
|
||||||
|
</CardDescriptor>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Department workers: Trabajadores del departamento
|
||||||
|
</i18n>
|
|
@ -0,0 +1,107 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref, onMounted, computed } from 'vue';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import CardSummary from 'components/ui/CardSummary.vue';
|
||||||
|
import { getUrl } from 'src/composables/getUrl';
|
||||||
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
|
|
||||||
|
const route = useRoute();
|
||||||
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
id: {
|
||||||
|
type: Number,
|
||||||
|
default: 0,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const entityId = computed(() => $props.id || route.params.id);
|
||||||
|
const departmentUrl = ref();
|
||||||
|
|
||||||
|
onMounted(async () => {
|
||||||
|
departmentUrl.value = (await getUrl('')) + `departments/${entityId.value}/`;
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<CardSummary
|
||||||
|
ref="summary"
|
||||||
|
:url="`Departments/${entityId}`"
|
||||||
|
class="full-width"
|
||||||
|
style="max-width: 900px"
|
||||||
|
>
|
||||||
|
<template #header="{ entity }">
|
||||||
|
<div>{{ entity.name }}</div>
|
||||||
|
</template>
|
||||||
|
<template #body="{ entity: department }">
|
||||||
|
<QCard class="column">
|
||||||
|
<a class="header" :href="department + `basic-data`">
|
||||||
|
{{ t('Basic data') }}
|
||||||
|
<QIcon name="open_in_new" color="primary" />
|
||||||
|
</a>
|
||||||
|
<div class="full-width row wrap justify-between content-between">
|
||||||
|
<div class="column" style="min-width: 50%">
|
||||||
|
<VnLv
|
||||||
|
:label="t('department.name')"
|
||||||
|
:value="department.name"
|
||||||
|
dash
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('department.code')"
|
||||||
|
:value="department.code"
|
||||||
|
dash
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('department.chat')"
|
||||||
|
:value="department.chatName"
|
||||||
|
dash
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('department.bossDepartment')"
|
||||||
|
:value="department.worker?.user?.name"
|
||||||
|
dash
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('department.email')"
|
||||||
|
:value="department.notificationEmail"
|
||||||
|
dash
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('department.selfConsumptionCustomer')"
|
||||||
|
:value="department.client?.name"
|
||||||
|
dash
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="column" style="min-width: 50%">
|
||||||
|
<VnLv
|
||||||
|
:label="t('department.telework')"
|
||||||
|
:value="department.isTeleworking"
|
||||||
|
dash
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('department.notifyOnErrors')"
|
||||||
|
:value="Boolean(department.hasToMistake)"
|
||||||
|
dash
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('department.worksInProduction')"
|
||||||
|
:value="department.isProduction"
|
||||||
|
dash
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('department.hasToRefill')"
|
||||||
|
:value="department.hasToRefill"
|
||||||
|
dash
|
||||||
|
/>
|
||||||
|
<VnLv
|
||||||
|
:label="t('department.hasToSendMail')"
|
||||||
|
:value="department.hasToSendMail"
|
||||||
|
dash
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</QCard>
|
||||||
|
</template>
|
||||||
|
</CardSummary>
|
||||||
|
</template>
|
|
@ -0,0 +1,26 @@
|
||||||
|
<script setup>
|
||||||
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
|
import LeftMenu from 'components/LeftMenu.vue';
|
||||||
|
|
||||||
|
const stateStore = useStateStore();
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<!-- Entry searchbar -->
|
||||||
|
<QDrawer v-model="stateStore.leftDrawer" show-if-above :width="256">
|
||||||
|
<QScrollArea class="fit">
|
||||||
|
<!-- EntryDescriptor -->
|
||||||
|
<QSeparator />
|
||||||
|
<LeftMenu source="card" />
|
||||||
|
</QScrollArea>
|
||||||
|
</QDrawer>
|
||||||
|
<QPageContainer>
|
||||||
|
<QPage>
|
||||||
|
<QToolbar class="bg-vn-dark justify-end">
|
||||||
|
<div id="st-data"></div>
|
||||||
|
<QSpace />
|
||||||
|
<div id="st-actions"></div>
|
||||||
|
</QToolbar>
|
||||||
|
<div class="q-pa-md"><RouterView></RouterView></div>
|
||||||
|
</QPage>
|
||||||
|
</QPageContainer>
|
||||||
|
</template>
|
|
@ -0,0 +1,138 @@
|
||||||
|
<script setup>
|
||||||
|
import { reactive, ref } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
|
||||||
|
import FormModel from 'components/FormModel.vue';
|
||||||
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
|
import VnSelectFilter from 'src/components/common/VnSelectFilter.vue';
|
||||||
|
import FetchData from 'components/FetchData.vue';
|
||||||
|
|
||||||
|
import { toDate } from 'src/filters';
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const route = useRoute();
|
||||||
|
|
||||||
|
const newEntryForm = reactive({
|
||||||
|
supplierFk: null,
|
||||||
|
travelFk: route.query?.travelFk || null,
|
||||||
|
companyFk: null,
|
||||||
|
});
|
||||||
|
|
||||||
|
const suppliersOptions = ref([]);
|
||||||
|
const travelsOptionsOptions = ref([]);
|
||||||
|
const companiesOptions = ref([]);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<FetchData
|
||||||
|
url="Suppliers"
|
||||||
|
:filter="{ fields: ['id', 'nickname'] }"
|
||||||
|
order="nickname"
|
||||||
|
@on-fetch="(data) => (suppliersOptions = data)"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
url="Travels/filter"
|
||||||
|
:filter="{ fields: ['id', 'warehouseInName'] }"
|
||||||
|
order="id"
|
||||||
|
@on-fetch="(data) => (travelsOptionsOptions = data)"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
ref="companiesRef"
|
||||||
|
url="Companies"
|
||||||
|
:filter="{ fields: ['id', 'code'] }"
|
||||||
|
order="code"
|
||||||
|
@on-fetch="(data) => (companiesOptions = data)"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
|
||||||
|
<!-- Agregar searchbar de entries -->
|
||||||
|
|
||||||
|
<QPage>
|
||||||
|
<QToolbar class="bg-vn-dark justify-end">
|
||||||
|
<div id="st-data"></div>
|
||||||
|
<QSpace />
|
||||||
|
<div id="st-actions"></div>
|
||||||
|
</QToolbar>
|
||||||
|
<FormModel url-create="Entries" model="entry" :form-initial-data="newEntryForm">
|
||||||
|
<template #form="{ data, validate }">
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="t('Supplier')"
|
||||||
|
class="full-width"
|
||||||
|
v-model="data.supplierFk"
|
||||||
|
:options="suppliersOptions"
|
||||||
|
option-value="id"
|
||||||
|
option-label="nickname"
|
||||||
|
hide-selected
|
||||||
|
:required="true"
|
||||||
|
:rules="validate('entry.supplierFk')"
|
||||||
|
>
|
||||||
|
<template #option="scope">
|
||||||
|
<QItem v-bind="scope.itemProps">
|
||||||
|
<QItemSection>
|
||||||
|
<QItemLabel>{{ scope.opt?.nickname }}</QItemLabel>
|
||||||
|
<QItemLabel caption>
|
||||||
|
#{{ scope.opt?.id }}
|
||||||
|
</QItemLabel>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
</template>
|
||||||
|
</VnSelectFilter>
|
||||||
|
</VnRow>
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="t('Travel')"
|
||||||
|
class="full-width"
|
||||||
|
v-model="data.travelFk"
|
||||||
|
:options="travelsOptionsOptions"
|
||||||
|
option-value="id"
|
||||||
|
option-label="warehouseInName"
|
||||||
|
map-options
|
||||||
|
hide-selected
|
||||||
|
:required="true"
|
||||||
|
:rules="validate('entry.travelFk')"
|
||||||
|
>
|
||||||
|
<template #option="scope">
|
||||||
|
<QItem v-bind="scope.itemProps">
|
||||||
|
<QItemSection>
|
||||||
|
<QItemLabel
|
||||||
|
>{{ scope.opt?.agencyModeName }} -
|
||||||
|
{{ scope.opt?.warehouseInName }} ({{
|
||||||
|
toDate(scope.opt?.shipped)
|
||||||
|
}}) → {{ scope.opt?.warehouseOutName }} ({{
|
||||||
|
toDate(scope.opt?.landed)
|
||||||
|
}})</QItemLabel
|
||||||
|
>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
</template>
|
||||||
|
</VnSelectFilter>
|
||||||
|
</VnRow>
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<VnSelectFilter
|
||||||
|
:label="t('Company')"
|
||||||
|
class="full-width"
|
||||||
|
v-model="data.companyFk"
|
||||||
|
:options="companiesOptions"
|
||||||
|
option-value="id"
|
||||||
|
option-label="code"
|
||||||
|
map-options
|
||||||
|
hide-selected
|
||||||
|
:required="true"
|
||||||
|
:rules="validate('entry.companyFk')"
|
||||||
|
/>
|
||||||
|
</VnRow>
|
||||||
|
</template>
|
||||||
|
</FormModel>
|
||||||
|
</QPage>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Supplier: Proveedor
|
||||||
|
Travel: Envío
|
||||||
|
Company: Empresa
|
||||||
|
</i18n>
|
|
@ -0,0 +1,22 @@
|
||||||
|
<script setup>
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useRouter } from 'vue-router';
|
||||||
|
|
||||||
|
const router = useRouter();
|
||||||
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
const redirectToCreateView = () => {
|
||||||
|
router.push({ name: 'EntryCreate' });
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<QPage class="column items-center q-pa-md">
|
||||||
|
<QPageSticky :offset="[20, 20]">
|
||||||
|
<QBtn fab icon="add" color="primary" @click="redirectToCreateView()" />
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('entry.list.newEntry') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QPageSticky>
|
||||||
|
</QPage>
|
||||||
|
</template>
|
|
@ -0,0 +1,17 @@
|
||||||
|
<script setup>
|
||||||
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
|
import LeftMenu from 'src/components/LeftMenu.vue';
|
||||||
|
|
||||||
|
const stateStore = useStateStore();
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<QDrawer v-model="stateStore.leftDrawer" show-if-above :width="256">
|
||||||
|
<QScrollArea class="fit text-grey-8">
|
||||||
|
<LeftMenu />
|
||||||
|
</QScrollArea>
|
||||||
|
</QDrawer>
|
||||||
|
<QPageContainer>
|
||||||
|
<RouterView></RouterView>
|
||||||
|
</QPageContainer>
|
||||||
|
</template>
|
|
@ -49,30 +49,28 @@ const tableColumnComponents = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const columns = computed(() => {
|
const columns = computed(() => [
|
||||||
return [
|
{ label: 'Id', field: 'clientId', name: 'clientId', align: 'left' },
|
||||||
{ label: 'Id', field: 'clientId', name: 'clientId', align: 'left' },
|
{
|
||||||
{
|
label: t('invoiceOut.globalInvoices.table.client'),
|
||||||
label: t('invoiceOut.globalInvoices.table.client'),
|
field: 'clientName',
|
||||||
field: 'clientName',
|
name: 'clientName',
|
||||||
name: 'clientName',
|
align: 'left',
|
||||||
align: 'left',
|
},
|
||||||
},
|
{
|
||||||
{
|
label: t('invoiceOut.globalInvoices.table.addressId'),
|
||||||
label: t('invoiceOut.globalInvoices.table.addressId'),
|
field: 'id',
|
||||||
field: 'id',
|
name: 'id',
|
||||||
name: 'id',
|
align: 'left',
|
||||||
align: 'left',
|
},
|
||||||
},
|
{
|
||||||
{
|
label: t('invoiceOut.globalInvoices.table.streetAddress'),
|
||||||
label: t('invoiceOut.globalInvoices.table.streetAddress'),
|
field: 'nickname',
|
||||||
field: 'nickname',
|
name: 'nickname',
|
||||||
name: 'nickname',
|
align: 'left',
|
||||||
align: 'left',
|
},
|
||||||
},
|
{ label: 'Error', field: 'message', name: 'message', align: 'left' },
|
||||||
{ label: 'Error', field: 'message', name: 'message', align: 'left' },
|
]);
|
||||||
];
|
|
||||||
});
|
|
||||||
|
|
||||||
const rows = computed(() => {
|
const rows = computed(() => {
|
||||||
if (!errors && !errors.length > 0) return [];
|
if (!errors && !errors.length > 0) return [];
|
||||||
|
@ -175,7 +173,7 @@ onUnmounted(() => {
|
||||||
|
|
||||||
.col-content {
|
.col-content {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
padding: 6px 6px 6px 6px;
|
padding: 6px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
|
@ -255,7 +255,7 @@ const selectWorkerId = (id) => {
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.col-content {
|
.col-content {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
padding: 6px 6px 6px 6px;
|
padding: 6px;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
|
@ -93,6 +93,8 @@ function exprBuilder(param, value) {
|
||||||
case 'categoryFk':
|
case 'categoryFk':
|
||||||
case 'typeFk':
|
case 'typeFk':
|
||||||
return { [param]: value };
|
return { [param]: value };
|
||||||
|
case 'search':
|
||||||
|
return { 'i.name': { like: `%${value}%` } };
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -141,24 +143,25 @@ const onOrderChange = (value, params, search) => {
|
||||||
params.orderBy = JSON.stringify(orderBy);
|
params.orderBy = JSON.stringify(orderBy);
|
||||||
search();
|
search();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const setCategoryList = (data) => {
|
||||||
|
categoryList.value = (data || [])
|
||||||
|
.filter((category) => category.display)
|
||||||
|
.map((category) => ({
|
||||||
|
...category,
|
||||||
|
icon: `vn:${(category.icon || '').split('-')[1]}`,
|
||||||
|
}));
|
||||||
|
};
|
||||||
|
|
||||||
|
const getCategoryClass = (category, params) => {
|
||||||
|
if (category.id === params?.categoryFk) {
|
||||||
|
return 'active';
|
||||||
|
}
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<FetchData
|
<FetchData url="ItemCategories" limit="30" auto-load @on-fetch="setCategoryList" />
|
||||||
url="ItemCategories"
|
|
||||||
limit="30"
|
|
||||||
auto-load
|
|
||||||
@on-fetch="
|
|
||||||
(data) => {
|
|
||||||
categoryList = (data || [])
|
|
||||||
.filter((category) => category.display)
|
|
||||||
.map((category) => ({
|
|
||||||
...category,
|
|
||||||
icon: `vn:${(category.icon || '').split('-')[1]}`,
|
|
||||||
}));
|
|
||||||
}
|
|
||||||
"
|
|
||||||
/>
|
|
||||||
<VnFilterPanel
|
<VnFilterPanel
|
||||||
:data-key="props.dataKey"
|
:data-key="props.dataKey"
|
||||||
:hidden-tags="['orderFk', 'orderBy']"
|
:hidden-tags="['orderFk', 'orderBy']"
|
||||||
|
@ -204,10 +207,7 @@ const onOrderChange = (value, params, search) => {
|
||||||
<div
|
<div
|
||||||
v-for="category in categoryList"
|
v-for="category in categoryList"
|
||||||
:key="category.name"
|
:key="category.name"
|
||||||
:class="[
|
:class="['category', getCategoryClass(category, params)]"
|
||||||
'category',
|
|
||||||
category.id === params?.categoryFk && 'active',
|
|
||||||
]"
|
|
||||||
>
|
>
|
||||||
<QIcon
|
<QIcon
|
||||||
:name="category.icon"
|
:name="category.icon"
|
||||||
|
|
|
@ -6,6 +6,8 @@ import OrderCatalogItemDialog from 'pages/Order/Card/OrderCatalogItemDialog.vue'
|
||||||
import toCurrency from '../../../filters/toCurrency';
|
import toCurrency from '../../../filters/toCurrency';
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
const DEFAULT_PRICE_KG = 0;
|
||||||
|
|
||||||
const session = useSession();
|
const session = useSession();
|
||||||
const token = session.getToken();
|
const token = session.getToken();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
@ -70,7 +72,7 @@ const dialog = ref(null);
|
||||||
</QIcon>
|
</QIcon>
|
||||||
</div>
|
</div>
|
||||||
<p v-if="item.priceKg" class="price-kg">
|
<p v-if="item.priceKg" class="price-kg">
|
||||||
{{ t('price-kg') }} {{ toCurrency(item.priceKg) || 1123 }}
|
{{ t('price-kg') }} {{ toCurrency(item.priceKg) || DEFAULT_PRICE_KG }}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -45,8 +45,7 @@ const addToOrder = async () => {
|
||||||
class="link"
|
class="link"
|
||||||
@click="
|
@click="
|
||||||
() => {
|
() => {
|
||||||
item.quantity =
|
item.quantity += item.grouping;
|
||||||
Number(item.quantity) + item.grouping;
|
|
||||||
}
|
}
|
||||||
"
|
"
|
||||||
>
|
>
|
||||||
|
@ -56,7 +55,7 @@ const addToOrder = async () => {
|
||||||
</td>
|
</td>
|
||||||
<td class="text-right">
|
<td class="text-right">
|
||||||
<QInput
|
<QInput
|
||||||
v-model="item.quantity"
|
v-model.number="item.quantity"
|
||||||
type="number"
|
type="number"
|
||||||
:step="item.grouping"
|
:step="item.grouping"
|
||||||
min="0"
|
min="0"
|
||||||
|
|
|
@ -9,8 +9,10 @@ import useCardDescription from 'src/composables/useCardDescription';
|
||||||
import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue';
|
import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue';
|
||||||
import CardDescriptor from 'components/ui/CardDescriptor.vue';
|
import CardDescriptor from 'components/ui/CardDescriptor.vue';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
import OrderDescriptorMenu from "pages/Order/Card/OrderDescriptorMenu.vue";
|
import OrderDescriptorMenu from 'pages/Order/Card/OrderDescriptorMenu.vue';
|
||||||
import FetchData from "components/FetchData.vue";
|
import FetchData from 'components/FetchData.vue';
|
||||||
|
|
||||||
|
const DEFAULT_ITEMS = 0;
|
||||||
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
id: {
|
id: {
|
||||||
|
@ -61,6 +63,11 @@ const setData = (entity) => {
|
||||||
data.value = useCardDescription(entity.client.name, entity.id);
|
data.value = useCardDescription(entity.client.name, entity.id);
|
||||||
state.set('ClaimDescriptor', entity);
|
state.set('ClaimDescriptor', entity);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const getConfirmationValue = (isConfirmed) => {
|
||||||
|
return t(isConfirmed ? 'order.summary.confirmed' : 'order.summary.notConfirmed');
|
||||||
|
};
|
||||||
|
|
||||||
const total = ref(null);
|
const total = ref(null);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -86,13 +93,7 @@ const total = ref(null);
|
||||||
<template #body="{ entity }">
|
<template #body="{ entity }">
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('order.summary.state')"
|
:label="t('order.summary.state')"
|
||||||
:value="
|
:value="getConfirmationValue(entity.isConfirmed)"
|
||||||
t(
|
|
||||||
entity.isConfirmed
|
|
||||||
? 'order.summary.confirmed'
|
|
||||||
: 'order.summary.notConfirmed'
|
|
||||||
)
|
|
||||||
"
|
|
||||||
/>
|
/>
|
||||||
<VnLv :label="t('order.field.salesPersonFk')">
|
<VnLv :label="t('order.field.salesPersonFk')">
|
||||||
<template #value>
|
<template #value>
|
||||||
|
@ -105,7 +106,10 @@ const total = ref(null);
|
||||||
<VnLv :label="t('order.summary.landed')" :value="toDate(entity?.landed)" />
|
<VnLv :label="t('order.summary.landed')" :value="toDate(entity?.landed)" />
|
||||||
<VnLv :label="t('order.field.agency')" :value="entity?.agencyMode?.name" />
|
<VnLv :label="t('order.field.agency')" :value="entity?.agencyMode?.name" />
|
||||||
<VnLv :label="t('order.summary.alias')" :value="entity?.address?.nickname" />
|
<VnLv :label="t('order.summary.alias')" :value="entity?.address?.nickname" />
|
||||||
<VnLv :label="t('order.summary.items')" :value="(entity?.rows?.length || 0).toString()" />
|
<VnLv
|
||||||
|
:label="t('order.summary.items')"
|
||||||
|
:value="(entity?.rows?.length || DEFAULT_ITEMS).toString()"
|
||||||
|
/>
|
||||||
<VnLv :label="t('order.summary.total')" :value="toCurrency(total)" />
|
<VnLv :label="t('order.summary.total')" :value="toCurrency(total)" />
|
||||||
</template>
|
</template>
|
||||||
<template #actions="{ entity }">
|
<template #actions="{ entity }">
|
||||||
|
|
|
@ -9,17 +9,14 @@ const { t } = useI18n();
|
||||||
<VnSearchbar
|
<VnSearchbar
|
||||||
data-key="OrderList"
|
data-key="OrderList"
|
||||||
url="Orders/filter"
|
url="Orders/filter"
|
||||||
:label="t('search-order')"
|
:label="t('Search order')"
|
||||||
:info="t('search-order-info')"
|
:info="t('You can search orders by reference')"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped lang="scss"></style>
|
<style scoped lang="scss"></style>
|
||||||
<i18n>
|
<i18n>
|
||||||
en:
|
|
||||||
search-order: Search order
|
|
||||||
search-order-info: You can search orders by reference
|
|
||||||
es:
|
es:
|
||||||
Search shelving: Buscar orden
|
Search order: Buscar orden
|
||||||
You can search by shelving reference: Puedes buscar por referencia de la orden
|
You can search orders by reference: Puedes buscar por referencia de la orden
|
||||||
</i18n>
|
</i18n>
|
||||||
|
|
|
@ -78,7 +78,7 @@ const detailsColumns = ref([
|
||||||
/>
|
/>
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('order.summary.confirmed')"
|
:label="t('order.summary.confirmed')"
|
||||||
:value="entity?.isConfirmed === 1"
|
:value="Boolean(entity?.isConfirmed)"
|
||||||
/>
|
/>
|
||||||
</QCard>
|
</QCard>
|
||||||
<QCard class="vn-one">
|
<QCard class="vn-one">
|
||||||
|
|
|
@ -22,13 +22,6 @@ const catalogParams = {
|
||||||
|
|
||||||
const tags = ref([])
|
const tags = ref([])
|
||||||
|
|
||||||
function exprBuilder(param, value) {
|
|
||||||
switch (param) {
|
|
||||||
case 'search':
|
|
||||||
return { 'i.name': { like: `%${value}%` } };
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function extractTags(items) {
|
function extractTags(items) {
|
||||||
const resultTags = [];
|
const resultTags = [];
|
||||||
(items || []).forEach((item) => {
|
(items || []).forEach((item) => {
|
||||||
|
@ -52,8 +45,8 @@ function extractTags(items) {
|
||||||
url="Orders/CatalogFilter"
|
url="Orders/CatalogFilter"
|
||||||
:limit="50"
|
:limit="50"
|
||||||
:user-params="catalogParams"
|
:user-params="catalogParams"
|
||||||
:expr-builder="exprBuilder"
|
|
||||||
:static-params="['orderFk', 'orderBy']"
|
:static-params="['orderFk', 'orderBy']"
|
||||||
|
:redirect="false"
|
||||||
/>
|
/>
|
||||||
</Teleport>
|
</Teleport>
|
||||||
<Teleport v-if="stateStore.isHeaderMounted()" to="#actions-append">
|
<Teleport v-if="stateStore.isHeaderMounted()" to="#actions-append">
|
||||||
|
|
|
@ -1,17 +1,19 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
|
||||||
import VnPaginate from 'components/ui/VnPaginate.vue';
|
import VnPaginate from 'components/ui/VnPaginate.vue';
|
||||||
import FetchData from 'components/FetchData.vue';
|
import FetchData from 'components/FetchData.vue';
|
||||||
import VnLv from 'components/ui/VnLv.vue';
|
import VnLv from 'components/ui/VnLv.vue';
|
||||||
import { ref } from 'vue';
|
|
||||||
import { toCurrency, toDate } from 'src/filters';
|
|
||||||
import CardList from 'components/ui/CardList.vue';
|
import CardList from 'components/ui/CardList.vue';
|
||||||
import FetchedTags from 'components/ui/FetchedTags.vue';
|
import FetchedTags from 'components/ui/FetchedTags.vue';
|
||||||
import { useSession } from 'composables/useSession';
|
|
||||||
import VnConfirm from 'components/ui/VnConfirm.vue';
|
import VnConfirm from 'components/ui/VnConfirm.vue';
|
||||||
|
|
||||||
|
import { toCurrency, toDate } from 'src/filters';
|
||||||
|
import { useSession } from 'composables/useSession';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import { useQuasar } from 'quasar';
|
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
|
@ -1,15 +1,17 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
import VnPaginate from 'components/ui/VnPaginate.vue';
|
import VnPaginate from 'components/ui/VnPaginate.vue';
|
||||||
import FetchData from 'components/FetchData.vue';
|
import FetchData from 'components/FetchData.vue';
|
||||||
import VnLv from 'components/ui/VnLv.vue';
|
import VnLv from 'components/ui/VnLv.vue';
|
||||||
import { ref } from 'vue';
|
|
||||||
import { dashIfEmpty } from 'src/filters';
|
|
||||||
import CardList from 'components/ui/CardList.vue';
|
import CardList from 'components/ui/CardList.vue';
|
||||||
import axios from 'axios';
|
|
||||||
import FetchedTags from 'components/ui/FetchedTags.vue';
|
import FetchedTags from 'components/ui/FetchedTags.vue';
|
||||||
|
|
||||||
|
import { dashIfEmpty } from 'src/filters';
|
||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const volumeSummary = ref(null);
|
const volumeSummary = ref(null);
|
||||||
|
|
|
@ -150,7 +150,7 @@ function downloadPdfs() {
|
||||||
<QIcon
|
<QIcon
|
||||||
name="visibility"
|
name="visibility"
|
||||||
color="primary"
|
color="primary"
|
||||||
size="2em"
|
size="md"
|
||||||
class="q-mr-sm q-ml-sm"
|
class="q-mr-sm q-ml-sm"
|
||||||
/>
|
/>
|
||||||
<QTooltip>
|
<QTooltip>
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
<template>Supplier accounts</template>
|
|
@ -0,0 +1 @@
|
||||||
|
<template>Supplier addresses</template>
|
|
@ -0,0 +1 @@
|
||||||
|
<template>Supplier agency term</template>
|
|
@ -0,0 +1 @@
|
||||||
|
<template>Supplier basic data</template>
|
|
@ -0,0 +1 @@
|
||||||
|
<template>Supplier billing data</template>
|
|
@ -2,6 +2,8 @@
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useStateStore } from 'stores/useStateStore';
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
||||||
|
import LeftMenu from 'components/LeftMenu.vue';
|
||||||
|
import SupplierDescriptor from './SupplierDescriptor.vue';
|
||||||
|
|
||||||
const stateStore = useStateStore();
|
const stateStore = useStateStore();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
@ -18,7 +20,9 @@ const { t } = useI18n();
|
||||||
</template>
|
</template>
|
||||||
<QDrawer v-model="stateStore.leftDrawer" show-if-above :width="256">
|
<QDrawer v-model="stateStore.leftDrawer" show-if-above :width="256">
|
||||||
<QScrollArea class="fit">
|
<QScrollArea class="fit">
|
||||||
<!-- Aca iría left menu y descriptor -->
|
<SupplierDescriptor />
|
||||||
|
<QSeparator />
|
||||||
|
<LeftMenu source="card" />
|
||||||
</QScrollArea>
|
</QScrollArea>
|
||||||
</QDrawer>
|
</QDrawer>
|
||||||
<QPageContainer>
|
<QPageContainer>
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
<template>Supplier consumption</template>
|
|
@ -0,0 +1 @@
|
||||||
|
<template>Supplier contacts</template>
|
|
@ -0,0 +1 @@
|
||||||
|
<template>Supplier fiscal data</template>
|
|
@ -0,0 +1 @@
|
||||||
|
<template>Supplier log</template>
|
|
@ -53,7 +53,7 @@ const isAdministrative = computed(() => {
|
||||||
>
|
>
|
||||||
<template #header-left>
|
<template #header-left>
|
||||||
<a v-if="isAdministrative" class="header link" :href="supplierUrl">
|
<a v-if="isAdministrative" class="header link" :href="supplierUrl">
|
||||||
<QIcon name="open_in_new" color="white" size="25px" />
|
<QIcon name="open_in_new" color="white" size="sm" />
|
||||||
</a>
|
</a>
|
||||||
</template>
|
</template>
|
||||||
<template #header>
|
<template #header>
|
||||||
|
|
|
@ -51,13 +51,3 @@ const newSupplierForm = reactive({
|
||||||
</FormModel>
|
</FormModel>
|
||||||
</QPage>
|
</QPage>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.card {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
width: 100%;
|
|
||||||
background-color: var(--vn-dark);
|
|
||||||
padding: 40px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
|
@ -2,15 +2,17 @@
|
||||||
import { onMounted, ref, computed, onUpdated } from 'vue';
|
import { onMounted, ref, computed, onUpdated } 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 { QCheckbox, QIcon } from 'quasar';
|
||||||
import CardSummary from 'components/ui/CardSummary.vue';
|
import CardSummary from 'components/ui/CardSummary.vue';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
import { getUrl } from 'src/composables/getUrl';
|
|
||||||
import { toDate } from 'src/filters';
|
|
||||||
import travelService from 'src/services/travel.service';
|
|
||||||
import { QCheckbox, QIcon } from 'quasar';
|
|
||||||
import { toCurrency } from 'filters/index';
|
|
||||||
import VnRow from 'components/ui/VnRow.vue';
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
|
|
||||||
|
import travelService from 'src/services/travel.service';
|
||||||
|
import { toDate, toCurrency } from 'src/filters';
|
||||||
|
import { getUrl } from 'src/composables/getUrl';
|
||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
onUpdated(() => summaryRef.value.fetch());
|
onUpdated(() => summaryRef.value.fetch());
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
@ -40,9 +42,17 @@ const cloneTravel = () => {
|
||||||
redirectToCreateView(stringifiedTravelData);
|
redirectToCreateView(stringifiedTravelData);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const cloneTravelWithEntries = () => {
|
||||||
|
try {
|
||||||
|
axios.post(`Travels/${$props.id}/cloneWithEntries`);
|
||||||
|
} catch (err) {
|
||||||
|
console.err('Error cloning travel with entries');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const headerMenuOptions = [
|
const headerMenuOptions = [
|
||||||
{ name: t('travel.summary.cloneShipping'), action: cloneTravel },
|
{ name: t('travel.summary.cloneShipping'), action: cloneTravel },
|
||||||
{ name: t('travel.summary.CloneTravelAndEntries'), action: null },
|
{ name: t('travel.summary.CloneTravelAndEntries'), action: cloneTravelWithEntries },
|
||||||
{ name: t('travel.summary.AddEntry'), action: null },
|
{ name: t('travel.summary.AddEntry'), action: null },
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -185,7 +195,7 @@ const openEntryDescriptor = () => {};
|
||||||
>
|
>
|
||||||
<template #header-left>
|
<template #header-left>
|
||||||
<a class="header link" :href="travelUrl">
|
<a class="header link" :href="travelUrl">
|
||||||
<QIcon name="open_in_new" color="white" size="25px" />
|
<QIcon name="open_in_new" color="white" size="sm" />
|
||||||
</a>
|
</a>
|
||||||
</template>
|
</template>
|
||||||
<template #header>
|
<template #header>
|
||||||
|
|
|
@ -103,111 +103,109 @@ const tableColumnComponents = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
const columns = computed(() => {
|
const columns = computed(() => [
|
||||||
return [
|
{
|
||||||
{
|
label: 'id',
|
||||||
label: 'id',
|
field: 'id',
|
||||||
field: 'id',
|
name: 'id',
|
||||||
name: 'id',
|
align: 'left',
|
||||||
align: 'left',
|
showValue: true,
|
||||||
showValue: true,
|
},
|
||||||
},
|
{
|
||||||
{
|
label: t('supplier.pageTitles.supplier'),
|
||||||
label: t('supplier.pageTitles.supplier'),
|
field: 'cargoSupplierNickname',
|
||||||
field: 'cargoSupplierNickname',
|
name: 'cargoSupplierNickname',
|
||||||
name: 'cargoSupplierNickname',
|
align: 'left',
|
||||||
align: 'left',
|
showValue: true,
|
||||||
showValue: true,
|
},
|
||||||
},
|
{
|
||||||
{
|
label: t('globals.agency'),
|
||||||
label: t('globals.agency'),
|
field: 'agencyModeName',
|
||||||
field: 'agencyModeName',
|
name: 'agencyModeName',
|
||||||
name: 'agencyModeName',
|
align: 'left',
|
||||||
align: 'left',
|
showValue: true,
|
||||||
showValue: true,
|
},
|
||||||
},
|
{
|
||||||
{
|
label: t('globals.amount'),
|
||||||
label: t('globals.amount'),
|
name: 'invoiceAmount',
|
||||||
name: 'invoiceAmount',
|
field: 'entries',
|
||||||
field: 'entries',
|
align: 'left',
|
||||||
align: 'left',
|
showValue: true,
|
||||||
showValue: true,
|
format: (value) =>
|
||||||
format: (value) =>
|
toCurrency(
|
||||||
toCurrency(
|
value
|
||||||
value
|
? value.reduce((sum, entry) => {
|
||||||
? value.reduce((sum, entry) => {
|
return sum + (entry.invoiceAmount || 0);
|
||||||
return sum + (entry.invoiceAmount || 0);
|
}, 0)
|
||||||
}, 0)
|
: 0
|
||||||
: 0
|
),
|
||||||
),
|
},
|
||||||
},
|
{
|
||||||
{
|
label: t('globals.reference'),
|
||||||
label: t('globals.reference'),
|
field: 'ref',
|
||||||
field: 'ref',
|
name: 'ref',
|
||||||
name: 'ref',
|
align: 'left',
|
||||||
align: 'left',
|
showValue: false,
|
||||||
showValue: false,
|
},
|
||||||
},
|
{
|
||||||
{
|
label: t('globals.packages'),
|
||||||
label: t('globals.packages'),
|
field: 'stickers',
|
||||||
field: 'stickers',
|
name: 'stickers',
|
||||||
name: 'stickers',
|
align: 'left',
|
||||||
align: 'left',
|
showValue: true,
|
||||||
showValue: true,
|
},
|
||||||
},
|
{
|
||||||
{
|
label: t('kg'),
|
||||||
label: t('kg'),
|
field: 'kg',
|
||||||
field: 'kg',
|
name: 'kg',
|
||||||
name: 'kg',
|
align: 'left',
|
||||||
align: 'left',
|
showValue: true,
|
||||||
showValue: true,
|
},
|
||||||
},
|
{
|
||||||
{
|
label: t('physicKg'),
|
||||||
label: t('physicKg'),
|
field: 'loadedKg',
|
||||||
field: 'loadedKg',
|
name: 'loadedKg',
|
||||||
name: 'loadedKg',
|
align: 'left',
|
||||||
align: 'left',
|
showValue: true,
|
||||||
showValue: true,
|
},
|
||||||
},
|
{
|
||||||
{
|
label: 'KG Vol.',
|
||||||
label: 'KG Vol.',
|
field: 'volumeKg',
|
||||||
field: 'volumeKg',
|
name: 'volumeKg',
|
||||||
name: 'volumeKg',
|
align: 'left',
|
||||||
align: 'left',
|
showValue: true,
|
||||||
showValue: true,
|
},
|
||||||
},
|
{
|
||||||
{
|
label: t('globals.wareHouseOut'),
|
||||||
label: t('globals.wareHouseOut'),
|
field: 'warehouseOutName',
|
||||||
field: 'warehouseOutName',
|
name: 'warehouseOutName',
|
||||||
name: 'warehouseOutName',
|
align: 'left',
|
||||||
align: 'left',
|
showValue: true,
|
||||||
showValue: true,
|
},
|
||||||
},
|
{
|
||||||
{
|
label: t('shipped'),
|
||||||
label: t('shipped'),
|
field: 'shipped',
|
||||||
field: 'shipped',
|
name: 'shipped',
|
||||||
name: 'shipped',
|
align: 'left',
|
||||||
align: 'left',
|
format: (value) => toDate(value.substring(0, 10)),
|
||||||
format: (value) => toDate(value.substring(0, 10)),
|
showValue: true,
|
||||||
showValue: true,
|
},
|
||||||
},
|
{
|
||||||
{
|
label: t('globals.wareHouseIn'),
|
||||||
label: t('globals.wareHouseIn'),
|
field: 'warehouseInName',
|
||||||
field: 'warehouseInName',
|
name: 'warehouseInName',
|
||||||
name: 'warehouseInName',
|
align: 'left',
|
||||||
align: 'left',
|
showValue: true,
|
||||||
showValue: true,
|
},
|
||||||
},
|
{
|
||||||
{
|
label: t('landed'),
|
||||||
label: t('landed'),
|
field: 'landed',
|
||||||
field: 'landed',
|
name: 'landed',
|
||||||
name: 'landed',
|
align: 'left',
|
||||||
align: 'left',
|
format: (value) => toDate(value.substring(0, 10)),
|
||||||
format: (value) => toDate(value.substring(0, 10)),
|
showValue: true,
|
||||||
showValue: true,
|
},
|
||||||
},
|
]);
|
||||||
];
|
|
||||||
});
|
|
||||||
|
|
||||||
async function getData() {
|
async function getData() {
|
||||||
await arrayData.fetch({ append: false });
|
await arrayData.fetch({ append: false });
|
||||||
|
@ -395,7 +393,7 @@ onMounted(async () => {
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.col-content {
|
.col-content {
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
padding: 6px 6px 6px 6px;
|
padding: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.secondary-row {
|
.secondary-row {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { reactive, ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
import FetchData from 'components/FetchData.vue';
|
import FetchData from 'components/FetchData.vue';
|
||||||
|
|
|
@ -31,6 +31,10 @@ const redirectToCreateView = (queryParams) => {
|
||||||
router.push({ name: 'TravelCreate', query: { travelData: queryParams } });
|
router.push({ name: 'TravelCreate', query: { travelData: queryParams } });
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const redirectCreateEntryView = (travelData) => {
|
||||||
|
router.push({ name: 'EntryCreate', query: { travelFk: travelData.id } });
|
||||||
|
};
|
||||||
|
|
||||||
const viewSummary = (id) => {
|
const viewSummary = (id) => {
|
||||||
quasar.dialog({
|
quasar.dialog({
|
||||||
component: TravelSummaryDialog,
|
component: TravelSummaryDialog,
|
||||||
|
@ -103,7 +107,7 @@ onMounted(async () => {
|
||||||
/>
|
/>
|
||||||
<QBtn
|
<QBtn
|
||||||
:label="t('addEntry')"
|
:label="t('addEntry')"
|
||||||
@click.stop="viewSummary(row.id)"
|
@click.stop="redirectCreateEntryView(row)"
|
||||||
class="bg-vn-dark"
|
class="bg-vn-dark"
|
||||||
outline
|
outline
|
||||||
style="margin-top: 15px"
|
style="margin-top: 15px"
|
||||||
|
|
|
@ -309,8 +309,8 @@ function exceedMaxHeight(pos) {
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="q-mb-sm wheels">
|
<div class="q-mb-sm wheels">
|
||||||
<QIcon color="grey-6" name="trip_origin" size="3rem" />
|
<QIcon color="grey-6" name="trip_origin" size="xl" />
|
||||||
<QIcon color="grey-6" name="trip_origin" size="3rem" />
|
<QIcon color="grey-6" name="trip_origin" size="xl" />
|
||||||
</div>
|
</div>
|
||||||
<QDialog
|
<QDialog
|
||||||
v-model="colorPickerActive"
|
v-model="colorPickerActive"
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
<script setup>
|
||||||
|
import VnTree from 'components/ui/VnTree.vue';
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<QPage class="column items-center q-pa-md">
|
||||||
|
<VnTree />
|
||||||
|
</QPage>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Search worker: Buscar trabajador
|
||||||
|
You can search by worker id or name: Puedes buscar por id o nombre del trabajador
|
||||||
|
</i18n>
|
|
@ -11,7 +11,17 @@ export default {
|
||||||
redirect: { name: 'SupplierMain' },
|
redirect: { name: 'SupplierMain' },
|
||||||
menus: {
|
menus: {
|
||||||
main: ['SupplierList'],
|
main: ['SupplierList'],
|
||||||
card: [],
|
card: [
|
||||||
|
'SupplierBasicData',
|
||||||
|
'SupplierFiscalData',
|
||||||
|
'SupplierBillingData',
|
||||||
|
'SupplierLog',
|
||||||
|
'SupplierAccounts',
|
||||||
|
'SupplierContacts',
|
||||||
|
'SupplierAddresses',
|
||||||
|
'SupplierConsumption',
|
||||||
|
'SupplierAgencyTerm',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
|
@ -55,6 +65,95 @@ export default {
|
||||||
component: () =>
|
component: () =>
|
||||||
import('src/pages/Supplier/Card/SupplierSummary.vue'),
|
import('src/pages/Supplier/Card/SupplierSummary.vue'),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'basic-data',
|
||||||
|
name: 'SupplierBasicData',
|
||||||
|
meta: {
|
||||||
|
title: 'basicData',
|
||||||
|
icon: 'vn:settings',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Supplier/Card/SupplierBasicData.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'fiscal-data',
|
||||||
|
name: 'SupplierFiscalData',
|
||||||
|
meta: {
|
||||||
|
title: 'fiscalData',
|
||||||
|
icon: 'vn:dfiscales',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Supplier/Card/SupplierFiscalData.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'billing-data',
|
||||||
|
name: 'SupplierBillingData',
|
||||||
|
meta: {
|
||||||
|
title: 'billingData',
|
||||||
|
icon: 'vn:payment',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Supplier/Card/SupplierBillingData.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'log',
|
||||||
|
name: 'SupplierLog',
|
||||||
|
meta: {
|
||||||
|
title: 'log',
|
||||||
|
icon: 'vn:History',
|
||||||
|
},
|
||||||
|
component: () => import('src/pages/Supplier/Card/SupplierLog.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'account',
|
||||||
|
name: 'SupplierAccounts',
|
||||||
|
meta: {
|
||||||
|
title: 'accounts',
|
||||||
|
icon: 'vn:account',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Supplier/Card/SupplierAccounts.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'contact',
|
||||||
|
name: 'SupplierContacts',
|
||||||
|
meta: {
|
||||||
|
title: 'contacts',
|
||||||
|
icon: 'contact_phone',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Supplier/Card/SupplierContacts.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'address',
|
||||||
|
name: 'SupplierAddresses',
|
||||||
|
meta: {
|
||||||
|
title: 'addresses',
|
||||||
|
icon: 'vn:delivery',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Supplier/Card/SupplierAddresses.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'consumption',
|
||||||
|
name: 'SupplierConsumption',
|
||||||
|
meta: {
|
||||||
|
title: 'consumption',
|
||||||
|
icon: 'show_chart',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Supplier/Card/SupplierConsumption.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'agency-term',
|
||||||
|
name: 'SupplierAgencyTerm',
|
||||||
|
meta: {
|
||||||
|
title: 'agencyTerm',
|
||||||
|
icon: 'vn:agency-term',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Supplier/Card/SupplierAgencyTerm.vue'),
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -10,8 +10,29 @@ export default {
|
||||||
component: RouterView,
|
component: RouterView,
|
||||||
redirect: { name: 'CustomerMain' },
|
redirect: { name: 'CustomerMain' },
|
||||||
menus: {
|
menus: {
|
||||||
main: ['CustomerList', 'CustomerPayments', 'CustomerExtendedList'],
|
main: [
|
||||||
card: ['CustomerBasicData'],
|
'CustomerList',
|
||||||
|
'CustomerPayments',
|
||||||
|
'CustomerExtendedList',
|
||||||
|
'CustomerNotifications',
|
||||||
|
'CustomerDefaulter',
|
||||||
|
],
|
||||||
|
card: [
|
||||||
|
'CustomerBasicData',
|
||||||
|
'CustomerFiscalData',
|
||||||
|
'CustomerBillingData',
|
||||||
|
'CustomerConsignees',
|
||||||
|
'CustomerNotes',
|
||||||
|
'CustomerCredits',
|
||||||
|
'CustomerGreuges',
|
||||||
|
'CustomerBalance',
|
||||||
|
'CustomerRecoveries',
|
||||||
|
'CustomerWebAccess',
|
||||||
|
'CustomerLog',
|
||||||
|
'CustomerSms',
|
||||||
|
'CustomerCreditManagement',
|
||||||
|
'CustomerOthers',
|
||||||
|
],
|
||||||
},
|
},
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
|
@ -44,7 +65,8 @@ export default {
|
||||||
title: 'webPayments',
|
title: 'webPayments',
|
||||||
icon: 'vn:onlinepayment',
|
icon: 'vn:onlinepayment',
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Customer/CustomerPayments.vue'),
|
component: () =>
|
||||||
|
import('src/pages/Customer/Payments/CustomerPayments.vue'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: 'extendedList',
|
path: 'extendedList',
|
||||||
|
@ -54,7 +76,31 @@ export default {
|
||||||
icon: 'vn:client',
|
icon: 'vn:client',
|
||||||
},
|
},
|
||||||
component: () =>
|
component: () =>
|
||||||
import('src/pages/Customer/CustomerExtendedList.vue'),
|
import(
|
||||||
|
'src/pages/Customer/ExtendedList/CustomerExtendedList.vue'
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'notifications',
|
||||||
|
name: 'CustomerNotifications',
|
||||||
|
meta: {
|
||||||
|
title: 'notifications',
|
||||||
|
icon: 'notifications',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import(
|
||||||
|
'src/pages/Customer/Notifications/CustomerNotifications.vue'
|
||||||
|
),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'defaulter',
|
||||||
|
name: 'CustomerDefaulter',
|
||||||
|
meta: {
|
||||||
|
title: 'defaulter',
|
||||||
|
icon: 'vn:risk',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Customer/Defaulter/CustomerDefaulter.vue'),
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -84,6 +130,132 @@ export default {
|
||||||
component: () =>
|
component: () =>
|
||||||
import('src/pages/Customer/Card/CustomerBasicData.vue'),
|
import('src/pages/Customer/Card/CustomerBasicData.vue'),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'fiscal-data',
|
||||||
|
name: 'CustomerFiscalData',
|
||||||
|
meta: {
|
||||||
|
title: 'fiscalData',
|
||||||
|
icon: 'vn:dfiscales',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Customer/Card/CustomerFiscalData.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'billing-data',
|
||||||
|
name: 'CustomerBillingData',
|
||||||
|
meta: {
|
||||||
|
title: 'billingData',
|
||||||
|
icon: 'vn:payment',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Customer/Card/CustomerBillingData.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'consignees',
|
||||||
|
name: 'CustomerConsignees',
|
||||||
|
meta: {
|
||||||
|
title: 'consignees',
|
||||||
|
icon: 'vn:delivery',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Customer/Card/CustomerConsignees.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'notes',
|
||||||
|
name: 'CustomerNotes',
|
||||||
|
meta: {
|
||||||
|
title: 'notes',
|
||||||
|
icon: 'vn:notes',
|
||||||
|
},
|
||||||
|
component: () => import('src/pages/Customer/Card/CustomerNotes.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'credits',
|
||||||
|
name: 'CustomerCredits',
|
||||||
|
meta: {
|
||||||
|
title: 'credits',
|
||||||
|
icon: 'vn:credit',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Customer/Card/CustomerCredits.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'greuges',
|
||||||
|
name: 'CustomerGreuges',
|
||||||
|
meta: {
|
||||||
|
title: 'greuges',
|
||||||
|
icon: 'vn:greuge',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Customer/Card/CustomerGreuges.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'balance',
|
||||||
|
name: 'CustomerBalance',
|
||||||
|
meta: {
|
||||||
|
title: 'balance',
|
||||||
|
icon: 'vn:invoice',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Customer/Card/CustomerBalance.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'recoveries',
|
||||||
|
name: 'CustomerRecoveries',
|
||||||
|
meta: {
|
||||||
|
title: 'recoveries',
|
||||||
|
icon: 'vn:recovery',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Customer/Card/CustomerRecoveries.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'web-access',
|
||||||
|
name: 'CustomerWebAccess',
|
||||||
|
meta: {
|
||||||
|
title: 'webAccess',
|
||||||
|
icon: 'vn:web',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Customer/Card/CustomerWebAccess.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'log',
|
||||||
|
name: 'CustomerLog',
|
||||||
|
meta: {
|
||||||
|
title: 'log',
|
||||||
|
icon: 'vn:History',
|
||||||
|
},
|
||||||
|
component: () => import('src/pages/Customer/Card/CustomerLog.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'sms',
|
||||||
|
name: 'CustomerSms',
|
||||||
|
meta: {
|
||||||
|
title: 'sms',
|
||||||
|
icon: 'sms',
|
||||||
|
},
|
||||||
|
component: () => import('src/pages/Customer/Card/CustomerSms.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'credit-management',
|
||||||
|
name: 'CustomerCreditManagement',
|
||||||
|
meta: {
|
||||||
|
title: 'creditManagement',
|
||||||
|
icon: 'paid',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Customer/Card/CustomerCreditManagement.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'others',
|
||||||
|
name: 'CustomerOthers',
|
||||||
|
meta: {
|
||||||
|
title: 'others',
|
||||||
|
icon: 'pending',
|
||||||
|
},
|
||||||
|
component: () => import('src/pages/Customer/Card/CustomerOthers.vue'),
|
||||||
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
|
|
@ -0,0 +1,46 @@
|
||||||
|
import { RouterView } from 'vue-router';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
path: '/department',
|
||||||
|
name: 'Department',
|
||||||
|
meta: {
|
||||||
|
title: 'department',
|
||||||
|
icon: 'vn:greuge',
|
||||||
|
},
|
||||||
|
component: RouterView,
|
||||||
|
redirect: { name: 'DepartmentCard' },
|
||||||
|
menus: {
|
||||||
|
main: [],
|
||||||
|
card: ['DepartmentBasicData'],
|
||||||
|
},
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
name: 'DepartmentCard',
|
||||||
|
path: 'department/:id',
|
||||||
|
component: () => import('src/pages/Department/Card/DepartmentCard.vue'),
|
||||||
|
redirect: { name: 'DepartmentSummary' },
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
name: 'DepartmentSummary',
|
||||||
|
path: 'summary',
|
||||||
|
meta: {
|
||||||
|
title: 'summary',
|
||||||
|
icon: 'launch',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Department/Card/DepartmentSummary.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'DepartmentBasicData',
|
||||||
|
path: 'basic-data',
|
||||||
|
meta: {
|
||||||
|
title: 'basicData',
|
||||||
|
icon: 'vn:settings',
|
||||||
|
},
|
||||||
|
component: () =>
|
||||||
|
import('src/pages/Department/Card/DepartmentBasicData.vue'),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
|
@ -0,0 +1,61 @@
|
||||||
|
import { RouterView } from 'vue-router';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
path: '/entry',
|
||||||
|
name: 'Entry',
|
||||||
|
meta: {
|
||||||
|
title: 'entries',
|
||||||
|
icon: 'vn:entry',
|
||||||
|
},
|
||||||
|
component: RouterView,
|
||||||
|
redirect: { name: 'EntryMain' },
|
||||||
|
menus: {
|
||||||
|
main: ['EntryList'],
|
||||||
|
card: [],
|
||||||
|
},
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: '',
|
||||||
|
name: 'EntryMain',
|
||||||
|
component: () => import('src/pages/Entry/EntryMain.vue'),
|
||||||
|
redirect: { name: 'EntryList' },
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
path: 'list',
|
||||||
|
name: 'EntryList',
|
||||||
|
meta: {
|
||||||
|
title: 'list',
|
||||||
|
icon: 'view_list',
|
||||||
|
},
|
||||||
|
component: () => import('src/pages/Entry/EntryList.vue'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
path: 'create',
|
||||||
|
name: 'EntryCreate',
|
||||||
|
meta: {
|
||||||
|
title: 'create',
|
||||||
|
},
|
||||||
|
component: () => import('src/pages/Entry/EntryCreate.vue'),
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
// {
|
||||||
|
// name: 'EntryCard',
|
||||||
|
// path: ':id',
|
||||||
|
// component: () => import('src/pages/Entry/Card/EntryCard.vue'),
|
||||||
|
// redirect: { name: 'EntrySummary' },
|
||||||
|
// children: [
|
||||||
|
// {
|
||||||
|
// name: 'EntrySummary',
|
||||||
|
// path: 'summary',
|
||||||
|
// meta: {
|
||||||
|
// title: 'summary',
|
||||||
|
// icon: 'launch',
|
||||||
|
// },
|
||||||
|
// component: () =>
|
||||||
|
// import('src/pages/Entry/Card/EntrySummary.vue'),
|
||||||
|
// },
|
||||||
|
// ],
|
||||||
|
// },
|
||||||
|
],
|
||||||
|
};
|
|
@ -10,6 +10,8 @@ import Route from './route';
|
||||||
import Supplier from './Supplier';
|
import Supplier from './Supplier';
|
||||||
import Travel from './travel';
|
import Travel from './travel';
|
||||||
import Order from './order';
|
import Order from './order';
|
||||||
|
import Department from './department';
|
||||||
|
import Entry from './entry';
|
||||||
|
|
||||||
export default [
|
export default [
|
||||||
Customer,
|
Customer,
|
||||||
|
@ -24,4 +26,6 @@ export default [
|
||||||
Travel,
|
Travel,
|
||||||
Order,
|
Order,
|
||||||
invoiceIn,
|
invoiceIn,
|
||||||
|
Department,
|
||||||
|
Entry,
|
||||||
];
|
];
|
||||||
|
|
|
@ -10,8 +10,9 @@ export default {
|
||||||
component: RouterView,
|
component: RouterView,
|
||||||
redirect: { name: 'WorkerMain' },
|
redirect: { name: 'WorkerMain' },
|
||||||
menus: {
|
menus: {
|
||||||
main: ['WorkerList'],
|
main: ['WorkerList', 'WorkerDepartment'],
|
||||||
card: ['WorkerNotificationsManager'],
|
card: ['WorkerNotificationsManager'],
|
||||||
|
departmentCard: ['BasicData'],
|
||||||
},
|
},
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
|
@ -29,6 +30,15 @@ export default {
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Worker/WorkerList.vue'),
|
component: () => import('src/pages/Worker/WorkerList.vue'),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
path: 'department',
|
||||||
|
name: 'WorkerDepartment',
|
||||||
|
meta: {
|
||||||
|
title: 'department',
|
||||||
|
icon: 'vn:greuge',
|
||||||
|
},
|
||||||
|
component: () => import('src/pages/Worker/WorkerDepartment.vue'),
|
||||||
|
},
|
||||||
{
|
{
|
||||||
path: 'create',
|
path: 'create',
|
||||||
name: 'WorkerCreate',
|
name: 'WorkerCreate',
|
||||||
|
|
|
@ -8,8 +8,10 @@ import wagon from './modules/wagon';
|
||||||
import supplier from './modules/Supplier';
|
import supplier from './modules/Supplier';
|
||||||
import route from './modules/route';
|
import route from './modules/route';
|
||||||
import travel from './modules/travel';
|
import travel from './modules/travel';
|
||||||
|
import department from './modules/department';
|
||||||
import shelving from 'src/router/modules/shelving';
|
import shelving from 'src/router/modules/shelving';
|
||||||
import order from "src/router/modules/order";
|
import order from 'src/router/modules/order';
|
||||||
|
import entry from 'src/router/modules/entry';
|
||||||
|
|
||||||
const routes = [
|
const routes = [
|
||||||
{
|
{
|
||||||
|
@ -61,6 +63,8 @@ const routes = [
|
||||||
route,
|
route,
|
||||||
supplier,
|
supplier,
|
||||||
travel,
|
travel,
|
||||||
|
department,
|
||||||
|
entry,
|
||||||
{
|
{
|
||||||
path: '/:catchAll(.*)*',
|
path: '/:catchAll(.*)*',
|
||||||
name: 'NotFound',
|
name: 'NotFound',
|
||||||
|
|
|
@ -19,6 +19,7 @@ export const useNavigationStore = defineStore('navigationStore', () => {
|
||||||
'supplier',
|
'supplier',
|
||||||
'travel',
|
'travel',
|
||||||
'invoiceIn',
|
'invoiceIn',
|
||||||
|
'entry',
|
||||||
];
|
];
|
||||||
const pinnedModules = ref([]);
|
const pinnedModules = ref([]);
|
||||||
const role = useRole();
|
const role = useRole();
|
||||||
|
|
|
@ -1,11 +1,10 @@
|
||||||
import { vi, describe, expect, it, beforeAll, afterEach } from 'vitest';
|
import { vi, describe, expect, it, beforeAll, afterEach } from 'vitest';
|
||||||
import { createWrapper, axios } from 'app/test/vitest/helper';
|
import { createWrapper, axios } from 'app/test/vitest/helper';
|
||||||
import CustomerPayments from 'pages/Customer/CustomerPayments.vue';
|
import CustomerPayments from 'src/pages/Customer/Payments/CustomerPayments.vue';
|
||||||
|
|
||||||
describe('CustomerPayments', () => {
|
describe('CustomerPayments', () => {
|
||||||
let vm;
|
let vm;
|
||||||
|
|
||||||
|
|
||||||
beforeAll(() => {
|
beforeAll(() => {
|
||||||
vm = createWrapper(CustomerPayments, {
|
vm = createWrapper(CustomerPayments, {
|
||||||
global: {
|
global: {
|
||||||
|
@ -13,7 +12,7 @@ describe('CustomerPayments', () => {
|
||||||
mocks: {
|
mocks: {
|
||||||
fetch: vi.fn(),
|
fetch: vi.fn(),
|
||||||
},
|
},
|
||||||
}
|
},
|
||||||
}).vm;
|
}).vm;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -28,11 +27,10 @@ describe('CustomerPayments', () => {
|
||||||
|
|
||||||
await vm.confirmTransaction({ id: 1 });
|
await vm.confirmTransaction({ id: 1 });
|
||||||
|
|
||||||
|
|
||||||
expect(vm.quasar.notify).toHaveBeenCalledWith(
|
expect(vm.quasar.notify).toHaveBeenCalledWith(
|
||||||
expect.objectContaining({
|
expect.objectContaining({
|
||||||
message: 'Payment confirmed',
|
message: 'Payment confirmed',
|
||||||
type: 'positive'
|
type: 'positive',
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue