Merge branch 'dev' of https: refs #8862//gitea.verdnatura.es/verdnatura/salix-front into 8862-testIsolationFalse
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
gitea/salix-front/pipeline/pr-dev There was a failure building this commit
Details
This commit is contained in:
commit
160ff54a66
|
@ -125,7 +125,7 @@ pipeline {
|
||||||
sh "docker-compose ${env.COMPOSE_PARAMS} pull db"
|
sh "docker-compose ${env.COMPOSE_PARAMS} pull db"
|
||||||
sh "docker-compose ${env.COMPOSE_PARAMS} up -d"
|
sh "docker-compose ${env.COMPOSE_PARAMS} up -d"
|
||||||
|
|
||||||
def modules = sh(script: 'node test/cypress/docker/find/find.js', returnStdout: true).trim()
|
def modules = sh(script: "node test/cypress/docker/find/find.js ${env.COMPOSE_TAG}", returnStdout: true).trim()
|
||||||
echo "E2E MODULES: ${modules}"
|
echo "E2E MODULES: ${modules}"
|
||||||
image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ --init") {
|
image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ --init") {
|
||||||
sh "sh test/cypress/docker/cypressParallel.sh 1 '${modules}'"
|
sh "sh test/cypress/docker/cypressParallel.sh 1 '${modules}'"
|
||||||
|
|
|
@ -47,6 +47,7 @@ export default defineConfig({
|
||||||
supportFile: 'test/cypress/support/index.js',
|
supportFile: 'test/cypress/support/index.js',
|
||||||
videosFolder: 'test/cypress/videos',
|
videosFolder: 'test/cypress/videos',
|
||||||
downloadsFolder: 'test/cypress/downloads',
|
downloadsFolder: 'test/cypress/downloads',
|
||||||
|
tmpUploadFolder: 'test/cypress/storage/tmp/dms',
|
||||||
video: false,
|
video: false,
|
||||||
specPattern: 'test/cypress/integration/**/*.spec.js',
|
specPattern: 'test/cypress/integration/**/*.spec.js',
|
||||||
experimentalRunAllSpecs: true,
|
experimentalRunAllSpecs: true,
|
||||||
|
|
|
@ -67,7 +67,7 @@ describe('Axios boot', () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const result = onResponseError(error);
|
const result = onResponseError(error);
|
||||||
expect(result).rejects.toEqual(expect.objectContaining(error));
|
await expect(result).rejects.toEqual(expect.objectContaining(error));
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should call to the Notify plugin with a message from the response property', async () => {
|
it('should call to the Notify plugin with a message from the response property', async () => {
|
||||||
|
@ -83,7 +83,7 @@ describe('Axios boot', () => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const result = onResponseError(error);
|
const result = onResponseError(error);
|
||||||
expect(result).rejects.toEqual(expect.objectContaining(error));
|
await expect(result).rejects.toEqual(expect.objectContaining(error));
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -20,7 +20,6 @@ const postcodeFormData = reactive({
|
||||||
provinceFk: null,
|
provinceFk: null,
|
||||||
townFk: null,
|
townFk: null,
|
||||||
});
|
});
|
||||||
const townFilter = ref({});
|
|
||||||
|
|
||||||
const countriesRef = ref(false);
|
const countriesRef = ref(false);
|
||||||
const provincesOptions = ref([]);
|
const provincesOptions = ref([]);
|
||||||
|
@ -33,11 +32,11 @@ function onDataSaved(formData) {
|
||||||
newPostcode.town = town.value.name;
|
newPostcode.town = town.value.name;
|
||||||
newPostcode.townFk = town.value.id;
|
newPostcode.townFk = town.value.id;
|
||||||
const provinceObject = provincesOptions.value.find(
|
const provinceObject = provincesOptions.value.find(
|
||||||
({ id }) => id === formData.provinceFk
|
({ id }) => id === formData.provinceFk,
|
||||||
);
|
);
|
||||||
newPostcode.province = provinceObject?.name;
|
newPostcode.province = provinceObject?.name;
|
||||||
const countryObject = countriesRef.value.opts.find(
|
const countryObject = countriesRef.value.opts.find(
|
||||||
({ id }) => id === formData.countryFk
|
({ id }) => id === formData.countryFk,
|
||||||
);
|
);
|
||||||
newPostcode.country = countryObject?.name;
|
newPostcode.country = countryObject?.name;
|
||||||
emit('onDataSaved', newPostcode);
|
emit('onDataSaved', newPostcode);
|
||||||
|
@ -67,21 +66,11 @@ function setTown(newTown, data) {
|
||||||
}
|
}
|
||||||
async function onCityCreated(newTown, formData) {
|
async function onCityCreated(newTown, formData) {
|
||||||
newTown.province = provincesOptions.value.find(
|
newTown.province = provincesOptions.value.find(
|
||||||
(province) => province.id === newTown.provinceFk
|
(province) => province.id === newTown.provinceFk,
|
||||||
);
|
);
|
||||||
formData.townFk = newTown;
|
formData.townFk = newTown;
|
||||||
setTown(newTown, formData);
|
setTown(newTown, formData);
|
||||||
}
|
}
|
||||||
|
|
||||||
async function filterTowns(name) {
|
|
||||||
if (name !== '') {
|
|
||||||
townFilter.value.where = {
|
|
||||||
name: {
|
|
||||||
like: `%${name}%`,
|
|
||||||
},
|
|
||||||
};
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -107,7 +96,6 @@ async function filterTowns(name) {
|
||||||
<VnSelectDialog
|
<VnSelectDialog
|
||||||
:label="t('City')"
|
:label="t('City')"
|
||||||
@update:model-value="(value) => setTown(value, data)"
|
@update:model-value="(value) => setTown(value, data)"
|
||||||
@filter="filterTowns"
|
|
||||||
:tooltip="t('Create city')"
|
:tooltip="t('Create city')"
|
||||||
v-model="data.townFk"
|
v-model="data.townFk"
|
||||||
url="Towns/location"
|
url="Towns/location"
|
||||||
|
|
|
@ -65,7 +65,7 @@ const $props = defineProps({
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
beforeSaveFn: {
|
beforeSaveFn: {
|
||||||
type: Function,
|
type: [String, Function],
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
goTo: {
|
goTo: {
|
||||||
|
@ -83,7 +83,7 @@ const isLoading = ref(false);
|
||||||
const hasChanges = ref(false);
|
const hasChanges = ref(false);
|
||||||
const originalData = ref();
|
const originalData = ref();
|
||||||
const vnPaginateRef = ref();
|
const vnPaginateRef = ref();
|
||||||
const formData = ref([]);
|
const formData = ref();
|
||||||
const saveButtonRef = ref(null);
|
const saveButtonRef = ref(null);
|
||||||
const watchChanges = ref();
|
const watchChanges = ref();
|
||||||
const formUrl = computed(() => $props.url);
|
const formUrl = computed(() => $props.url);
|
||||||
|
@ -298,6 +298,10 @@ watch(formUrl, async () => {
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
|
<SkeletonTable
|
||||||
|
v-if="!formData && ($attrs['auto-load'] === '' || $attrs['auto-load'])"
|
||||||
|
:columns="$attrs.columns?.length"
|
||||||
|
/>
|
||||||
<VnPaginate
|
<VnPaginate
|
||||||
:url="url"
|
:url="url"
|
||||||
:limit="limit"
|
:limit="limit"
|
||||||
|
@ -316,10 +320,6 @@ watch(formUrl, async () => {
|
||||||
></slot>
|
></slot>
|
||||||
</template>
|
</template>
|
||||||
</VnPaginate>
|
</VnPaginate>
|
||||||
<SkeletonTable
|
|
||||||
v-if="!formData && $attrs.autoLoad"
|
|
||||||
:columns="$attrs.columns?.length"
|
|
||||||
/>
|
|
||||||
<Teleport to="#st-actions" v-if="stateStore?.isSubToolbarShown() && hasSubToolbar">
|
<Teleport to="#st-actions" v-if="stateStore?.isSubToolbarShown() && hasSubToolbar">
|
||||||
<QBtnGroup push style="column-gap: 10px">
|
<QBtnGroup push style="column-gap: 10px">
|
||||||
<slot name="moreBeforeActions" />
|
<slot name="moreBeforeActions" />
|
||||||
|
|
|
@ -0,0 +1,152 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref, computed } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { date } from 'quasar';
|
||||||
|
import QCalendarMonthWrapper from 'src/components/ui/QCalendarMonthWrapper.vue';
|
||||||
|
import { QCalendarMonth } from '@quasar/quasar-ui-qcalendar/src/index.js';
|
||||||
|
import '@quasar/quasar-ui-qcalendar/src/QCalendarVariables.scss';
|
||||||
|
import { useWeekdayStore } from 'src/stores/useWeekdayStore';
|
||||||
|
import useWeekdaysOrder from 'src/composables/getWeekdays';
|
||||||
|
|
||||||
|
const formatDate = (dateToFormat, format = 'YYYY-MM-DD') => (
|
||||||
|
date.formatDate(dateToFormat, format)
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
year: {
|
||||||
|
type: Number,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
month: {
|
||||||
|
type: Number,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
monthDate: {
|
||||||
|
type: Object,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
daysMap: {
|
||||||
|
type: Object,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const emit = defineEmits(['onDateSelected']);
|
||||||
|
|
||||||
|
const { locale } = useI18n();
|
||||||
|
const weekdayStore = useWeekdayStore();
|
||||||
|
const weekDays = useWeekdaysOrder();
|
||||||
|
const calendarRef = ref(null);
|
||||||
|
const today = ref(formatDate(Date.vnNew()));
|
||||||
|
const todayTimestamp = computed(() => {
|
||||||
|
const date = Date.vnNew();
|
||||||
|
date.setHours(0, 0, 0, 0);
|
||||||
|
return date.getTime();
|
||||||
|
});
|
||||||
|
const _monthDate = computed(() => formatDate(props.monthDate));
|
||||||
|
|
||||||
|
const calendarHeaderTitle = computed(() => {
|
||||||
|
return `${weekdayStore.getLocaleMonths[props.month - 1].locale} ${props.year}`;
|
||||||
|
});
|
||||||
|
|
||||||
|
const isToday = (timestamp) => {
|
||||||
|
const { year, month, day } = timestamp;
|
||||||
|
return todayTimestamp.value === new Date(year, month - 1, day).getTime();
|
||||||
|
};
|
||||||
|
|
||||||
|
const getEventByTimestamp = ({ year, month, day }) => {
|
||||||
|
const stamp = new Date(year, month - 1, day).getTime();
|
||||||
|
return props.daysMap?.[stamp] || null;
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleDateClick = (timestamp) => {
|
||||||
|
const event = getEventByTimestamp(timestamp);
|
||||||
|
const { year, month, day } = timestamp;
|
||||||
|
const date = new Date(year, month - 1, day);
|
||||||
|
emit('onDateSelected', {
|
||||||
|
date,
|
||||||
|
isNewMode: !event,
|
||||||
|
event: event?.[0] || null
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
const getEventAttrs = (timestamp) => {
|
||||||
|
return {
|
||||||
|
class: '--event',
|
||||||
|
label: timestamp.day,
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
defineExpose({ getEventByTimestamp, handleDateClick });
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<QCalendarMonthWrapper
|
||||||
|
style="height: 290px; width: 290px"
|
||||||
|
transparent-background
|
||||||
|
view-customization="workerCalendar"
|
||||||
|
>
|
||||||
|
<template #header>
|
||||||
|
<span class="full-width text-center text-body1 q-py-sm">{{
|
||||||
|
calendarHeaderTitle
|
||||||
|
}}</span>
|
||||||
|
</template>
|
||||||
|
<template #calendar>
|
||||||
|
<QCalendarMonth
|
||||||
|
ref="calendarRef"
|
||||||
|
:model-value="_monthDate"
|
||||||
|
show-work-weeks
|
||||||
|
no-outside-days
|
||||||
|
no-active-date
|
||||||
|
:weekdays="weekDays"
|
||||||
|
short-weekday-label
|
||||||
|
:locale="locale"
|
||||||
|
:now="today"
|
||||||
|
@click-date="handleDateClick($event.scope.timestamp)"
|
||||||
|
mini-mode
|
||||||
|
>
|
||||||
|
<template #day="{ scope: { timestamp } }">
|
||||||
|
<slot name="day" :timestamp="timestamp" :getEventAttrs="getEventAttrs">
|
||||||
|
<QBtn
|
||||||
|
v-if="getEventByTimestamp(timestamp)"
|
||||||
|
v-bind="{ ...getEventAttrs(timestamp) }"
|
||||||
|
@click="handleDateClick(timestamp)"
|
||||||
|
rounded
|
||||||
|
dense
|
||||||
|
flat
|
||||||
|
class="calendar-event"
|
||||||
|
:class="{ '--today': isToday(timestamp) }"
|
||||||
|
/>
|
||||||
|
</slot>
|
||||||
|
</template>
|
||||||
|
</QCalendarMonth>
|
||||||
|
</template>
|
||||||
|
</QCalendarMonthWrapper>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style lang="scss">
|
||||||
|
.calendar-event {
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
width: 32px;
|
||||||
|
height: 32px;
|
||||||
|
font-size: 13px;
|
||||||
|
line-height: 1.715em;
|
||||||
|
cursor: pointer;
|
||||||
|
color: white;
|
||||||
|
|
||||||
|
&.--today {
|
||||||
|
border: 2px solid $info;
|
||||||
|
}
|
||||||
|
|
||||||
|
&.--event {
|
||||||
|
background-color: $positive;
|
||||||
|
color: black;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
opacity: 0.8;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -0,0 +1,126 @@
|
||||||
|
<script setup>
|
||||||
|
import { computed, onMounted, ref, onUnmounted, nextTick } from 'vue';
|
||||||
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
|
import { useWeekdayStore } from 'src/stores/useWeekdayStore';
|
||||||
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
dataKey: {
|
||||||
|
type: String,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
calendarComponent: {
|
||||||
|
type: Object,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
additionalProps: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({}),
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const stateStore = useStateStore();
|
||||||
|
const weekdayStore = useWeekdayStore();
|
||||||
|
const nMonths = ref(4);
|
||||||
|
const _date = ref(Date.vnNew());
|
||||||
|
const firstDay = ref(Date.vnNew());
|
||||||
|
const lastDay = ref(Date.vnNew());
|
||||||
|
const months = ref([]);
|
||||||
|
const arrayData = useArrayData(props.dataKey);
|
||||||
|
onMounted(async () => {
|
||||||
|
const initialDate = Date.vnNew();
|
||||||
|
initialDate.setDate(1);
|
||||||
|
initialDate.setHours(0, 0, 0, 0);
|
||||||
|
date.value = initialDate;
|
||||||
|
await nextTick();
|
||||||
|
stateStore.rightDrawer = true;
|
||||||
|
});
|
||||||
|
|
||||||
|
onUnmounted(() => arrayData.destroy());
|
||||||
|
|
||||||
|
const emit = defineEmits([
|
||||||
|
'update:firstDay',
|
||||||
|
'update:lastDay',
|
||||||
|
'update:events',
|
||||||
|
'onDateSelected',
|
||||||
|
]);
|
||||||
|
|
||||||
|
const date = computed({
|
||||||
|
get: () => _date.value,
|
||||||
|
set: (value) => {
|
||||||
|
if (!(value instanceof Date)) return;
|
||||||
|
_date.value = value;
|
||||||
|
const stamp = value.getTime();
|
||||||
|
|
||||||
|
firstDay.value = new Date(stamp);
|
||||||
|
firstDay.value.setDate(1);
|
||||||
|
|
||||||
|
lastDay.value = new Date(stamp);
|
||||||
|
lastDay.value.setMonth(lastDay.value.getMonth() + nMonths.value);
|
||||||
|
lastDay.value.setDate(0);
|
||||||
|
|
||||||
|
months.value = [];
|
||||||
|
for (let i = 0; i < nMonths.value; i++) {
|
||||||
|
const monthDate = new Date(stamp);
|
||||||
|
monthDate.setMonth(value.getMonth() + i);
|
||||||
|
months.value.push(monthDate);
|
||||||
|
}
|
||||||
|
|
||||||
|
emit('update:firstDay', firstDay.value);
|
||||||
|
emit('update:lastDay', lastDay.value);
|
||||||
|
emit('refresh-events');
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const headerTitle = computed(() => {
|
||||||
|
if (!months.value?.length) return '';
|
||||||
|
const getMonthName = date =>
|
||||||
|
`${weekdayStore.getLocaleMonths[date.getMonth()].locale} ${date.getFullYear()}`;
|
||||||
|
return `${getMonthName(months.value[0])} - ${getMonthName(months.value[months.value.length - 1])}`;
|
||||||
|
});
|
||||||
|
|
||||||
|
const step = (direction) => {
|
||||||
|
const newDate = new Date(date.value);
|
||||||
|
newDate.setMonth(newDate.getMonth() + nMonths.value * direction);
|
||||||
|
date.value = newDate;
|
||||||
|
};
|
||||||
|
|
||||||
|
defineExpose({
|
||||||
|
firstDay,
|
||||||
|
lastDay
|
||||||
|
});
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<QCard style="height: max-content">
|
||||||
|
<div class="calendars-header">
|
||||||
|
<QBtn
|
||||||
|
icon="arrow_left"
|
||||||
|
size="sm"
|
||||||
|
flat
|
||||||
|
class="full-height"
|
||||||
|
@click="step(-1)"
|
||||||
|
/>
|
||||||
|
<span>{{ headerTitle }}</span>
|
||||||
|
<QBtn
|
||||||
|
icon="arrow_right"
|
||||||
|
size="sm"
|
||||||
|
flat
|
||||||
|
class="full-height"
|
||||||
|
@click="step(1)"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div class="calendars-container">
|
||||||
|
<component
|
||||||
|
:is="calendarComponent"
|
||||||
|
v-for="(month, index) in months"
|
||||||
|
:key="index"
|
||||||
|
:month="month.getMonth() + 1"
|
||||||
|
:year="month.getFullYear()"
|
||||||
|
:month-date="month"
|
||||||
|
v-bind="additionalProps"
|
||||||
|
@on-date-selected="data => emit('onDateSelected', data)"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</QCard>
|
||||||
|
</template>
|
|
@ -156,6 +156,9 @@ const selectTravel = ({ id }) => {
|
||||||
option-label="name"
|
option-label="name"
|
||||||
option-value="id"
|
option-value="id"
|
||||||
v-model="travelFilterParams.warehouseOutFk"
|
v-model="travelFilterParams.warehouseOutFk"
|
||||||
|
:where="{
|
||||||
|
isOrigin: true,
|
||||||
|
}"
|
||||||
/>
|
/>
|
||||||
<VnSelect
|
<VnSelect
|
||||||
:label="t('globals.warehouseIn')"
|
:label="t('globals.warehouseIn')"
|
||||||
|
@ -164,6 +167,9 @@ const selectTravel = ({ id }) => {
|
||||||
option-label="name"
|
option-label="name"
|
||||||
option-value="id"
|
option-value="id"
|
||||||
v-model="travelFilterParams.warehouseInFk"
|
v-model="travelFilterParams.warehouseInFk"
|
||||||
|
:where="{
|
||||||
|
isDestiny: true,
|
||||||
|
}"
|
||||||
/>
|
/>
|
||||||
<VnInputDate
|
<VnInputDate
|
||||||
:label="t('globals.shipped')"
|
:label="t('globals.shipped')"
|
||||||
|
|
|
@ -22,7 +22,6 @@ const { validate, validations } = useValidator();
|
||||||
const { notify } = useNotify();
|
const { notify } = useNotify();
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const myForm = ref(null);
|
const myForm = ref(null);
|
||||||
const attrs = useAttrs();
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
url: {
|
url: {
|
||||||
type: String,
|
type: String,
|
||||||
|
@ -99,8 +98,12 @@ const $props = defineProps({
|
||||||
type: Function,
|
type: Function,
|
||||||
default: () => {},
|
default: () => {},
|
||||||
},
|
},
|
||||||
|
preventSubmit: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
const emit = defineEmits(['onFetch', 'onDataSaved']);
|
const emit = defineEmits(['onFetch', 'onDataSaved', 'submit']);
|
||||||
const modelValue = computed(
|
const modelValue = computed(
|
||||||
() => $props.model ?? `formModel_${route?.meta?.title ?? route.name}`,
|
() => $props.model ?? `formModel_${route?.meta?.title ?? route.name}`,
|
||||||
).value;
|
).value;
|
||||||
|
@ -284,7 +287,7 @@ function updateAndEmit(evt, { val, res, old } = { val: null, res: null, old: nul
|
||||||
state.set(modelValue, val);
|
state.set(modelValue, val);
|
||||||
if (!$props.url) arrayData.store.data = val;
|
if (!$props.url) arrayData.store.data = val;
|
||||||
|
|
||||||
emit(evt, state.get(modelValue), res, old);
|
emit(evt, state.get(modelValue), res, old, formData);
|
||||||
}
|
}
|
||||||
|
|
||||||
function trimData(data) {
|
function trimData(data) {
|
||||||
|
@ -301,7 +304,7 @@ function onBeforeSave(formData, originalData) {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
async function onKeyup(evt) {
|
async function onKeyup(evt) {
|
||||||
if (evt.key === 'Enter' && !('prevent-submit' in attrs)) {
|
if (evt.key === 'Enter' && !$props.preventSubmit) {
|
||||||
const input = evt.target;
|
const input = evt.target;
|
||||||
if (input.type == 'textarea' && evt.shiftKey) {
|
if (input.type == 'textarea' && evt.shiftKey) {
|
||||||
let { selectionStart, selectionEnd } = input;
|
let { selectionStart, selectionEnd } = input;
|
||||||
|
@ -330,6 +333,7 @@ defineExpose({
|
||||||
<template>
|
<template>
|
||||||
<div class="column items-center full-width">
|
<div class="column items-center full-width">
|
||||||
<QForm
|
<QForm
|
||||||
|
v-on="$attrs"
|
||||||
ref="myForm"
|
ref="myForm"
|
||||||
v-if="formData"
|
v-if="formData"
|
||||||
@submit.prevent="save"
|
@submit.prevent="save"
|
||||||
|
|
|
@ -181,7 +181,7 @@ const searchModule = () => {
|
||||||
<template>
|
<template>
|
||||||
<QList padding class="column-max-width">
|
<QList padding class="column-max-width">
|
||||||
<template v-if="$props.source === 'main'">
|
<template v-if="$props.source === 'main'">
|
||||||
<template v-if="$route?.matched[1]?.name === 'Dashboard'">
|
<template v-if="route?.matched[1]?.name === 'Dashboard'">
|
||||||
<QItem class="q-pb-md">
|
<QItem class="q-pb-md">
|
||||||
<VnInput
|
<VnInput
|
||||||
v-model="search"
|
v-model="search"
|
||||||
|
@ -262,7 +262,7 @@ const searchModule = () => {
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template v-for="item in items" :key="item.name">
|
<template v-for="item in items" :key="item.name">
|
||||||
<template v-if="item.name === $route?.matched[1]?.name">
|
<template v-if="item.name === route?.matched[1]?.name">
|
||||||
<QItem class="header">
|
<QItem class="header">
|
||||||
<QItemSection avatar v-if="item.icon">
|
<QItemSection avatar v-if="item.icon">
|
||||||
<QIcon :name="item.icon" />
|
<QIcon :name="item.icon" />
|
||||||
|
|
|
@ -40,6 +40,9 @@ const onDataSaved = (data) => {
|
||||||
url="Warehouses"
|
url="Warehouses"
|
||||||
@on-fetch="(data) => (warehousesOptions = data)"
|
@on-fetch="(data) => (warehousesOptions = data)"
|
||||||
auto-load
|
auto-load
|
||||||
|
:where="{
|
||||||
|
isInventory: true,
|
||||||
|
}"
|
||||||
/>
|
/>
|
||||||
<FormModelPopup
|
<FormModelPopup
|
||||||
url-create="Items/regularize"
|
url-create="Items/regularize"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { markRaw, computed } from 'vue';
|
import { markRaw, computed, onBeforeMount } from 'vue';
|
||||||
import { QCheckbox, QToggle } from 'quasar';
|
import { QToggle } from 'quasar';
|
||||||
import { useArrayData } from 'composables/useArrayData';
|
import { useArrayData } from 'composables/useArrayData';
|
||||||
import VnSelect from 'components/common/VnSelect.vue';
|
import VnSelect from 'components/common/VnSelect.vue';
|
||||||
import VnInput from 'components/common/VnInput.vue';
|
import VnInput from 'components/common/VnInput.vue';
|
||||||
|
@ -150,6 +150,16 @@ const showFilter = computed(
|
||||||
const onTabPressed = async () => {
|
const onTabPressed = async () => {
|
||||||
if (model.value) enterEvent['keyup.enter']();
|
if (model.value) enterEvent['keyup.enter']();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
onBeforeMount(() => {
|
||||||
|
const columnFilter = $props.column?.columnFilter;
|
||||||
|
const component = columnFilter?.component;
|
||||||
|
const defaultComponent = components[component];
|
||||||
|
const events = { update: updateEvent, enter: enterEvent };
|
||||||
|
|
||||||
|
if (!columnFilter || defaultComponent) return;
|
||||||
|
$props.column.columnFilter.event = events[columnFilter.event];
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<div v-if="showFilter" class="full-width" style="overflow: hidden">
|
<div v-if="showFilter" class="full-width" style="overflow: hidden">
|
||||||
|
|
|
@ -16,7 +16,7 @@ const $props = defineProps({
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
searchUrl: {
|
searchUrl: {
|
||||||
type: String,
|
type: [String, Boolean],
|
||||||
default: 'table',
|
default: 'table',
|
||||||
},
|
},
|
||||||
vertical: {
|
vertical: {
|
||||||
|
|
|
@ -33,7 +33,8 @@ import VnTableOrder from 'src/components/VnTable/VnOrder.vue';
|
||||||
import VnTableFilter from './VnTableFilter.vue';
|
import VnTableFilter from './VnTableFilter.vue';
|
||||||
import { getColAlign } from 'src/composables/getColAlign';
|
import { getColAlign } from 'src/composables/getColAlign';
|
||||||
import RightMenu from '../common/RightMenu.vue';
|
import RightMenu from '../common/RightMenu.vue';
|
||||||
import VnScroll from '../common/VnScroll.vue'
|
import VnScroll from '../common/VnScroll.vue';
|
||||||
|
import VnMultiCheck from '../common/VnMultiCheck.vue';
|
||||||
|
|
||||||
const arrayData = useArrayData(useAttrs()['data-key']);
|
const arrayData = useArrayData(useAttrs()['data-key']);
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
|
@ -66,7 +67,7 @@ const $props = defineProps({
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
create: {
|
create: {
|
||||||
type: Object,
|
type: [Boolean, Object],
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
createAsDialog: {
|
createAsDialog: {
|
||||||
|
@ -113,6 +114,10 @@ const $props = defineProps({
|
||||||
type: Object,
|
type: Object,
|
||||||
default: () => ({}),
|
default: () => ({}),
|
||||||
},
|
},
|
||||||
|
multiCheck: {
|
||||||
|
type: Object,
|
||||||
|
default: () => ({}),
|
||||||
|
},
|
||||||
crudModel: {
|
crudModel: {
|
||||||
type: Object,
|
type: Object,
|
||||||
default: () => ({}),
|
default: () => ({}),
|
||||||
|
@ -157,6 +162,7 @@ const CARD_MODE = 'card';
|
||||||
const TABLE_MODE = 'table';
|
const TABLE_MODE = 'table';
|
||||||
const mode = ref(CARD_MODE);
|
const mode = ref(CARD_MODE);
|
||||||
const selected = ref([]);
|
const selected = ref([]);
|
||||||
|
const selectAll = ref(false);
|
||||||
const hasParams = ref(false);
|
const hasParams = ref(false);
|
||||||
const CrudModelRef = ref({});
|
const CrudModelRef = ref({});
|
||||||
const showForm = ref(false);
|
const showForm = ref(false);
|
||||||
|
@ -208,7 +214,7 @@ onBeforeMount(() => {
|
||||||
});
|
});
|
||||||
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
if ($props.isEditable) document.addEventListener('click', clickHandler);
|
if ($props.isEditable) document.addEventListener('mousedown', mousedownHandler);
|
||||||
mode.value =
|
mode.value =
|
||||||
quasar.platform.is.mobile && !$props.disableOption?.card
|
quasar.platform.is.mobile && !$props.disableOption?.card
|
||||||
? CARD_MODE
|
? CARD_MODE
|
||||||
|
@ -231,7 +237,7 @@ onMounted(async () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
onUnmounted(async () => {
|
onUnmounted(async () => {
|
||||||
if ($props.isEditable) document.removeEventListener('click', clickHandler);
|
if ($props.isEditable) document.removeEventListener('mousedown', mousedownHandler);
|
||||||
});
|
});
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
|
@ -379,7 +385,7 @@ function hasEditableFormat(column) {
|
||||||
if (isEditableColumn(column)) return 'editable-text';
|
if (isEditableColumn(column)) return 'editable-text';
|
||||||
}
|
}
|
||||||
|
|
||||||
const clickHandler = async (event) => {
|
const mousedownHandler = async (event) => {
|
||||||
const clickedElement = event.target.closest('td');
|
const clickedElement = event.target.closest('td');
|
||||||
const isDateElement = event.target.closest('.q-date');
|
const isDateElement = event.target.closest('.q-date');
|
||||||
const isTimeElement = event.target.closest('.q-time');
|
const isTimeElement = event.target.closest('.q-time');
|
||||||
|
@ -402,6 +408,7 @@ const clickHandler = async (event) => {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isEditableColumn(column)) {
|
if (isEditableColumn(column)) {
|
||||||
|
event.preventDefault();
|
||||||
await renderInput(Number(rowIndex), colField, clickedElement);
|
await renderInput(Number(rowIndex), colField, clickedElement);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -638,6 +645,23 @@ const rowCtrlClickFunction = computed(() => {
|
||||||
};
|
};
|
||||||
return () => {};
|
return () => {};
|
||||||
});
|
});
|
||||||
|
const handleMultiCheck = (value) => {
|
||||||
|
if (value) {
|
||||||
|
selected.value = tableRef.value.rows;
|
||||||
|
} else {
|
||||||
|
selected.value = [];
|
||||||
|
}
|
||||||
|
emit('update:selected', selected.value);
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleSelectedAll = (data) => {
|
||||||
|
if (data) {
|
||||||
|
selected.value = data;
|
||||||
|
} else {
|
||||||
|
selected.value = [];
|
||||||
|
}
|
||||||
|
emit('update:selected', selected.value);
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<RightMenu v-if="$props.rightSearch" :overlay="overlay">
|
<RightMenu v-if="$props.rightSearch" :overlay="overlay">
|
||||||
|
@ -700,6 +724,17 @@ const rowCtrlClickFunction = computed(() => {
|
||||||
:hide-selected-banner="true"
|
:hide-selected-banner="true"
|
||||||
:data-cy
|
:data-cy
|
||||||
>
|
>
|
||||||
|
<template #header-selection>
|
||||||
|
<VnMultiCheck
|
||||||
|
:searchUrl="searchUrl"
|
||||||
|
:expand="$props.multiCheck.expand"
|
||||||
|
v-model="selectAll"
|
||||||
|
:url="$attrs['url']"
|
||||||
|
@update:selected="handleMultiCheck"
|
||||||
|
@select:all="handleSelectedAll"
|
||||||
|
></VnMultiCheck>
|
||||||
|
</template>
|
||||||
|
|
||||||
<template #top-left v-if="!$props.withoutHeader">
|
<template #top-left v-if="!$props.withoutHeader">
|
||||||
<slot name="top-left"> </slot>
|
<slot name="top-left"> </slot>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -30,6 +30,7 @@ function columnName(col) {
|
||||||
v-bind="$attrs"
|
v-bind="$attrs"
|
||||||
:search-button="true"
|
:search-button="true"
|
||||||
:disable-submit-event="true"
|
:disable-submit-event="true"
|
||||||
|
:data-key="$attrs['data-key']"
|
||||||
:search-url
|
:search-url
|
||||||
>
|
>
|
||||||
<template #body="{ params, orders, searchFn }">
|
<template #body="{ params, orders, searchFn }">
|
||||||
|
|
|
@ -58,7 +58,7 @@ async function getConfig(url, filter) {
|
||||||
const response = await axios.get(url, {
|
const response = await axios.get(url, {
|
||||||
params: { filter: filter },
|
params: { filter: filter },
|
||||||
});
|
});
|
||||||
return response.data && response.data.length > 0 ? response.data[0] : null;
|
return response?.data && response?.data?.length > 0 ? response.data[0] : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
async function fetchViewConfigData() {
|
async function fetchViewConfigData() {
|
||||||
|
|
|
@ -11,6 +11,9 @@ describe('VnTable', () => {
|
||||||
propsData: {
|
propsData: {
|
||||||
columns: [],
|
columns: [],
|
||||||
},
|
},
|
||||||
|
attrs: {
|
||||||
|
'data-key': 'test',
|
||||||
|
},
|
||||||
});
|
});
|
||||||
vm = wrapper.vm;
|
vm = wrapper.vm;
|
||||||
|
|
||||||
|
|
|
@ -11,13 +11,7 @@ describe('CrudModel', () => {
|
||||||
beforeAll(() => {
|
beforeAll(() => {
|
||||||
wrapper = createWrapper(CrudModel, {
|
wrapper = createWrapper(CrudModel, {
|
||||||
global: {
|
global: {
|
||||||
stubs: [
|
stubs: ['vnPaginate', 'vue-i18n'],
|
||||||
'vnPaginate',
|
|
||||||
'useState',
|
|
||||||
'arrayData',
|
|
||||||
'useStateStore',
|
|
||||||
'vue-i18n',
|
|
||||||
],
|
|
||||||
mocks: {
|
mocks: {
|
||||||
validate: vi.fn(),
|
validate: vi.fn(),
|
||||||
},
|
},
|
||||||
|
@ -29,7 +23,7 @@ describe('CrudModel', () => {
|
||||||
dataKey: 'crudModelKey',
|
dataKey: 'crudModelKey',
|
||||||
model: 'crudModel',
|
model: 'crudModel',
|
||||||
url: 'crudModelUrl',
|
url: 'crudModelUrl',
|
||||||
saveFn: '',
|
saveFn: vi.fn(),
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
wrapper = wrapper.wrapper;
|
wrapper = wrapper.wrapper;
|
||||||
|
@ -231,7 +225,7 @@ describe('CrudModel', () => {
|
||||||
expect(vm.isLoading).toBe(false);
|
expect(vm.isLoading).toBe(false);
|
||||||
expect(vm.hasChanges).toBe(false);
|
expect(vm.hasChanges).toBe(false);
|
||||||
|
|
||||||
await wrapper.setProps({ saveFn: '' });
|
await wrapper.setProps({ saveFn: null });
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should use default url if there's not saveFn", async () => {
|
it("should use default url if there's not saveFn", async () => {
|
||||||
|
|
|
@ -170,7 +170,7 @@ describe('LeftMenu as card', () => {
|
||||||
vm = mount('card').vm;
|
vm = mount('card').vm;
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should get routes for card source', async () => {
|
it('should get routes for card source', () => {
|
||||||
vm.getRoutes();
|
vm.getRoutes();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -251,7 +251,6 @@ describe('LeftMenu as main', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should get routes for main source', () => {
|
it('should get routes for main source', () => {
|
||||||
vm.props.source = 'main';
|
|
||||||
vm.getRoutes();
|
vm.getRoutes();
|
||||||
expect(navigation.getModules).toHaveBeenCalled();
|
expect(navigation.getModules).toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
|
|
|
@ -0,0 +1,93 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
|
import FetchData from '../FetchData.vue';
|
||||||
|
import VnSelectDialog from './VnSelectDialog.vue';
|
||||||
|
|
||||||
|
import CreateBankEntityForm from '../CreateBankEntityForm.vue';
|
||||||
|
|
||||||
|
const $props = defineProps({
|
||||||
|
iban: {
|
||||||
|
type: String,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
bankEntityFk: {
|
||||||
|
type: Number,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
disableElement: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const filter = {
|
||||||
|
fields: ['id', 'bic', 'name'],
|
||||||
|
order: 'bic ASC',
|
||||||
|
};
|
||||||
|
const { t } = useI18n();
|
||||||
|
const emit = defineEmits(['updateBic']);
|
||||||
|
const iban = ref($props.iban);
|
||||||
|
const bankEntityFk = ref($props.bankEntityFk);
|
||||||
|
const bankEntities = ref([]);
|
||||||
|
|
||||||
|
const autofillBic = async (bic) => {
|
||||||
|
if (!bic) return;
|
||||||
|
const bankEntityId = parseInt(bic.substr(4, 4));
|
||||||
|
const ibanCountry = bic.substr(0, 2);
|
||||||
|
if (ibanCountry != 'ES') return;
|
||||||
|
|
||||||
|
const existBank = bankEntities.value.find((b) => b.id === bankEntityId);
|
||||||
|
bankEntityFk.value = existBank ? bankEntityId : null;
|
||||||
|
emit('updateBic', { iban: iban.value, bankEntityFk: bankEntityFk.value });
|
||||||
|
};
|
||||||
|
|
||||||
|
const getBankEntities = (data) => {
|
||||||
|
bankEntityFk.value = data.id;
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<FetchData
|
||||||
|
url="BankEntities"
|
||||||
|
:filter="filter"
|
||||||
|
auto-load
|
||||||
|
@on-fetch="(data) => (bankEntities = data)"
|
||||||
|
/>
|
||||||
|
<VnInput
|
||||||
|
:label="t('IBAN')"
|
||||||
|
clearable
|
||||||
|
v-model="iban"
|
||||||
|
@update:model-value="autofillBic($event)"
|
||||||
|
:disable="disableElement"
|
||||||
|
>
|
||||||
|
<template #append>
|
||||||
|
<QIcon name="info" class="cursor-info">
|
||||||
|
<QTooltip>{{ t('components.iban_tooltip') }}</QTooltip>
|
||||||
|
</QIcon>
|
||||||
|
</template>
|
||||||
|
</VnInput>
|
||||||
|
<VnSelectDialog
|
||||||
|
:label="t('Swift / BIC')"
|
||||||
|
:acls="[{ model: 'BankEntity', props: '*', accessType: 'WRITE' }]"
|
||||||
|
:options="bankEntities"
|
||||||
|
hide-selected
|
||||||
|
option-label="name"
|
||||||
|
option-value="id"
|
||||||
|
v-model="bankEntityFk"
|
||||||
|
@update:model-value="$emit('updateBic', { iban, bankEntityFk })"
|
||||||
|
:disable="disableElement"
|
||||||
|
>
|
||||||
|
<template #form>
|
||||||
|
<CreateBankEntityForm @on-data-saved="getBankEntities($event)" />
|
||||||
|
</template>
|
||||||
|
<template #option="scope">
|
||||||
|
<QItem v-bind="scope.itemProps">
|
||||||
|
<QItemSection v-if="scope.opt">
|
||||||
|
<QItemLabel>{{ scope.opt.bic }} </QItemLabel>
|
||||||
|
<QItemLabel caption> {{ scope.opt.name }}</QItemLabel>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
</template>
|
||||||
|
</VnSelectDialog>
|
||||||
|
</template>
|
|
@ -33,7 +33,7 @@ onBeforeRouteLeave(() => {
|
||||||
});
|
});
|
||||||
|
|
||||||
onBeforeMount(async () => {
|
onBeforeMount(async () => {
|
||||||
stateStore.cardDescriptorChangeValue(markRaw(props.descriptor));
|
if (props.visual) stateStore.cardDescriptorChangeValue(markRaw(props.descriptor));
|
||||||
|
|
||||||
const route = router.currentRoute.value;
|
const route = router.currentRoute.value;
|
||||||
try {
|
try {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
const model = defineModel({ type: [String, Number], required: true });
|
const model = defineModel({ type: [String, Number], default: '' });
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<QDate v-model="model" :today-btn="true" :options="$attrs.options" />
|
<QDate v-model="model" :today-btn="true" :options="$attrs.options" />
|
||||||
|
|
|
@ -4,6 +4,7 @@ import { useRoute } from 'vue-router';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
|
|
||||||
|
import useNotify from 'src/composables/useNotify.js';
|
||||||
import FetchData from 'components/FetchData.vue';
|
import FetchData from 'components/FetchData.vue';
|
||||||
import VnRow from 'components/ui/VnRow.vue';
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
import VnSelect from 'src/components/common/VnSelect.vue';
|
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||||
|
@ -12,6 +13,7 @@ import FormModelPopup from 'components/FormModelPopup.vue';
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
const { notify } = useNotify();
|
||||||
const emit = defineEmits(['onDataSaved']);
|
const emit = defineEmits(['onDataSaved']);
|
||||||
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
|
@ -61,8 +63,11 @@ function onFileChange(files) {
|
||||||
|
|
||||||
function mapperDms(data) {
|
function mapperDms(data) {
|
||||||
const formData = new FormData();
|
const formData = new FormData();
|
||||||
const { files } = data;
|
let files = data.files;
|
||||||
if (files) formData.append(files?.name, files);
|
if (files) {
|
||||||
|
files = Array.isArray(files) ? files : [files];
|
||||||
|
files.forEach((file) => formData.append(file?.name, file));
|
||||||
|
}
|
||||||
|
|
||||||
const dms = {
|
const dms = {
|
||||||
hasFile: !!data.hasFile,
|
hasFile: !!data.hasFile,
|
||||||
|
@ -83,11 +88,16 @@ function getUrl() {
|
||||||
}
|
}
|
||||||
|
|
||||||
async function save() {
|
async function save() {
|
||||||
|
try {
|
||||||
const body = mapperDms(dms.value);
|
const body = mapperDms(dms.value);
|
||||||
const response = await axios.post(getUrl(), body[0], body[1]);
|
const response = await axios.post(getUrl(), body[0], body[1]);
|
||||||
emit('onDataSaved', body[1].params, response);
|
emit('onDataSaved', body[1].params, response);
|
||||||
|
notify(t('globals.dataSaved'), 'positive');
|
||||||
delete dms.value.files;
|
delete dms.value.files;
|
||||||
return response;
|
return response;
|
||||||
|
} catch (e) {
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function defaultData() {
|
function defaultData() {
|
||||||
|
|
|
@ -4,6 +4,7 @@ import { useI18n } from 'vue-i18n';
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
import { useQuasar, QCheckbox, QBtn, QInput } from 'quasar';
|
import { useQuasar, QCheckbox, QBtn, QInput } from 'quasar';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
|
import { usePrintService } from 'composables/usePrintService';
|
||||||
|
|
||||||
import VnUserLink from '../ui/VnUserLink.vue';
|
import VnUserLink from '../ui/VnUserLink.vue';
|
||||||
import { downloadFile } from 'src/composables/downloadFile';
|
import { downloadFile } from 'src/composables/downloadFile';
|
||||||
|
@ -13,14 +14,17 @@ import VnDms from 'src/components/common/VnDms.vue';
|
||||||
import VnConfirm from 'components/ui/VnConfirm.vue';
|
import VnConfirm from 'components/ui/VnConfirm.vue';
|
||||||
import VnInputDate from 'components/common/VnInputDate.vue';
|
import VnInputDate from 'components/common/VnInputDate.vue';
|
||||||
import { useSession } from 'src/composables/useSession';
|
import { useSession } from 'src/composables/useSession';
|
||||||
|
import useNotify from 'src/composables/useNotify.js';
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const quasar = useQuasar();
|
const quasar = useQuasar();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
const { notify } = useNotify();
|
||||||
const rows = ref([]);
|
const rows = ref([]);
|
||||||
const dmsRef = ref();
|
const dmsRef = ref();
|
||||||
const formDialog = ref({});
|
const formDialog = ref({});
|
||||||
const token = useSession().getTokenMultimedia();
|
const token = useSession().getTokenMultimedia();
|
||||||
|
const { openReport } = usePrintService();
|
||||||
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
model: {
|
model: {
|
||||||
|
@ -88,7 +92,6 @@ const dmsFilter = {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
where: { [$props.filter]: route.params.id },
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const columns = computed(() => [
|
const columns = computed(() => [
|
||||||
|
@ -198,12 +201,7 @@ const columns = computed(() => [
|
||||||
color: 'primary',
|
color: 'primary',
|
||||||
}),
|
}),
|
||||||
click: (prop) =>
|
click: (prop) =>
|
||||||
downloadFile(
|
openReport(`dms/${prop.row.id}/downloadFile`, {}, '_blank'),
|
||||||
prop.row.id,
|
|
||||||
$props.downloadModel,
|
|
||||||
undefined,
|
|
||||||
prop.row.download,
|
|
||||||
),
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
component: QBtn,
|
component: QBtn,
|
||||||
|
@ -258,9 +256,16 @@ function deleteDms(dmsFk) {
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
.onOk(async () => {
|
.onOk(async () => {
|
||||||
await axios.post(`${$props.deleteModel ?? $props.model}/${dmsFk}/removeFile`);
|
try {
|
||||||
|
await axios.post(
|
||||||
|
`${$props.deleteModel ?? $props.model}/${dmsFk}/removeFile`,
|
||||||
|
);
|
||||||
const index = rows.value.findIndex((row) => row.id == dmsFk);
|
const index = rows.value.findIndex((row) => row.id == dmsFk);
|
||||||
rows.value.splice(index, 1);
|
rows.value.splice(index, 1);
|
||||||
|
notify(t('globals.dataDeleted'), 'positive');
|
||||||
|
} catch (e) {
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -298,7 +303,9 @@ defineExpose({
|
||||||
:data-key="$props.model"
|
:data-key="$props.model"
|
||||||
:url="$props.model"
|
:url="$props.model"
|
||||||
:user-filter="dmsFilter"
|
:user-filter="dmsFilter"
|
||||||
|
search-url="dmsFilter"
|
||||||
:order="['dmsFk DESC']"
|
:order="['dmsFk DESC']"
|
||||||
|
:filter="{ where: { [$props.filter]: route.params.id } }"
|
||||||
auto-load
|
auto-load
|
||||||
@on-fetch="setData"
|
@on-fetch="setData"
|
||||||
>
|
>
|
||||||
|
|
|
@ -1,44 +0,0 @@
|
||||||
<script setup>
|
|
||||||
import { useI18n } from 'vue-i18n';
|
|
||||||
import axios from 'axios';
|
|
||||||
|
|
||||||
import VnInput from 'src/components/common/VnInput.vue';
|
|
||||||
|
|
||||||
const { t } = useI18n();
|
|
||||||
const model = defineModel({ type: [Number, String] });
|
|
||||||
const emit = defineEmits(['updateBic']);
|
|
||||||
|
|
||||||
const getIbanCountry = (bank) => {
|
|
||||||
return bank.substr(0, 2);
|
|
||||||
};
|
|
||||||
|
|
||||||
const autofillBic = async (iban) => {
|
|
||||||
if (!iban) return;
|
|
||||||
|
|
||||||
const bankEntityId = parseInt(iban.substr(4, 4));
|
|
||||||
const ibanCountry = getIbanCountry(iban);
|
|
||||||
|
|
||||||
if (ibanCountry != 'ES') return;
|
|
||||||
|
|
||||||
const filter = { where: { id: bankEntityId } };
|
|
||||||
const params = { filter: JSON.stringify(filter) };
|
|
||||||
|
|
||||||
const { data } = await axios.get(`BankEntities`, { params });
|
|
||||||
|
|
||||||
emit('updateBic', data[0]?.id);
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
<template>
|
|
||||||
<VnInput
|
|
||||||
:label="t('IBAN')"
|
|
||||||
clearable
|
|
||||||
v-model="model"
|
|
||||||
@update:model-value="autofillBic($event)"
|
|
||||||
>
|
|
||||||
<template #append>
|
|
||||||
<QIcon name="info" class="cursor-info">
|
|
||||||
<QTooltip>{{ t('components.iban_tooltip') }}</QTooltip>
|
|
||||||
</QIcon>
|
|
||||||
</template>
|
|
||||||
</VnInput>
|
|
||||||
</template>
|
|
|
@ -1,6 +1,6 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { onMounted, watch, computed, ref, useAttrs } from 'vue';
|
import { nextTick, watch, computed, ref, useAttrs } from 'vue';
|
||||||
import { date } from 'quasar';
|
import { date, getCssVar } from 'quasar';
|
||||||
import VnDate from './VnDate.vue';
|
import VnDate from './VnDate.vue';
|
||||||
import { useRequired } from 'src/composables/useRequired';
|
import { useRequired } from 'src/composables/useRequired';
|
||||||
|
|
||||||
|
@ -20,61 +20,18 @@ const $props = defineProps({
|
||||||
});
|
});
|
||||||
|
|
||||||
const vnInputDateRef = ref(null);
|
const vnInputDateRef = ref(null);
|
||||||
|
const errColor = getCssVar('negative');
|
||||||
|
const textColor = ref('');
|
||||||
|
|
||||||
const dateFormat = 'DD/MM/YYYY';
|
const dateFormat = 'DD/MM/YYYY';
|
||||||
const isPopupOpen = ref();
|
const isPopupOpen = ref();
|
||||||
const hover = ref();
|
const hover = ref();
|
||||||
const mask = ref();
|
|
||||||
|
|
||||||
const mixinRules = [requiredFieldRule, ...($attrs.rules ?? [])];
|
const mixinRules = [requiredFieldRule, ...($attrs.rules ?? [])];
|
||||||
|
|
||||||
const formattedDate = computed({
|
|
||||||
get() {
|
|
||||||
if (!model.value) return model.value;
|
|
||||||
return date.formatDate(new Date(model.value), dateFormat);
|
|
||||||
},
|
|
||||||
set(value) {
|
|
||||||
if (value == model.value) return;
|
|
||||||
let newDate;
|
|
||||||
if (value) {
|
|
||||||
// parse input
|
|
||||||
if (value.includes('/') && value.length >= 10) {
|
|
||||||
if (value.at(2) == '/') value = value.split('/').reverse().join('/');
|
|
||||||
value = date.formatDate(
|
|
||||||
new Date(value).toISOString(),
|
|
||||||
'YYYY-MM-DDTHH:mm:ss.SSSZ',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
const [year, month, day] = value.split('-').map((e) => parseInt(e));
|
|
||||||
newDate = new Date(year, month - 1, day);
|
|
||||||
if (model.value) {
|
|
||||||
const orgDate =
|
|
||||||
model.value instanceof Date ? model.value : new Date(model.value);
|
|
||||||
|
|
||||||
newDate.setHours(
|
|
||||||
orgDate.getHours(),
|
|
||||||
orgDate.getMinutes(),
|
|
||||||
orgDate.getSeconds(),
|
|
||||||
orgDate.getMilliseconds(),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!isNaN(newDate)) model.value = newDate.toISOString();
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const popupDate = computed(() =>
|
const popupDate = computed(() =>
|
||||||
model.value ? date.formatDate(new Date(model.value), 'YYYY/MM/DD') : model.value,
|
model.value ? date.formatDate(new Date(model.value), 'YYYY/MM/DD') : model.value,
|
||||||
);
|
);
|
||||||
onMounted(() => {
|
|
||||||
// fix quasar bug
|
|
||||||
mask.value = '##/##/####';
|
|
||||||
});
|
|
||||||
watch(
|
|
||||||
() => model.value,
|
|
||||||
(val) => (formattedDate.value = val),
|
|
||||||
{ immediate: true },
|
|
||||||
);
|
|
||||||
|
|
||||||
const styleAttrs = computed(() => {
|
const styleAttrs = computed(() => {
|
||||||
return $props.isOutlined
|
return $props.isOutlined
|
||||||
|
@ -86,28 +43,138 @@ const styleAttrs = computed(() => {
|
||||||
: {};
|
: {};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const inputValue = ref('');
|
||||||
|
|
||||||
|
const validateAndCleanInput = (value) => {
|
||||||
|
inputValue.value = value.replace(/[^0-9./-]/g, '');
|
||||||
|
};
|
||||||
|
|
||||||
const manageDate = (date) => {
|
const manageDate = (date) => {
|
||||||
formattedDate.value = date;
|
inputValue.value = date.split('/').reverse().join('/');
|
||||||
isPopupOpen.value = false;
|
isPopupOpen.value = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => model.value,
|
||||||
|
(nVal) => {
|
||||||
|
if (nVal) inputValue.value = date.formatDate(new Date(model.value), dateFormat);
|
||||||
|
else inputValue.value = '';
|
||||||
|
},
|
||||||
|
{ immediate: true },
|
||||||
|
);
|
||||||
|
|
||||||
|
const formatDate = () => {
|
||||||
|
let value = inputValue.value;
|
||||||
|
if (!value || value === model.value) {
|
||||||
|
textColor.value = '';
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
const regex =
|
||||||
|
/^([0]?[1-9]|[12][0-9]|3[01])([./-])([0]?[1-9]|1[0-2])([./-](\d{1,4}))?$/;
|
||||||
|
if (!regex.test(value)) {
|
||||||
|
textColor.value = errColor;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
value = value.replace(/[.-]/g, '/');
|
||||||
|
const parts = value.split('/');
|
||||||
|
if (parts.length < 2) {
|
||||||
|
textColor.value = errColor;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
let [day, month, year] = parts;
|
||||||
|
if (day.length === 1) day = '0' + day;
|
||||||
|
if (month.length === 1) month = '0' + month;
|
||||||
|
|
||||||
|
const currentYear = Date.vnNew().getFullYear();
|
||||||
|
if (!year) year = currentYear;
|
||||||
|
const millennium = currentYear.toString().slice(0, 1);
|
||||||
|
|
||||||
|
switch (year.length) {
|
||||||
|
case 1:
|
||||||
|
year = `${millennium}00${year}`;
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
year = `${millennium}0${year}`;
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
year = `${millennium}${year}`;
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
let isoCandidate = `${year}/${month}/${day}`;
|
||||||
|
isoCandidate = date.formatDate(
|
||||||
|
new Date(isoCandidate).toISOString(),
|
||||||
|
'YYYY-MM-DDTHH:mm:ss.SSSZ',
|
||||||
|
);
|
||||||
|
const [isoYear, isoMonth, isoDay] = isoCandidate.split('-').map((e) => parseInt(e));
|
||||||
|
const parsedDate = new Date(isoYear, isoMonth - 1, isoDay);
|
||||||
|
|
||||||
|
const isValidDate =
|
||||||
|
parsedDate instanceof Date &&
|
||||||
|
!isNaN(parsedDate) &&
|
||||||
|
parsedDate.getFullYear() === parseInt(year) &&
|
||||||
|
parsedDate.getMonth() === parseInt(month) - 1 &&
|
||||||
|
parsedDate.getDate() === parseInt(day);
|
||||||
|
|
||||||
|
if (!isValidDate) {
|
||||||
|
textColor.value = errColor;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (model.value) {
|
||||||
|
const original =
|
||||||
|
model.value instanceof Date ? model.value : new Date(model.value);
|
||||||
|
parsedDate.setHours(
|
||||||
|
original.getHours(),
|
||||||
|
original.getMinutes(),
|
||||||
|
original.getSeconds(),
|
||||||
|
original.getMilliseconds(),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
model.value = parsedDate.toISOString();
|
||||||
|
|
||||||
|
textColor.value = '';
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleEnter = (event) => {
|
||||||
|
formatDate();
|
||||||
|
|
||||||
|
nextTick(() => {
|
||||||
|
const newEvent = new KeyboardEvent('keydown', {
|
||||||
|
key: 'Enter',
|
||||||
|
code: 'Enter',
|
||||||
|
bubbles: true,
|
||||||
|
cancelable: true,
|
||||||
|
});
|
||||||
|
vnInputDateRef.value?.$el?.dispatchEvent(newEvent);
|
||||||
|
});
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div @mouseover="hover = true" @mouseleave="hover = false">
|
<div @mouseover="hover = true" @mouseleave="hover = false">
|
||||||
<QInput
|
<QInput
|
||||||
ref="vnInputDateRef"
|
ref="vnInputDateRef"
|
||||||
v-model="formattedDate"
|
v-model="inputValue"
|
||||||
class="vn-input-date"
|
class="vn-input-date"
|
||||||
:mask="mask"
|
|
||||||
placeholder="dd/mm/aaaa"
|
placeholder="dd/mm/aaaa"
|
||||||
v-bind="{ ...$attrs, ...styleAttrs }"
|
v-bind="{ ...$attrs, ...styleAttrs }"
|
||||||
:class="{ required: isRequired }"
|
:class="{ required: isRequired }"
|
||||||
:rules="mixinRules"
|
:rules="mixinRules"
|
||||||
:clearable="false"
|
:clearable="false"
|
||||||
|
:input-style="{ color: textColor }"
|
||||||
@click="isPopupOpen = !isPopupOpen"
|
@click="isPopupOpen = !isPopupOpen"
|
||||||
@keydown="isPopupOpen = false"
|
@keydown="isPopupOpen = false"
|
||||||
|
@blur="formatDate"
|
||||||
|
@keydown.enter.prevent="handleEnter"
|
||||||
hide-bottom-space
|
hide-bottom-space
|
||||||
:data-cy="($attrs['data-cy'] ?? $attrs.label) + '_inputDate'"
|
:data-cy="($attrs['data-cy'] ?? $attrs.label) + '_inputDate'"
|
||||||
|
@update:model-value="validateAndCleanInput"
|
||||||
>
|
>
|
||||||
<template #append>
|
<template #append>
|
||||||
<QIcon
|
<QIcon
|
||||||
|
@ -116,11 +183,12 @@ const manageDate = (date) => {
|
||||||
v-if="
|
v-if="
|
||||||
($attrs.clearable == undefined || $attrs.clearable) &&
|
($attrs.clearable == undefined || $attrs.clearable) &&
|
||||||
hover &&
|
hover &&
|
||||||
model &&
|
inputValue &&
|
||||||
!$attrs.disable
|
!$attrs.disable
|
||||||
"
|
"
|
||||||
@click="
|
@click="
|
||||||
vnInputDateRef.focus();
|
vnInputDateRef.focus();
|
||||||
|
inputValue = null;
|
||||||
model = null;
|
model = null;
|
||||||
isPopupOpen = false;
|
isPopupOpen = false;
|
||||||
"
|
"
|
||||||
|
|
|
@ -5,7 +5,7 @@ import VnDate from './VnDate.vue';
|
||||||
import VnTime from './VnTime.vue';
|
import VnTime from './VnTime.vue';
|
||||||
|
|
||||||
const $attrs = useAttrs();
|
const $attrs = useAttrs();
|
||||||
const model = defineModel({ type: [Date] });
|
const model = defineModel({ type: [Date, String] });
|
||||||
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
isOutlined: {
|
isOutlined: {
|
||||||
|
@ -29,7 +29,7 @@ const styleAttrs = computed(() => {
|
||||||
const mask = 'DD-MM-YYYY HH:mm';
|
const mask = 'DD-MM-YYYY HH:mm';
|
||||||
const selectedDate = computed({
|
const selectedDate = computed({
|
||||||
get() {
|
get() {
|
||||||
if (!model.value) return new Date(model.value);
|
if (!model.value) return JSON.stringify(new Date(model.value));
|
||||||
return date.formatDate(new Date(model.value), mask);
|
return date.formatDate(new Date(model.value), mask);
|
||||||
},
|
},
|
||||||
set(value) {
|
set(value) {
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, onMounted, onUnmounted, watch, computed } from 'vue';
|
import { ref, onMounted, onUnmounted, computed } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useRoute, useRouter } from 'vue-router';
|
import { useRoute, useRouter } from 'vue-router';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
|
|
|
@ -0,0 +1,80 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import VnCheckbox from './VnCheckbox.vue';
|
||||||
|
import axios from 'axios';
|
||||||
|
import { toRaw } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
const route = useRoute();
|
||||||
|
const { t } = useI18n();
|
||||||
|
const model = defineModel({ type: [Boolean] });
|
||||||
|
const props = defineProps({
|
||||||
|
expand: {
|
||||||
|
type: Boolean,
|
||||||
|
default: false,
|
||||||
|
},
|
||||||
|
url: {
|
||||||
|
type: String,
|
||||||
|
default: null,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
searchUrl: {
|
||||||
|
type: [String, Boolean],
|
||||||
|
default: 'table',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const value = ref(false);
|
||||||
|
const rows = ref(0);
|
||||||
|
const onClick = () => {
|
||||||
|
if (value.value) {
|
||||||
|
const { filter } = JSON.parse(route.query[props.searchUrl]);
|
||||||
|
filter.limit = 0;
|
||||||
|
const params = {
|
||||||
|
params: { filter: JSON.stringify(filter) },
|
||||||
|
};
|
||||||
|
axios
|
||||||
|
.get(props.url, params)
|
||||||
|
.then(({ data }) => {
|
||||||
|
rows.value = data;
|
||||||
|
})
|
||||||
|
.catch(console.error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
defineEmits(['update:selected', 'select:all']);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<div style="display: flex">
|
||||||
|
<VnCheckbox v-model="value" @click="$emit('update:selected', value)" />
|
||||||
|
<QBtn
|
||||||
|
v-if="value && $props.expand"
|
||||||
|
flat
|
||||||
|
dense
|
||||||
|
icon="expand_more"
|
||||||
|
@click="onClick"
|
||||||
|
>
|
||||||
|
<QMenu anchor="bottom right" self="top right">
|
||||||
|
<QList>
|
||||||
|
<QItem v-ripple clickable @click="$emit('select:all', toRaw(rows))">
|
||||||
|
{{ t('Select all', { rows: rows.length }) }}
|
||||||
|
</QItem>
|
||||||
|
<slot name="more-options"></slot>
|
||||||
|
</QList>
|
||||||
|
</QMenu>
|
||||||
|
</QBtn>
|
||||||
|
</div>
|
||||||
|
</template>
|
||||||
|
<i18n lang="yml">
|
||||||
|
en:
|
||||||
|
Select all: 'Select all ({rows})'
|
||||||
|
fr:
|
||||||
|
Select all: 'Sélectionner tout ({rows})'
|
||||||
|
es:
|
||||||
|
Select all: 'Seleccionar todo ({rows})'
|
||||||
|
de:
|
||||||
|
Select all: 'Alle auswählen ({rows})'
|
||||||
|
it:
|
||||||
|
Select all: 'Seleziona tutto ({rows})'
|
||||||
|
pt:
|
||||||
|
Select all: 'Selecionar tudo ({rows})'
|
||||||
|
</i18n>
|
|
@ -54,6 +54,10 @@ const $props = defineProps({
|
||||||
type: [Array],
|
type: [Array],
|
||||||
default: () => [],
|
default: () => [],
|
||||||
},
|
},
|
||||||
|
filterFn: {
|
||||||
|
type: Function,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
exprBuilder: {
|
exprBuilder: {
|
||||||
type: Function,
|
type: Function,
|
||||||
default: null,
|
default: null,
|
||||||
|
@ -62,16 +66,12 @@ const $props = defineProps({
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
default: true,
|
default: true,
|
||||||
},
|
},
|
||||||
defaultFilter: {
|
|
||||||
type: Boolean,
|
|
||||||
default: true,
|
|
||||||
},
|
|
||||||
fields: {
|
fields: {
|
||||||
type: Array,
|
type: Array,
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
include: {
|
include: {
|
||||||
type: [Object, Array],
|
type: [Object, Array, String],
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
where: {
|
where: {
|
||||||
|
@ -79,7 +79,7 @@ const $props = defineProps({
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
sortBy: {
|
sortBy: {
|
||||||
type: String,
|
type: [String, Array],
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
limit: {
|
limit: {
|
||||||
|
@ -152,10 +152,22 @@ const value = computed({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const arrayDataKey =
|
||||||
|
$props.dataKey ??
|
||||||
|
($props.url?.length > 0 ? $props.url : ($attrs.name ?? $attrs.label));
|
||||||
|
|
||||||
|
const arrayData = useArrayData(arrayDataKey, {
|
||||||
|
url: $props.url,
|
||||||
|
searchUrl: false,
|
||||||
|
mapKey: $attrs['map-key'],
|
||||||
|
});
|
||||||
|
|
||||||
const computedSortBy = computed(() => {
|
const computedSortBy = computed(() => {
|
||||||
return $props.sortBy || $props.optionLabel + ' ASC';
|
return $props.sortBy || $props.optionLabel + ' ASC';
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const getVal = (val) => ($props.useLike ? { like: `%${val}%` } : val);
|
||||||
|
|
||||||
watch(options, (newValue) => {
|
watch(options, (newValue) => {
|
||||||
setOptions(newValue);
|
setOptions(newValue);
|
||||||
});
|
});
|
||||||
|
@ -174,16 +186,7 @@ onMounted(() => {
|
||||||
if ($props.focusOnMount) setTimeout(() => vnSelectRef.value.showPopup(), 300);
|
if ($props.focusOnMount) setTimeout(() => vnSelectRef.value.showPopup(), 300);
|
||||||
});
|
});
|
||||||
|
|
||||||
const arrayDataKey =
|
const someIsLoading = computed(() => isLoading.value || !!arrayData?.isLoading?.value);
|
||||||
$props.dataKey ??
|
|
||||||
($props.url?.length > 0 ? $props.url : ($attrs.name ?? $attrs.label));
|
|
||||||
|
|
||||||
const arrayData = useArrayData(arrayDataKey, {
|
|
||||||
url: $props.url,
|
|
||||||
searchUrl: false,
|
|
||||||
mapKey: $attrs['map-key'],
|
|
||||||
});
|
|
||||||
|
|
||||||
function findKeyInOptions() {
|
function findKeyInOptions() {
|
||||||
if (!$props.options) return;
|
if (!$props.options) return;
|
||||||
return filter($props.modelValue, $props.options)?.length;
|
return filter($props.modelValue, $props.options)?.length;
|
||||||
|
@ -252,21 +255,18 @@ async function fetchFilter(val) {
|
||||||
}
|
}
|
||||||
|
|
||||||
async function filterHandler(val, update) {
|
async function filterHandler(val, update) {
|
||||||
if (isLoading.value) return update();
|
|
||||||
if (!val && lastVal.value === val) {
|
|
||||||
lastVal.value = val;
|
|
||||||
return update();
|
|
||||||
}
|
|
||||||
lastVal.value = val;
|
|
||||||
let newOptions;
|
let newOptions;
|
||||||
|
|
||||||
if (!$props.defaultFilter) return update();
|
if ($props.filterFn) update($props.filterFn(val));
|
||||||
if (
|
else if (!val && lastVal.value === val) update();
|
||||||
$props.url &&
|
else {
|
||||||
($props.limit || (!$props.limit && Object.keys(myOptions.value).length === 0))
|
const makeRequest =
|
||||||
) {
|
($props.url && $props.limit) ||
|
||||||
newOptions = await fetchFilter(val);
|
(!$props.limit && Object.keys(myOptions.value).length === 0);
|
||||||
} else newOptions = filter(val, myOptionsOriginal.value);
|
newOptions = makeRequest
|
||||||
|
? await fetchFilter(val)
|
||||||
|
: filter(val, myOptionsOriginal.value);
|
||||||
|
|
||||||
update(
|
update(
|
||||||
() => {
|
() => {
|
||||||
if ($props.noOne && noOneText.toLowerCase().includes(val.toLowerCase()))
|
if ($props.noOne && noOneText.toLowerCase().includes(val.toLowerCase()))
|
||||||
|
@ -281,14 +281,15 @@ async function filterHandler(val, update) {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
lastVal.value = val;
|
||||||
}
|
}
|
||||||
|
|
||||||
function nullishToTrue(value) {
|
function nullishToTrue(value) {
|
||||||
return value ?? true;
|
return value ?? true;
|
||||||
}
|
}
|
||||||
|
|
||||||
const getVal = (val) => ($props.useLike ? { like: `%${val}%` } : val);
|
|
||||||
|
|
||||||
async function onScroll({ to, direction, from, index }) {
|
async function onScroll({ to, direction, from, index }) {
|
||||||
const lastIndex = myOptions.value.length - 1;
|
const lastIndex = myOptions.value.length - 1;
|
||||||
|
|
||||||
|
@ -366,7 +367,7 @@ function getCaption(opt) {
|
||||||
virtual-scroll-slice-size="options.length"
|
virtual-scroll-slice-size="options.length"
|
||||||
hide-bottom-space
|
hide-bottom-space
|
||||||
:input-debounce="useURL ? '300' : '0'"
|
:input-debounce="useURL ? '300' : '0'"
|
||||||
:loading="isLoading"
|
:loading="someIsLoading"
|
||||||
@virtual-scroll="onScroll"
|
@virtual-scroll="onScroll"
|
||||||
@keydown="handleKeyDown"
|
@keydown="handleKeyDown"
|
||||||
:data-cy="$attrs.dataCy ?? $attrs.label + '_select'"
|
:data-cy="$attrs.dataCy ?? $attrs.label + '_select'"
|
||||||
|
@ -374,7 +375,7 @@ function getCaption(opt) {
|
||||||
>
|
>
|
||||||
<template #append>
|
<template #append>
|
||||||
<QIcon
|
<QIcon
|
||||||
v-show="isClearable && value"
|
v-show="isClearable && value != null && value !== ''"
|
||||||
name="close"
|
name="close"
|
||||||
@click="
|
@click="
|
||||||
() => {
|
() => {
|
||||||
|
@ -389,7 +390,7 @@ function getCaption(opt) {
|
||||||
<template v-for="(_, slotName) in $slots" #[slotName]="slotData" :key="slotName">
|
<template v-for="(_, slotName) in $slots" #[slotName]="slotData" :key="slotName">
|
||||||
<div v-if="slotName == 'append'">
|
<div v-if="slotName == 'append'">
|
||||||
<QIcon
|
<QIcon
|
||||||
v-show="isClearable && value"
|
v-show="isClearable && value != null && value !== ''"
|
||||||
name="close"
|
name="close"
|
||||||
@click.stop="
|
@click.stop="
|
||||||
() => {
|
() => {
|
||||||
|
@ -414,7 +415,7 @@ function getCaption(opt) {
|
||||||
<QItemLabel>
|
<QItemLabel>
|
||||||
{{ opt[optionLabel] }}
|
{{ opt[optionLabel] }}
|
||||||
</QItemLabel>
|
</QItemLabel>
|
||||||
<QItemLabel caption v-if="getCaption(opt)">
|
<QItemLabel caption v-if="getCaption(opt) !== false">
|
||||||
{{ `#${getCaption(opt)}` }}
|
{{ `#${getCaption(opt)}` }}
|
||||||
</QItemLabel>
|
</QItemLabel>
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
|
|
|
@ -0,0 +1,43 @@
|
||||||
|
import { createWrapper } from 'app/test/vitest/helper';
|
||||||
|
import VnBankDetailsForm from 'components/common/VnBankDetailsForm.vue';
|
||||||
|
import { vi, afterEach, expect, it, beforeEach, describe } from 'vitest';
|
||||||
|
|
||||||
|
describe('VnBankDetail Component', () => {
|
||||||
|
let vm;
|
||||||
|
let wrapper;
|
||||||
|
const bankEntities = [
|
||||||
|
{ id: 2100, bic: 'CAIXESBBXXX', name: 'CaixaBank' },
|
||||||
|
{ id: 1234, bic: 'TESTBIC', name: 'Test Bank' },
|
||||||
|
];
|
||||||
|
const correctIban = 'ES6621000418401234567891';
|
||||||
|
|
||||||
|
beforeAll(() => {
|
||||||
|
wrapper = createWrapper(VnBankDetailsForm, {
|
||||||
|
$props: {
|
||||||
|
iban: null,
|
||||||
|
bankEntityFk: null,
|
||||||
|
disableElement: false,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
vm = wrapper.vm;
|
||||||
|
wrapper = wrapper.wrapper;
|
||||||
|
});
|
||||||
|
|
||||||
|
afterEach(() => {
|
||||||
|
vi.clearAllMocks();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should update bankEntityFk when IBAN exists in bankEntities', async () => {
|
||||||
|
vm.bankEntities = bankEntities;
|
||||||
|
|
||||||
|
await vm.autofillBic(correctIban);
|
||||||
|
expect(vm.bankEntityFk).toBe(2100);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should set bankEntityFk to null when IBAN bank code is not found', async () => {
|
||||||
|
vm.bankEntities = bankEntities;
|
||||||
|
|
||||||
|
await vm.autofillBic('ES1234567891324567891234');
|
||||||
|
expect(vm.bankEntityFk).toBe(null);
|
||||||
|
});
|
||||||
|
});
|
|
@ -12,7 +12,9 @@ describe('VnDiscount', () => {
|
||||||
price: 100,
|
price: 100,
|
||||||
quantity: 2,
|
quantity: 2,
|
||||||
discount: 10,
|
discount: 10,
|
||||||
}
|
mana: 10,
|
||||||
|
promise: vi.fn(),
|
||||||
|
},
|
||||||
}).vm;
|
}).vm;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -41,10 +41,12 @@ describe('VnDms', () => {
|
||||||
companyFk: 2,
|
companyFk: 2,
|
||||||
dmsTypeFk: 3,
|
dmsTypeFk: 3,
|
||||||
description: 'This is a test description',
|
description: 'This is a test description',
|
||||||
files: {
|
files: [
|
||||||
|
{
|
||||||
name: 'example.txt',
|
name: 'example.txt',
|
||||||
content: new Blob(['file content'], { type: 'text/plain' }),
|
content: new Blob(['file content'], { type: 'text/plain' }),
|
||||||
},
|
},
|
||||||
|
],
|
||||||
};
|
};
|
||||||
|
|
||||||
const expectedBody = {
|
const expectedBody = {
|
||||||
|
@ -83,7 +85,7 @@ describe('VnDms', () => {
|
||||||
it('should map DMS data correctly and add file to FormData', () => {
|
it('should map DMS data correctly and add file to FormData', () => {
|
||||||
const [formData, params] = vm.mapperDms(data);
|
const [formData, params] = vm.mapperDms(data);
|
||||||
|
|
||||||
expect(formData.get('example.txt')).toBe(data.files);
|
expect([formData.get('example.txt')]).toStrictEqual(data.files);
|
||||||
expect(expectedBody).toEqual(params.params);
|
expect(expectedBody).toEqual(params.params);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,6 @@ import { createWrapper } from 'app/test/vitest/helper';
|
||||||
import { vi, describe, expect, it } from 'vitest';
|
import { vi, describe, expect, it } from 'vitest';
|
||||||
import VnInput from 'src/components/common/VnInput.vue';
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
|
|
||||||
|
|
||||||
describe('VnInput', () => {
|
describe('VnInput', () => {
|
||||||
let vm;
|
let vm;
|
||||||
let wrapper;
|
let wrapper;
|
||||||
|
@ -12,25 +11,27 @@ describe('VnInput', () => {
|
||||||
wrapper = createWrapper(VnInput, {
|
wrapper = createWrapper(VnInput, {
|
||||||
props: {
|
props: {
|
||||||
modelValue: value,
|
modelValue: value,
|
||||||
isOutlined, emptyToNull, insertable,
|
isOutlined,
|
||||||
maxlength: 101
|
emptyToNull,
|
||||||
|
insertable,
|
||||||
|
maxlength: 101,
|
||||||
},
|
},
|
||||||
attrs: {
|
attrs: {
|
||||||
label: 'test',
|
label: 'test',
|
||||||
required: true,
|
required: true,
|
||||||
maxlength: 101,
|
maxlength: 101,
|
||||||
maxLength: 10,
|
maxLength: 10,
|
||||||
'max-length':20
|
'max-length': 20,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
wrapper = wrapper.wrapper;
|
wrapper = wrapper.wrapper;
|
||||||
vm = wrapper.vm;
|
vm = wrapper.vm;
|
||||||
input = wrapper.find('[data-cy="test_input"]');
|
input = wrapper.find('[data-cy="test_input"]');
|
||||||
};
|
}
|
||||||
|
|
||||||
describe('value', () => {
|
describe('value', () => {
|
||||||
it('should emit update:modelValue when value changes', async () => {
|
it('should emit update:modelValue when value changes', async () => {
|
||||||
generateWrapper('12345', false, false, true)
|
generateWrapper('12345', false, false, true);
|
||||||
await input.setValue('123');
|
await input.setValue('123');
|
||||||
expect(wrapper.emitted('update:modelValue')).toBeTruthy();
|
expect(wrapper.emitted('update:modelValue')).toBeTruthy();
|
||||||
expect(wrapper.emitted('update:modelValue')[0]).toEqual(['123']);
|
expect(wrapper.emitted('update:modelValue')[0]).toEqual(['123']);
|
||||||
|
@ -62,7 +63,6 @@ describe('VnInput', () => {
|
||||||
expect(wrapper.emitted('update:modelValue')).toBeUndefined();
|
expect(wrapper.emitted('update:modelValue')).toBeUndefined();
|
||||||
const spyhandler = vi.spyOn(vm, 'handleInsertMode');
|
const spyhandler = vi.spyOn(vm, 'handleInsertMode');
|
||||||
expect(spyhandler).not.toHaveBeenCalled();
|
expect(spyhandler).not.toHaveBeenCalled();
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -71,12 +71,12 @@ describe('VnInput', () => {
|
||||||
it.skip('handleKeydown respects insertable behavior', async () => {
|
it.skip('handleKeydown respects insertable behavior', async () => {
|
||||||
const expectedValue = '12345';
|
const expectedValue = '12345';
|
||||||
generateWrapper('1234', false, false, true);
|
generateWrapper('1234', false, false, true);
|
||||||
vm.focus()
|
vm.focus();
|
||||||
await input.trigger('keydown', { key: '5' });
|
await input.trigger('keydown', { key: '5' });
|
||||||
await vm.$nextTick();
|
await vm.$nextTick();
|
||||||
expect(wrapper.emitted('update:modelValue')).toBeTruthy();
|
expect(wrapper.emitted('update:modelValue')).toBeTruthy();
|
||||||
expect(wrapper.emitted('update:modelValue')[0]).toEqual([expectedValue ]);
|
expect(wrapper.emitted('update:modelValue')[0]).toEqual([expectedValue]);
|
||||||
expect(vm.value).toBe( expectedValue);
|
expect(vm.value).toBe(expectedValue);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -5,52 +5,71 @@ import VnInputDate from 'components/common/VnInputDate.vue';
|
||||||
let vm;
|
let vm;
|
||||||
let wrapper;
|
let wrapper;
|
||||||
|
|
||||||
function generateWrapper(date, outlined, required) {
|
function generateWrapper(outlined = false, required = false) {
|
||||||
wrapper = createWrapper(VnInputDate, {
|
wrapper = createWrapper(VnInputDate, {
|
||||||
props: {
|
props: {
|
||||||
modelValue: date,
|
modelValue: '2000-12-31T23:00:00.000Z',
|
||||||
|
'onUpdate:modelValue': (e) => wrapper.setProps({ modelValue: e }),
|
||||||
},
|
},
|
||||||
attrs: {
|
attrs: {
|
||||||
isOutlined: outlined,
|
isOutlined: outlined,
|
||||||
required: required
|
required: required,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
wrapper = wrapper.wrapper;
|
wrapper = wrapper.wrapper;
|
||||||
vm = wrapper.vm;
|
vm = wrapper.vm;
|
||||||
};
|
}
|
||||||
|
|
||||||
describe('VnInputDate', () => {
|
describe('VnInputDate', () => {
|
||||||
|
|
||||||
describe('formattedDate', () => {
|
describe('formattedDate', () => {
|
||||||
it('formats a valid date correctly', async () => {
|
it('validateAndCleanInput should remove non-numeric characters', async () => {
|
||||||
generateWrapper('2023-12-25', false, false);
|
generateWrapper();
|
||||||
|
vm.validateAndCleanInput('10a/1s2/2dd0a23');
|
||||||
await vm.$nextTick();
|
await vm.$nextTick();
|
||||||
expect(vm.formattedDate).toBe('25/12/2023');
|
expect(vm.inputValue).toBe('10/12/2023');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('updates the model value when a new date is set', async () => {
|
it('manageDate should reverse the date', async () => {
|
||||||
const input = wrapper.find('input');
|
generateWrapper();
|
||||||
await input.setValue('31/12/2023');
|
vm.manageDate('10/12/2023');
|
||||||
expect(wrapper.emitted()['update:modelValue']).toBeTruthy();
|
await vm.$nextTick();
|
||||||
expect(wrapper.emitted()['update:modelValue'][0][0]).toBe('2023-12-31T00:00:00.000Z');
|
expect(vm.inputValue).toBe('2023/12/10');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should not update the model value when an invalid date is set', async () => {
|
it('formatDate should format the date correctly when a valid date is entered with full year', async () => {
|
||||||
const input = wrapper.find('input');
|
const input = wrapper.find('input');
|
||||||
await input.setValue('invalid-date');
|
await input.setValue('25.12/2002');
|
||||||
expect(wrapper.emitted()['update:modelValue'][0][0]).toBe('2023-12-31T00:00:00.000Z');
|
await vm.$nextTick();
|
||||||
|
await vm.formatDate();
|
||||||
|
expect(vm.model).toBe('2002-12-24T23:00:00.000Z');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should format the date correctly when a valid date is entered with short year', async () => {
|
||||||
|
const input = wrapper.find('input');
|
||||||
|
await input.setValue('31.12-23');
|
||||||
|
await vm.$nextTick();
|
||||||
|
await vm.formatDate();
|
||||||
|
expect(vm.model).toBe('2023-12-30T23:00:00.000Z');
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should format the date correctly when a valid date is entered without year', async () => {
|
||||||
|
const input = wrapper.find('input');
|
||||||
|
await input.setValue('12.03');
|
||||||
|
await vm.$nextTick();
|
||||||
|
await vm.formatDate();
|
||||||
|
expect(vm.model).toBe('2001-03-11T23:00:00.000Z');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('styleAttrs', () => {
|
describe('styleAttrs', () => {
|
||||||
it('should return empty styleAttrs when isOutlined is false', async () => {
|
it('should return empty styleAttrs when isOutlined is false', async () => {
|
||||||
generateWrapper('2023-12-25', false, false);
|
generateWrapper();
|
||||||
await vm.$nextTick();
|
await vm.$nextTick();
|
||||||
expect(vm.styleAttrs).toEqual({});
|
expect(vm.styleAttrs).toEqual({});
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should set styleAttrs when isOutlined is true', async () => {
|
it('should set styleAttrs when isOutlined is true', async () => {
|
||||||
generateWrapper('2023-12-25', true, false);
|
generateWrapper(true, false);
|
||||||
await vm.$nextTick();
|
await vm.$nextTick();
|
||||||
expect(vm.styleAttrs.outlined).toBe(true);
|
expect(vm.styleAttrs.outlined).toBe(true);
|
||||||
});
|
});
|
||||||
|
@ -58,13 +77,13 @@ describe('VnInputDate', () => {
|
||||||
|
|
||||||
describe('required', () => {
|
describe('required', () => {
|
||||||
it('should not applies required class when isRequired is false', async () => {
|
it('should not applies required class when isRequired is false', async () => {
|
||||||
generateWrapper('2023-12-25', false, false);
|
generateWrapper();
|
||||||
await vm.$nextTick();
|
await vm.$nextTick();
|
||||||
expect(wrapper.find('.vn-input-date').classes()).not.toContain('required');
|
expect(wrapper.find('.vn-input-date').classes()).not.toContain('required');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should applies required class when isRequired is true', async () => {
|
it('should applies required class when isRequired is true', async () => {
|
||||||
generateWrapper('2023-12-25', false, true);
|
generateWrapper(false, true);
|
||||||
await vm.$nextTick();
|
await vm.$nextTick();
|
||||||
expect(wrapper.find('.vn-input-date').classes()).toContain('required');
|
expect(wrapper.find('.vn-input-date').classes()).toContain('required');
|
||||||
});
|
});
|
||||||
|
|
|
@ -33,7 +33,7 @@ describe('VnInputDateTime', () => {
|
||||||
it('handles null date value', async () => {
|
it('handles null date value', async () => {
|
||||||
generateWrapper(null, false, true);
|
generateWrapper(null, false, true);
|
||||||
await vm.$nextTick();
|
await vm.$nextTick();
|
||||||
expect(vm.selectedDate).toBeInstanceOf(Date);
|
expect(vm.selectedDate).not.toBe(null);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('updates the model value when a new datetime is set', async () => {
|
it('updates the model value when a new datetime is set', async () => {
|
||||||
|
|
|
@ -90,8 +90,10 @@ describe('VnLog', () => {
|
||||||
|
|
||||||
vm = createWrapper(VnLog, {
|
vm = createWrapper(VnLog, {
|
||||||
global: {
|
global: {
|
||||||
stubs: [],
|
stubs: ['FetchData', 'vue-i18n'],
|
||||||
mocks: {},
|
mocks: {
|
||||||
|
fetch: vi.fn(),
|
||||||
|
},
|
||||||
},
|
},
|
||||||
propsData: {
|
propsData: {
|
||||||
model: 'Claim',
|
model: 'Claim',
|
||||||
|
|
|
@ -26,7 +26,7 @@ describe('VnNotes', () => {
|
||||||
) {
|
) {
|
||||||
vi.spyOn(axios, 'get').mockResolvedValue({ data: [] });
|
vi.spyOn(axios, 'get').mockResolvedValue({ data: [] });
|
||||||
wrapper = createWrapper(VnNotes, {
|
wrapper = createWrapper(VnNotes, {
|
||||||
propsData: options,
|
propsData: { ...defaultOptions, ...options },
|
||||||
});
|
});
|
||||||
wrapper = wrapper.wrapper;
|
wrapper = wrapper.wrapper;
|
||||||
vm = wrapper.vm;
|
vm = wrapper.vm;
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { onBeforeMount, watch, computed, ref } from 'vue';
|
import { watch, ref, onMounted } from 'vue';
|
||||||
import { useArrayData } from 'composables/useArrayData';
|
import { useArrayData } from 'composables/useArrayData';
|
||||||
import { useState } from 'src/composables/useState';
|
|
||||||
import { useRoute } from 'vue-router';
|
|
||||||
import VnDescriptor from './VnDescriptor.vue';
|
import VnDescriptor from './VnDescriptor.vue';
|
||||||
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
|
@ -20,40 +18,50 @@ const $props = defineProps({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const state = useState();
|
|
||||||
const route = useRoute();
|
|
||||||
let arrayData;
|
let arrayData;
|
||||||
let store;
|
let store;
|
||||||
let entity;
|
const entity = ref();
|
||||||
const isLoading = ref(false);
|
const isLoading = ref(false);
|
||||||
const isSameDataKey = computed(() => $props.dataKey === route.meta.moduleName);
|
const containerRef = ref(null);
|
||||||
defineExpose({ getData });
|
|
||||||
|
|
||||||
onBeforeMount(async () => {
|
onMounted(async () => {
|
||||||
arrayData = useArrayData($props.dataKey, {
|
let isPopup;
|
||||||
|
let el = containerRef.value.$el;
|
||||||
|
while (el) {
|
||||||
|
if (el.classList?.contains('q-menu')) {
|
||||||
|
isPopup = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
el = el.parentElement;
|
||||||
|
}
|
||||||
|
|
||||||
|
arrayData = useArrayData($props.dataKey + (isPopup ? 'Proxy' : ''), {
|
||||||
url: $props.url,
|
url: $props.url,
|
||||||
userFilter: $props.filter,
|
userFilter: $props.filter,
|
||||||
skip: 0,
|
skip: 0,
|
||||||
oneRecord: true,
|
oneRecord: true,
|
||||||
});
|
});
|
||||||
store = arrayData.store;
|
store = arrayData.store;
|
||||||
entity = computed(() => {
|
|
||||||
const data = store.data ?? {};
|
|
||||||
if (data) emit('onFetch', data);
|
|
||||||
return data;
|
|
||||||
});
|
|
||||||
|
|
||||||
// It enables to load data only once if the module is the same as the dataKey
|
|
||||||
if (!isSameDataKey.value || !route.params.id || $props.id !== route.params.id)
|
|
||||||
await getData();
|
|
||||||
watch(
|
watch(
|
||||||
() => [$props.url, $props.filter],
|
() => [$props.url, $props.filter],
|
||||||
async () => {
|
async () => {
|
||||||
if (!isSameDataKey.value) await getData();
|
await getData();
|
||||||
|
},
|
||||||
|
{ immediate: true },
|
||||||
|
);
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => arrayData.store.data,
|
||||||
|
(newValue) => {
|
||||||
|
entity.value = newValue;
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
defineExpose({ getData });
|
||||||
|
const emit = defineEmits(['onFetch']);
|
||||||
|
|
||||||
async function getData() {
|
async function getData() {
|
||||||
store.url = $props.url;
|
store.url = $props.url;
|
||||||
store.filter = $props.filter ?? {};
|
store.filter = $props.filter ?? {};
|
||||||
|
@ -61,18 +69,15 @@ async function getData() {
|
||||||
try {
|
try {
|
||||||
await arrayData.fetch({ append: false, updateRouter: false });
|
await arrayData.fetch({ append: false, updateRouter: false });
|
||||||
const { data } = store;
|
const { data } = store;
|
||||||
state.set($props.dataKey, data);
|
|
||||||
emit('onFetch', data);
|
emit('onFetch', data);
|
||||||
} finally {
|
} finally {
|
||||||
isLoading.value = false;
|
isLoading.value = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
const emit = defineEmits(['onFetch']);
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<VnDescriptor v-model="entity" v-bind="$attrs" :module="dataKey">
|
<VnDescriptor v-model="entity" v-bind="$attrs" :module="dataKey" ref="containerRef">
|
||||||
<template v-for="(_, slotName) in $slots" #[slotName]="slotData" :key="slotName">
|
<template v-for="(_, slotName) in $slots" #[slotName]="slotData" :key="slotName">
|
||||||
<slot :name="slotName" v-bind="slotData ?? {}" :key="slotName" />
|
<slot :name="slotName" v-bind="slotData ?? {}" :key="slotName" />
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -89,6 +89,7 @@ function cancel() {
|
||||||
<slot name="customHTML"></slot>
|
<slot name="customHTML"></slot>
|
||||||
</QCardSection>
|
</QCardSection>
|
||||||
<QCardActions align="right">
|
<QCardActions align="right">
|
||||||
|
<slot name="actions" :actions="{ confirm, cancel }">
|
||||||
<QBtn
|
<QBtn
|
||||||
:label="t('globals.cancel')"
|
:label="t('globals.cancel')"
|
||||||
color="primary"
|
color="primary"
|
||||||
|
@ -107,6 +108,7 @@ function cancel() {
|
||||||
autofocus
|
autofocus
|
||||||
data-cy="VnConfirm_confirm"
|
data-cy="VnConfirm_confirm"
|
||||||
/>
|
/>
|
||||||
|
</slot>
|
||||||
</QCardActions>
|
</QCardActions>
|
||||||
</QCard>
|
</QCard>
|
||||||
</QDialog>
|
</QDialog>
|
||||||
|
|
|
@ -2,7 +2,9 @@
|
||||||
import { onBeforeUnmount, onMounted, ref, watch } from 'vue';
|
import { onBeforeUnmount, onMounted, ref, watch } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useArrayData } from 'composables/useArrayData';
|
import { useArrayData } from 'composables/useArrayData';
|
||||||
|
import { useAttrs } from 'vue';
|
||||||
|
|
||||||
|
const attrs = useAttrs();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
const props = defineProps({
|
const props = defineProps({
|
||||||
|
@ -67,7 +69,7 @@ const props = defineProps({
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
searchUrl: {
|
searchUrl: {
|
||||||
type: String,
|
type: [String, Boolean],
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
disableInfiniteScroll: {
|
disableInfiniteScroll: {
|
||||||
|
@ -75,7 +77,7 @@ const props = defineProps({
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
mapKey: {
|
mapKey: {
|
||||||
type: String,
|
type: [String, Boolean],
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
keyData: {
|
keyData: {
|
||||||
|
@ -144,14 +146,14 @@ const addFilter = async (filter, params) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
async function fetch(params) {
|
async function fetch(params) {
|
||||||
useArrayData(props.dataKey, params);
|
arrayData.setOptions(params);
|
||||||
arrayData.resetPagination();
|
arrayData.resetPagination();
|
||||||
await arrayData.fetch({ append: false });
|
await arrayData.fetch({ append: false });
|
||||||
return emitStoreData();
|
return emitStoreData();
|
||||||
}
|
}
|
||||||
|
|
||||||
async function update(params) {
|
async function update(params) {
|
||||||
useArrayData(props.dataKey, params);
|
arrayData.setOptions(params);
|
||||||
const { limit, skip } = store;
|
const { limit, skip } = store;
|
||||||
store.limit = limit + skip;
|
store.limit = limit + skip;
|
||||||
store.skip = 0;
|
store.skip = 0;
|
||||||
|
|
|
@ -46,7 +46,7 @@ const props = defineProps({
|
||||||
default: null,
|
default: null,
|
||||||
},
|
},
|
||||||
order: {
|
order: {
|
||||||
type: String,
|
type: [String, Array],
|
||||||
default: '',
|
default: '',
|
||||||
},
|
},
|
||||||
limit: {
|
limit: {
|
||||||
|
|
|
@ -23,10 +23,15 @@ describe('CardSummary', () => {
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
wrapper = createWrapper(CardSummary, {
|
wrapper = createWrapper(CardSummary, {
|
||||||
|
global: {
|
||||||
|
mocks: {
|
||||||
|
validate: vi.fn(),
|
||||||
|
},
|
||||||
|
},
|
||||||
propsData: {
|
propsData: {
|
||||||
dataKey: 'cardSummaryKey',
|
dataKey: 'cardSummaryKey',
|
||||||
url: 'cardSummaryUrl',
|
url: 'cardSummaryUrl',
|
||||||
filter: 'cardFilter',
|
filter: { key: 'cardFilter' },
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
vm = wrapper.vm;
|
vm = wrapper.vm;
|
||||||
|
@ -50,7 +55,7 @@ describe('CardSummary', () => {
|
||||||
|
|
||||||
it('should set correct props to the store', () => {
|
it('should set correct props to the store', () => {
|
||||||
expect(vm.store.url).toEqual('cardSummaryUrl');
|
expect(vm.store.url).toEqual('cardSummaryUrl');
|
||||||
expect(vm.store.filter).toEqual('cardFilter');
|
expect(vm.store.filter).toEqual({ key: 'cardFilter' });
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should respond to prop changes and refetch data', async () => {
|
it('should respond to prop changes and refetch data', async () => {
|
||||||
|
|
|
@ -7,7 +7,7 @@ describe('VnSearchbar', () => {
|
||||||
let wrapper;
|
let wrapper;
|
||||||
let applyFilterSpy;
|
let applyFilterSpy;
|
||||||
const searchText = 'Bolas de madera';
|
const searchText = 'Bolas de madera';
|
||||||
const userParams = {staticKey: 'staticValue'};
|
const userParams = { staticKey: 'staticValue' };
|
||||||
|
|
||||||
beforeEach(async () => {
|
beforeEach(async () => {
|
||||||
wrapper = createWrapper(VnSearchbar, {
|
wrapper = createWrapper(VnSearchbar, {
|
||||||
|
@ -23,8 +23,9 @@ describe('VnSearchbar', () => {
|
||||||
|
|
||||||
vm.searchText = searchText;
|
vm.searchText = searchText;
|
||||||
vm.arrayData.store.userParams = userParams;
|
vm.arrayData.store.userParams = userParams;
|
||||||
applyFilterSpy = vi.spyOn(vm.arrayData, 'applyFilter').mockImplementation(() => {});
|
applyFilterSpy = vi
|
||||||
|
.spyOn(vm.arrayData, 'applyFilter')
|
||||||
|
.mockImplementation(() => {});
|
||||||
});
|
});
|
||||||
|
|
||||||
afterEach(() => {
|
afterEach(() => {
|
||||||
|
@ -32,7 +33,9 @@ describe('VnSearchbar', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('search resets pagination and applies filter', async () => {
|
it('search resets pagination and applies filter', async () => {
|
||||||
const resetPaginationSpy = vi.spyOn(vm.arrayData, 'resetPagination').mockImplementation(() => {});
|
const resetPaginationSpy = vi
|
||||||
|
.spyOn(vm.arrayData, 'resetPagination')
|
||||||
|
.mockImplementation(() => {});
|
||||||
await vm.search();
|
await vm.search();
|
||||||
|
|
||||||
expect(resetPaginationSpy).toHaveBeenCalled();
|
expect(resetPaginationSpy).toHaveBeenCalled();
|
||||||
|
@ -48,7 +51,7 @@ describe('VnSearchbar', () => {
|
||||||
|
|
||||||
expect(applyFilterSpy).toHaveBeenCalledWith({
|
expect(applyFilterSpy).toHaveBeenCalledWith({
|
||||||
params: { staticKey: 'staticValue', search: searchText },
|
params: { staticKey: 'staticValue', search: searchText },
|
||||||
filter: {skip: 0},
|
filter: { skip: 0 },
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import { vi, describe, expect, it, beforeAll, afterEach } from 'vitest';
|
import { vi, describe, expect, it, beforeAll, afterEach } from 'vitest';
|
||||||
import axios from 'axios';
|
|
||||||
import { createWrapper } from 'app/test/vitest/helper';
|
import { createWrapper } from 'app/test/vitest/helper';
|
||||||
import VnSms from 'src/components/ui/VnSms.vue';
|
import VnSms from 'src/components/ui/VnSms.vue';
|
||||||
|
|
||||||
|
@ -12,6 +11,9 @@ describe('VnSms', () => {
|
||||||
stubs: ['VnPaginate'],
|
stubs: ['VnPaginate'],
|
||||||
mocks: {},
|
mocks: {},
|
||||||
},
|
},
|
||||||
|
propsData: {
|
||||||
|
url: 'SmsUrl',
|
||||||
|
},
|
||||||
}).vm;
|
}).vm;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,8 @@ import { useArrayData } from 'composables/useArrayData';
|
||||||
import { useRouter } from 'vue-router';
|
import { useRouter } from 'vue-router';
|
||||||
import * as vueRouter from 'vue-router';
|
import * as vueRouter from 'vue-router';
|
||||||
import { setActivePinia, createPinia } from 'pinia';
|
import { setActivePinia, createPinia } from 'pinia';
|
||||||
|
import { defineComponent, h } from 'vue';
|
||||||
|
import { mount } from '@vue/test-utils';
|
||||||
|
|
||||||
describe('useArrayData', () => {
|
describe('useArrayData', () => {
|
||||||
const filter = '{"limit":20,"skip":0}';
|
const filter = '{"limit":20,"skip":0}';
|
||||||
|
@ -43,7 +45,7 @@ describe('useArrayData', () => {
|
||||||
it('should fetch and replace url with new params', async () => {
|
it('should fetch and replace url with new params', async () => {
|
||||||
vi.spyOn(axios, 'get').mockResolvedValueOnce({ data: [] });
|
vi.spyOn(axios, 'get').mockResolvedValueOnce({ data: [] });
|
||||||
|
|
||||||
const arrayData = useArrayData('ArrayData', {
|
const arrayData = mountArrayData('ArrayData', {
|
||||||
url: 'mockUrl',
|
url: 'mockUrl',
|
||||||
searchUrl: 'params',
|
searchUrl: 'params',
|
||||||
});
|
});
|
||||||
|
@ -72,7 +74,7 @@ describe('useArrayData', () => {
|
||||||
data: [{ id: 1 }],
|
data: [{ id: 1 }],
|
||||||
});
|
});
|
||||||
|
|
||||||
const arrayData = useArrayData('ArrayData', {
|
const arrayData = mountArrayData('ArrayData', {
|
||||||
url: 'mockUrl',
|
url: 'mockUrl',
|
||||||
navigate: {},
|
navigate: {},
|
||||||
});
|
});
|
||||||
|
@ -94,7 +96,7 @@ describe('useArrayData', () => {
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
|
||||||
const arrayData = useArrayData('ArrayData', {
|
const arrayData = mountArrayData('ArrayData', {
|
||||||
url: 'mockUrl',
|
url: 'mockUrl',
|
||||||
oneRecord: true,
|
oneRecord: true,
|
||||||
});
|
});
|
||||||
|
@ -107,3 +109,17 @@ describe('useArrayData', () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
function mountArrayData(...args) {
|
||||||
|
let arrayData;
|
||||||
|
|
||||||
|
const TestComponent = defineComponent({
|
||||||
|
setup() {
|
||||||
|
arrayData = useArrayData(...args);
|
||||||
|
return () => h('div');
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const asd = mount(TestComponent);
|
||||||
|
return arrayData;
|
||||||
|
}
|
||||||
|
|
|
@ -64,9 +64,7 @@ describe('session', () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe(
|
describe('login', () => {
|
||||||
'login',
|
|
||||||
() => {
|
|
||||||
const expectedUser = {
|
const expectedUser = {
|
||||||
id: 999,
|
id: 999,
|
||||||
name: `T'Challa`,
|
name: `T'Challa`,
|
||||||
|
@ -143,9 +141,7 @@ describe('session', () => {
|
||||||
|
|
||||||
await session.destroy(); // this clears token and user for any other test
|
await session.destroy(); // this clears token and user for any other test
|
||||||
});
|
});
|
||||||
},
|
});
|
||||||
{},
|
|
||||||
);
|
|
||||||
|
|
||||||
describe('RenewToken', () => {
|
describe('RenewToken', () => {
|
||||||
const expectedToken = 'myToken';
|
const expectedToken = 'myToken';
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import moment from 'moment';
|
||||||
|
|
||||||
|
export default function useWeekdaysOrder() {
|
||||||
|
|
||||||
|
const firstDay = moment().weekday(1).day();
|
||||||
|
const weekdays = [...Array(7).keys()].map(i => (i + firstDay) % 7);
|
||||||
|
|
||||||
|
return ref(weekdays);
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
import { onMounted, computed } from 'vue';
|
import { onMounted, computed, ref } from 'vue';
|
||||||
import { useRouter, useRoute } from 'vue-router';
|
import { useRouter, useRoute } from 'vue-router';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import { useArrayDataStore } from 'stores/useArrayDataStore';
|
import { useArrayDataStore } from 'stores/useArrayDataStore';
|
||||||
|
@ -41,7 +41,7 @@ export function useArrayData(key, userOptions) {
|
||||||
|
|
||||||
if (key && userOptions) setOptions();
|
if (key && userOptions) setOptions();
|
||||||
|
|
||||||
function setOptions() {
|
function setOptions(params = userOptions) {
|
||||||
const allowedOptions = [
|
const allowedOptions = [
|
||||||
'url',
|
'url',
|
||||||
'filter',
|
'filter',
|
||||||
|
@ -57,14 +57,14 @@ export function useArrayData(key, userOptions) {
|
||||||
'mapKey',
|
'mapKey',
|
||||||
'oneRecord',
|
'oneRecord',
|
||||||
];
|
];
|
||||||
if (typeof userOptions === 'object') {
|
if (typeof params === 'object') {
|
||||||
for (const option in userOptions) {
|
for (const option in params) {
|
||||||
const isEmpty = userOptions[option] == null || userOptions[option] === '';
|
const isEmpty = params[option] == null || params[option] === '';
|
||||||
if (isEmpty || !allowedOptions.includes(option)) continue;
|
if (isEmpty || !allowedOptions.includes(option)) continue;
|
||||||
|
|
||||||
if (Object.hasOwn(store, option)) {
|
if (Object.hasOwn(store, option)) {
|
||||||
const defaultOpts = userOptions[option];
|
const defaultOpts = params[option];
|
||||||
store[option] = userOptions.keepOpts?.includes(option)
|
store[option] = params.keepOpts?.includes(option)
|
||||||
? Object.assign(defaultOpts, store[option])
|
? Object.assign(defaultOpts, store[option])
|
||||||
: defaultOpts;
|
: defaultOpts;
|
||||||
if (option === 'userParams') store.defaultParams = store[option];
|
if (option === 'userParams') store.defaultParams = store[option];
|
||||||
|
@ -346,7 +346,7 @@ export function useArrayData(key, userOptions) {
|
||||||
}
|
}
|
||||||
|
|
||||||
const totalRows = computed(() => (store.data && store.data.length) || 0);
|
const totalRows = computed(() => (store.data && store.data.length) || 0);
|
||||||
const isLoading = computed(() => store.isLoading || false);
|
const isLoading = ref(store.isLoading || false);
|
||||||
|
|
||||||
return {
|
return {
|
||||||
fetch,
|
fetch,
|
||||||
|
@ -367,5 +367,6 @@ export function useArrayData(key, userOptions) {
|
||||||
deleteOption,
|
deleteOption,
|
||||||
reset,
|
reset,
|
||||||
resetPagination,
|
resetPagination,
|
||||||
|
setOptions,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -343,3 +343,20 @@ input::-webkit-inner-spin-button {
|
||||||
.q-item__section--main ~ .q-item__section--side {
|
.q-item__section--main ~ .q-item__section--side {
|
||||||
padding-inline: 0;
|
padding-inline: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.calendars-header {
|
||||||
|
height: 45px;
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
background-color: $primary;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.calendars-container {
|
||||||
|
max-width: 800px;
|
||||||
|
display: flex;
|
||||||
|
flex-wrap: wrap;
|
||||||
|
justify-content: space-evenly;
|
||||||
|
}
|
|
@ -162,6 +162,9 @@ globals:
|
||||||
department: Department
|
department: Department
|
||||||
noData: No data available
|
noData: No data available
|
||||||
vehicle: Vehicle
|
vehicle: Vehicle
|
||||||
|
selectDocumentId: Select document id
|
||||||
|
document: Document
|
||||||
|
import: Import from existing
|
||||||
pageTitles:
|
pageTitles:
|
||||||
logIn: Login
|
logIn: Login
|
||||||
addressEdit: Update address
|
addressEdit: Update address
|
||||||
|
@ -343,6 +346,7 @@ globals:
|
||||||
parking: Parking
|
parking: Parking
|
||||||
vehicleList: Vehicles
|
vehicleList: Vehicles
|
||||||
vehicle: Vehicle
|
vehicle: Vehicle
|
||||||
|
entryPreAccount: Pre-account
|
||||||
unsavedPopup:
|
unsavedPopup:
|
||||||
title: Unsaved changes will be lost
|
title: Unsaved changes will be lost
|
||||||
subtitle: Are you sure exit without saving?
|
subtitle: Are you sure exit without saving?
|
||||||
|
|
|
@ -166,6 +166,9 @@ globals:
|
||||||
noData: Datos no disponibles
|
noData: Datos no disponibles
|
||||||
department: Departamento
|
department: Departamento
|
||||||
vehicle: Vehículo
|
vehicle: Vehículo
|
||||||
|
selectDocumentId: Seleccione el id de gestión documental
|
||||||
|
document: Documento
|
||||||
|
import: Importar desde existente
|
||||||
pageTitles:
|
pageTitles:
|
||||||
logIn: Inicio de sesión
|
logIn: Inicio de sesión
|
||||||
addressEdit: Modificar consignatario
|
addressEdit: Modificar consignatario
|
||||||
|
@ -346,6 +349,7 @@ globals:
|
||||||
parking: Parking
|
parking: Parking
|
||||||
vehicleList: Vehículos
|
vehicleList: Vehículos
|
||||||
vehicle: Vehículo
|
vehicle: Vehículo
|
||||||
|
entryPreAccount: Precontabilizar
|
||||||
unsavedPopup:
|
unsavedPopup:
|
||||||
title: Los cambios que no haya guardado se perderán
|
title: Los cambios que no haya guardado se perderán
|
||||||
subtitle: ¿Seguro que quiere salir sin guardar?
|
subtitle: ¿Seguro que quiere salir sin guardar?
|
||||||
|
|
|
@ -4,11 +4,6 @@ import AccountSummary from './AccountSummary.vue';
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<QPopupProxy style="max-width: 10px">
|
<QPopupProxy style="max-width: 10px">
|
||||||
<AccountDescriptor
|
<AccountDescriptor v-if="$attrs.id" v-bind="$attrs" :summary="AccountSummary" />
|
||||||
v-if="$attrs.id"
|
|
||||||
v-bind="$attrs"
|
|
||||||
:summary="AccountSummary"
|
|
||||||
:proxy-render="true"
|
|
||||||
/>
|
|
||||||
</QPopupProxy>
|
</QPopupProxy>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref, computed, onMounted } from 'vue';
|
import { computed } from 'vue';
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { toDateHourMinSec, toPercentage } from 'src/filters';
|
import { toDateHourMinSec, toPercentage } from 'src/filters';
|
||||||
|
@ -9,7 +9,6 @@ import DepartmentDescriptorProxy from 'src/pages/Worker/Department/Card/Departme
|
||||||
import EntityDescriptor from 'components/ui/EntityDescriptor.vue';
|
import EntityDescriptor from 'components/ui/EntityDescriptor.vue';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
import VnUserLink from 'src/components/ui/VnUserLink.vue';
|
import VnUserLink from 'src/components/ui/VnUserLink.vue';
|
||||||
import { getUrl } from 'src/composables/getUrl';
|
|
||||||
import ZoneDescriptorProxy from 'src/pages/Zone/Card/ZoneDescriptorProxy.vue';
|
import ZoneDescriptorProxy from 'src/pages/Zone/Card/ZoneDescriptorProxy.vue';
|
||||||
import filter from './ClaimFilter.js';
|
import filter from './ClaimFilter.js';
|
||||||
|
|
||||||
|
@ -23,7 +22,6 @@ const $props = defineProps({
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const salixUrl = ref();
|
|
||||||
const entityId = computed(() => {
|
const entityId = computed(() => {
|
||||||
return $props.id || route.params.id;
|
return $props.id || route.params.id;
|
||||||
});
|
});
|
||||||
|
@ -31,10 +29,6 @@ const entityId = computed(() => {
|
||||||
function stateColor(entity) {
|
function stateColor(entity) {
|
||||||
return entity?.claimState?.classColor;
|
return entity?.claimState?.classColor;
|
||||||
}
|
}
|
||||||
|
|
||||||
onMounted(async () => {
|
|
||||||
salixUrl.value = await getUrl('');
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -126,7 +120,7 @@ onMounted(async () => {
|
||||||
size="md"
|
size="md"
|
||||||
icon="assignment"
|
icon="assignment"
|
||||||
color="primary"
|
color="primary"
|
||||||
:href="salixUrl + 'ticket/' + entity.ticketFk + '/sale-tracking'"
|
:to="{ name: 'TicketSaleTracking', params: { id: entity.ticketFk } }"
|
||||||
>
|
>
|
||||||
<QTooltip>{{ t('claim.saleTracking') }}</QTooltip>
|
<QTooltip>{{ t('claim.saleTracking') }}</QTooltip>
|
||||||
</QBtn>
|
</QBtn>
|
||||||
|
@ -134,7 +128,7 @@ onMounted(async () => {
|
||||||
size="md"
|
size="md"
|
||||||
icon="visibility"
|
icon="visibility"
|
||||||
color="primary"
|
color="primary"
|
||||||
:href="salixUrl + 'ticket/' + entity.ticketFk + '/tracking/index'"
|
:to="{ name: 'TicketTracking', params: { id: entity.ticketFk } }"
|
||||||
>
|
>
|
||||||
<QTooltip>{{ t('claim.ticketTracking') }}</QTooltip>
|
<QTooltip>{{ t('claim.ticketTracking') }}</QTooltip>
|
||||||
</QBtn>
|
</QBtn>
|
||||||
|
|
|
@ -4,11 +4,6 @@ import ClaimSummary from './ClaimSummary.vue';
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<QPopupProxy style="max-width: 10px">
|
<QPopupProxy style="max-width: 10px">
|
||||||
<ClaimDescriptor
|
<ClaimDescriptor v-if="$attrs.id" v-bind="$attrs" :summary="ClaimSummary" />
|
||||||
v-if="$attrs.id"
|
|
||||||
v-bind="$attrs.id"
|
|
||||||
:summary="ClaimSummary"
|
|
||||||
:proxy-render="true"
|
|
||||||
/>
|
|
||||||
</QPopupProxy>
|
</QPopupProxy>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -23,7 +23,7 @@ const claimDms = ref([
|
||||||
]);
|
]);
|
||||||
const client = ref({});
|
const client = ref({});
|
||||||
const inputFile = ref();
|
const inputFile = ref();
|
||||||
const files = ref({});
|
const files = ref([]);
|
||||||
const spinnerRef = ref();
|
const spinnerRef = ref();
|
||||||
const claimDmsRef = ref();
|
const claimDmsRef = ref();
|
||||||
const dmsType = ref({});
|
const dmsType = ref({});
|
||||||
|
@ -255,9 +255,8 @@ function onDrag() {
|
||||||
icon="add"
|
icon="add"
|
||||||
color="primary"
|
color="primary"
|
||||||
>
|
>
|
||||||
<QInput
|
<QFile
|
||||||
ref="inputFile"
|
ref="inputFile"
|
||||||
type="file"
|
|
||||||
style="display: none"
|
style="display: none"
|
||||||
multiple
|
multiple
|
||||||
v-model="files"
|
v-model="files"
|
||||||
|
|
|
@ -52,7 +52,7 @@ describe('ClaimLines', () => {
|
||||||
expectedData,
|
expectedData,
|
||||||
{
|
{
|
||||||
signal: canceller.signal,
|
signal: canceller.signal,
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -69,7 +69,7 @@ describe('ClaimLines', () => {
|
||||||
expect.objectContaining({
|
expect.objectContaining({
|
||||||
message: 'Discount updated',
|
message: 'Discount updated',
|
||||||
type: 'positive',
|
type: 'positive',
|
||||||
})
|
}),
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -14,6 +14,9 @@ describe('ClaimLinesImport', () => {
|
||||||
fetch: vi.fn(),
|
fetch: vi.fn(),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
propsData: {
|
||||||
|
ticketId: 1,
|
||||||
|
},
|
||||||
}).vm;
|
}).vm;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -40,7 +43,7 @@ describe('ClaimLinesImport', () => {
|
||||||
expect.objectContaining({
|
expect.objectContaining({
|
||||||
message: 'Lines added to claim',
|
message: 'Lines added to claim',
|
||||||
type: 'positive',
|
type: 'positive',
|
||||||
})
|
}),
|
||||||
);
|
);
|
||||||
expect(vm.canceller).toEqual(null);
|
expect(vm.canceller).toEqual(null);
|
||||||
});
|
});
|
||||||
|
|
|
@ -41,10 +41,10 @@ describe('ClaimPhoto', () => {
|
||||||
await vm.deleteDms({ index: 0 });
|
await vm.deleteDms({ index: 0 });
|
||||||
|
|
||||||
expect(axios.post).toHaveBeenCalledWith(
|
expect(axios.post).toHaveBeenCalledWith(
|
||||||
`ClaimDms/${claimMock.claimDms[0].dmsFk}/removeFile`
|
`ClaimDms/${claimMock.claimDms[0].dmsFk}/removeFile`,
|
||||||
);
|
);
|
||||||
expect(vm.quasar.notify).toHaveBeenCalledWith(
|
expect(vm.quasar.notify).toHaveBeenCalledWith(
|
||||||
expect.objectContaining({ type: 'positive' })
|
expect.objectContaining({ type: 'positive' }),
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -63,7 +63,7 @@ describe('ClaimPhoto', () => {
|
||||||
data: { index: 1 },
|
data: { index: 1 },
|
||||||
promise: vm.deleteDms,
|
promise: vm.deleteDms,
|
||||||
},
|
},
|
||||||
})
|
}),
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -102,10 +102,10 @@ describe('ClaimPhoto', () => {
|
||||||
new FormData(),
|
new FormData(),
|
||||||
expect.objectContaining({
|
expect.objectContaining({
|
||||||
params: expect.objectContaining({ hasFile: false }),
|
params: expect.objectContaining({ hasFile: false }),
|
||||||
})
|
}),
|
||||||
);
|
);
|
||||||
expect(vm.quasar.notify).toHaveBeenCalledWith(
|
expect(vm.quasar.notify).toHaveBeenCalledWith(
|
||||||
expect.objectContaining({ type: 'positive' })
|
expect.objectContaining({ type: 'positive' }),
|
||||||
);
|
);
|
||||||
|
|
||||||
expect(vm.claimDmsRef.fetch).toHaveBeenCalledOnce();
|
expect(vm.claimDmsRef.fetch).toHaveBeenCalledOnce();
|
||||||
|
|
|
@ -77,10 +77,10 @@ const isDefaultAddress = (address) => {
|
||||||
return client?.value?.defaultAddressFk === address.id ? 1 : 0;
|
return client?.value?.defaultAddressFk === address.id ? 1 : 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
const setDefault = (address) => {
|
const setDefault = async (address) => {
|
||||||
const url = `Clients/${route.params.id}`;
|
const url = `Clients/${route.params.id}`;
|
||||||
const payload = { defaultAddressFk: address.id };
|
const payload = { defaultAddressFk: address.id };
|
||||||
axios.patch(url, payload).then((res) => {
|
await axios.patch(url, payload).then((res) => {
|
||||||
if (res.data) {
|
if (res.data) {
|
||||||
client.value.defaultAddressFk = res.data.defaultAddressFk;
|
client.value.defaultAddressFk = res.data.defaultAddressFk;
|
||||||
sortAddresses();
|
sortAddresses();
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref } from 'vue';
|
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
|
|
||||||
|
@ -7,29 +6,15 @@ import FormModel from 'components/FormModel.vue';
|
||||||
import VnRow from 'components/ui/VnRow.vue';
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
import VnInput from 'src/components/common/VnInput.vue';
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
import VnSelect from 'src/components/common/VnSelect.vue';
|
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||||
import VnSelectDialog from 'src/components/common/VnSelectDialog.vue';
|
import VnBankDetailsForm from 'src/components/common/VnBankDetailsForm.vue';
|
||||||
import CreateBankEntityForm from 'src/components/CreateBankEntityForm.vue';
|
|
||||||
import VnInputBic from 'src/components/common/VnInputBic.vue';
|
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
|
|
||||||
const bankEntitiesRef = ref(null);
|
|
||||||
|
|
||||||
const filter = {
|
|
||||||
fields: ['id', 'bic', 'name'],
|
|
||||||
order: 'bic ASC',
|
|
||||||
};
|
|
||||||
|
|
||||||
const getBankEntities = (data, formData) => {
|
|
||||||
bankEntitiesRef.value.fetch();
|
|
||||||
formData.bankEntityFk = Number(data.id);
|
|
||||||
};
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<FormModel :url-update="`Clients/${route.params.id}`" auto-load model="Customer">
|
<FormModel :url-update="`Clients/${route.params.id}`" auto-load model="Customer">
|
||||||
<template #form="{ data, validate }">
|
<template #form="{ data }">
|
||||||
<VnRow>
|
<VnRow>
|
||||||
<VnSelect
|
<VnSelect
|
||||||
auto-load
|
auto-load
|
||||||
|
@ -42,42 +27,19 @@ const getBankEntities = (data, formData) => {
|
||||||
/>
|
/>
|
||||||
<VnInput :label="t('Due day')" clearable v-model="data.dueDay" />
|
<VnInput :label="t('Due day')" clearable v-model="data.dueDay" />
|
||||||
</VnRow>
|
</VnRow>
|
||||||
|
|
||||||
<VnRow>
|
<VnRow>
|
||||||
<VnInputBic
|
<VnBankDetailsForm
|
||||||
:label="t('IBAN')"
|
v-model:iban="data.iban"
|
||||||
v-model="data.iban"
|
v-model:bankEntityFk="data.bankEntityFk"
|
||||||
@update-bic="(bankEntityFk) => (data.bankEntityFk = bankEntityFk)"
|
@update-bic="
|
||||||
|
({ iban, bankEntityFk }) => {
|
||||||
|
if (!iban || !bankEntityFk) return;
|
||||||
|
data.iban = iban;
|
||||||
|
data.bankEntityFk = bankEntityFk;
|
||||||
|
}
|
||||||
|
"
|
||||||
/>
|
/>
|
||||||
<VnSelectDialog
|
|
||||||
:label="t('Swift / BIC')"
|
|
||||||
ref="bankEntitiesRef"
|
|
||||||
:filter="filter"
|
|
||||||
auto-load
|
|
||||||
url="BankEntities"
|
|
||||||
:acls="[{ model: 'BankEntity', props: '*', accessType: 'WRITE' }]"
|
|
||||||
:rules="validate('Worker.bankEntity')"
|
|
||||||
hide-selected
|
|
||||||
option-label="name"
|
|
||||||
option-value="id"
|
|
||||||
v-model="data.bankEntityFk"
|
|
||||||
>
|
|
||||||
<template #form>
|
|
||||||
<CreateBankEntityForm
|
|
||||||
@on-data-saved="getBankEntities($event, data)"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
<template #option="scope">
|
|
||||||
<QItem v-bind="scope.itemProps">
|
|
||||||
<QItemSection v-if="scope.opt">
|
|
||||||
<QItemLabel>{{ scope.opt.bic }} </QItemLabel>
|
|
||||||
<QItemLabel caption> {{ scope.opt.name }}</QItemLabel>
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
</template>
|
|
||||||
</VnSelectDialog>
|
|
||||||
</VnRow>
|
</VnRow>
|
||||||
|
|
||||||
<VnRow>
|
<VnRow>
|
||||||
<QCheckbox :label="t('Received LCR')" v-model="data.hasLcr" />
|
<QCheckbox :label="t('Received LCR')" v-model="data.hasLcr" />
|
||||||
<QCheckbox :label="t('VNL core received')" v-model="data.hasCoreVnl" />
|
<QCheckbox :label="t('VNL core received')" v-model="data.hasCoreVnl" />
|
||||||
|
|
|
@ -39,7 +39,7 @@ const route = useRoute();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
const entityId = computed(() => {
|
const entityId = computed(() => {
|
||||||
return $props.id || route.params.id;
|
return Number($props.id || route.params.id);
|
||||||
});
|
});
|
||||||
|
|
||||||
const data = ref(useCardDescription());
|
const data = ref(useCardDescription());
|
||||||
|
|
|
@ -86,7 +86,7 @@ async function acceptPropagate({ isEqualizated }) {
|
||||||
:required="true"
|
:required="true"
|
||||||
:rules="validate('client.socialName')"
|
:rules="validate('client.socialName')"
|
||||||
clearable
|
clearable
|
||||||
uppercase="true"
|
:uppercase="true"
|
||||||
v-model="data.socialName"
|
v-model="data.socialName"
|
||||||
>
|
>
|
||||||
<template #append>
|
<template #append>
|
||||||
|
|
|
@ -25,7 +25,7 @@ const $props = defineProps({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const entityId = computed(() => $props.id || route.params.id);
|
const entityId = computed(() => Number($props.id || route.params.id));
|
||||||
const customer = computed(() => summary.value.entity);
|
const customer = computed(() => summary.value.entity);
|
||||||
const summary = ref();
|
const summary = ref();
|
||||||
const defaulterAmount = computed(() => customer.value.defaulters[0]?.amount);
|
const defaulterAmount = computed(() => customer.value.defaulters[0]?.amount);
|
||||||
|
|
|
@ -72,7 +72,7 @@ const exprBuilder = (param, value) => {
|
||||||
option-value="id"
|
option-value="id"
|
||||||
option-label="name"
|
option-label="name"
|
||||||
url="Departments"
|
url="Departments"
|
||||||
no-one="true"
|
:no-one="true"
|
||||||
/>
|
/>
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
|
|
|
@ -100,6 +100,9 @@ const columns = computed(() => [
|
||||||
'row-key': 'id',
|
'row-key': 'id',
|
||||||
selection: 'multiple',
|
selection: 'multiple',
|
||||||
}"
|
}"
|
||||||
|
:multi-check="{
|
||||||
|
expand: true,
|
||||||
|
}"
|
||||||
v-model:selected="selected"
|
v-model:selected="selected"
|
||||||
:right-search="true"
|
:right-search="true"
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
|
|
|
@ -98,7 +98,9 @@ onMounted(async () => {
|
||||||
<QBtn color="primary" icon="show_chart" :disable="!selectedRows">
|
<QBtn color="primary" icon="show_chart" :disable="!selectedRows">
|
||||||
<QPopupProxy ref="popupProxyRef">
|
<QPopupProxy ref="popupProxyRef">
|
||||||
<QCard class="column q-pa-md">
|
<QCard class="column q-pa-md">
|
||||||
<span class="text-body1 q-mb-sm">{{ t('Campaign consumption') }}</span>
|
<span class="text-body1 q-mb-sm">{{
|
||||||
|
t('Campaign consumption', { rows: $props.clients.length })
|
||||||
|
}}</span>
|
||||||
<VnRow>
|
<VnRow>
|
||||||
<VnSelect
|
<VnSelect
|
||||||
:options="moreFields"
|
:options="moreFields"
|
||||||
|
@ -140,12 +142,13 @@ onMounted(async () => {
|
||||||
valentinesDay: Valentine's Day
|
valentinesDay: Valentine's Day
|
||||||
mothersDay: Mother's Day
|
mothersDay: Mother's Day
|
||||||
allSaints: All Saints' Day
|
allSaints: All Saints' Day
|
||||||
|
Campaign consumption: Campaign consumption ({rows})
|
||||||
es:
|
es:
|
||||||
params:
|
params:
|
||||||
valentinesDay: Día de San Valentín
|
valentinesDay: Día de San Valentín
|
||||||
mothersDay: Día de la Madre
|
mothersDay: Día de la Madre
|
||||||
allSaints: Día de Todos los Santos
|
allSaints: Día de Todos los Santos
|
||||||
Campaign consumption: Consumo campaña
|
Campaign consumption: Consumo campaña ({rows})
|
||||||
Campaign: Campaña
|
Campaign: Campaña
|
||||||
From: Desde
|
From: Desde
|
||||||
To: Hasta
|
To: Hasta
|
||||||
|
|
|
@ -32,7 +32,7 @@ describe('CustomerPayments', () => {
|
||||||
expect.objectContaining({
|
expect.objectContaining({
|
||||||
message: 'Payment confirmed',
|
message: 'Payment confirmed',
|
||||||
type: 'positive',
|
type: 'positive',
|
||||||
})
|
}),
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -41,7 +41,6 @@ const sampleType = ref({ hasPreview: false });
|
||||||
const initialData = reactive({});
|
const initialData = reactive({});
|
||||||
const entityId = computed(() => route.params.id);
|
const entityId = computed(() => route.params.id);
|
||||||
const customer = computed(() => useArrayData('Customer').store?.data);
|
const customer = computed(() => useArrayData('Customer').store?.data);
|
||||||
const filterEmailUsers = { where: { userFk: user.value.id } };
|
|
||||||
const filterClientsAddresses = {
|
const filterClientsAddresses = {
|
||||||
include: [
|
include: [
|
||||||
{ relation: 'province', scope: { fields: ['name'] } },
|
{ relation: 'province', scope: { fields: ['name'] } },
|
||||||
|
@ -73,7 +72,7 @@ onBeforeMount(async () => {
|
||||||
|
|
||||||
const setEmailUser = (data) => {
|
const setEmailUser = (data) => {
|
||||||
optionsEmailUsers.value = data;
|
optionsEmailUsers.value = data;
|
||||||
initialData.replyTo = data[0]?.email;
|
initialData.replyTo = data[0]?.notificationEmail;
|
||||||
};
|
};
|
||||||
|
|
||||||
const setClientsAddresses = (data) => {
|
const setClientsAddresses = (data) => {
|
||||||
|
@ -182,10 +181,12 @@ const toCustomerSamples = () => {
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<FetchData
|
<FetchData
|
||||||
:filter="filterEmailUsers"
|
:filter="{
|
||||||
|
where: { id: customer.departmentFk },
|
||||||
|
}"
|
||||||
@on-fetch="setEmailUser"
|
@on-fetch="setEmailUser"
|
||||||
auto-load
|
auto-load
|
||||||
url="EmailUsers"
|
url="Departments"
|
||||||
/>
|
/>
|
||||||
<FetchData
|
<FetchData
|
||||||
:filter="filterClientsAddresses"
|
:filter="filterClientsAddresses"
|
||||||
|
|
|
@ -162,6 +162,9 @@ const entryFilterPanel = ref();
|
||||||
v-model="params.warehouseOutFk"
|
v-model="params.warehouseOutFk"
|
||||||
@update:model-value="searchFn()"
|
@update:model-value="searchFn()"
|
||||||
url="Warehouses"
|
url="Warehouses"
|
||||||
|
:where="{
|
||||||
|
isOrigin: true,
|
||||||
|
}"
|
||||||
:fields="['id', 'name']"
|
:fields="['id', 'name']"
|
||||||
sort-by="name ASC"
|
sort-by="name ASC"
|
||||||
hide-selected
|
hide-selected
|
||||||
|
@ -177,6 +180,9 @@ const entryFilterPanel = ref();
|
||||||
v-model="params.warehouseInFk"
|
v-model="params.warehouseInFk"
|
||||||
@update:model-value="searchFn()"
|
@update:model-value="searchFn()"
|
||||||
url="Warehouses"
|
url="Warehouses"
|
||||||
|
:where="{
|
||||||
|
isDestiny: true,
|
||||||
|
}"
|
||||||
:fields="['id', 'name']"
|
:fields="['id', 'name']"
|
||||||
sort-by="name ASC"
|
sort-by="name ASC"
|
||||||
hide-selected
|
hide-selected
|
||||||
|
|
|
@ -0,0 +1,478 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref, computed, markRaw, useTemplateRef, onBeforeMount, watch } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { toDate, toCurrency } from 'src/filters';
|
||||||
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
|
import VnTable from 'src/components/VnTable/VnTable.vue';
|
||||||
|
import FetchData from 'src/components/FetchData.vue';
|
||||||
|
import VnSelectSupplier from 'src/components/common/VnSelectSupplier.vue';
|
||||||
|
import EntryDescriptorProxy from './Card/EntryDescriptorProxy.vue';
|
||||||
|
import SupplierDescriptorProxy from '../Supplier/Card/SupplierDescriptorProxy.vue';
|
||||||
|
import VnInputNumber from 'src/components/common/VnInputNumber.vue';
|
||||||
|
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
||||||
|
import axios from 'axios';
|
||||||
|
import useNotify from 'src/composables/useNotify';
|
||||||
|
import VnConfirm from 'src/components/ui/VnConfirm.vue';
|
||||||
|
import VnDms from 'src/components/common/VnDms.vue';
|
||||||
|
import { useState } from 'src/composables/useState';
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
import InvoiceInDescriptorProxy from '../InvoiceIn/Card/InvoiceInDescriptorProxy.vue';
|
||||||
|
import { useStateStore } from 'src/stores/useStateStore';
|
||||||
|
import { downloadFile } from 'src/composables/downloadFile';
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const quasar = useQuasar();
|
||||||
|
const { notify } = useNotify();
|
||||||
|
const user = useState().getUser();
|
||||||
|
const stateStore = useStateStore();
|
||||||
|
const updateDialog = ref();
|
||||||
|
const uploadDialog = ref();
|
||||||
|
let maxDays;
|
||||||
|
let defaultDays;
|
||||||
|
const dataKey = 'entryPreaccountingFilter';
|
||||||
|
const url = 'Entries/preAccountingFilter';
|
||||||
|
const arrayData = useArrayData(dataKey);
|
||||||
|
const daysAgo = ref();
|
||||||
|
const isBooked = ref();
|
||||||
|
const dmsData = ref();
|
||||||
|
const table = useTemplateRef('table');
|
||||||
|
const companies = ref([]);
|
||||||
|
const countries = ref([]);
|
||||||
|
const entryTypes = ref([]);
|
||||||
|
const supplierFiscalTypes = ref([]);
|
||||||
|
const warehouses = ref([]);
|
||||||
|
const defaultDmsDescription = ref();
|
||||||
|
const dmsTypeId = ref();
|
||||||
|
const selectedRows = ref([]);
|
||||||
|
const totalAmount = ref();
|
||||||
|
const totalSelectedAmount = computed(() => {
|
||||||
|
if (!selectedRows.value.length) return 0;
|
||||||
|
return selectedRows.value.reduce((acc, entry) => acc + entry.amount, 0);
|
||||||
|
});
|
||||||
|
let supplierRef;
|
||||||
|
let dmsFk;
|
||||||
|
const columns = computed(() => [
|
||||||
|
{
|
||||||
|
name: 'id',
|
||||||
|
label: t('entry.preAccount.id'),
|
||||||
|
isId: true,
|
||||||
|
chip: {
|
||||||
|
condition: () => true,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'invoiceNumber',
|
||||||
|
label: t('entry.preAccount.invoiceNumber'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'company',
|
||||||
|
label: t('globals.company'),
|
||||||
|
columnFilter: {
|
||||||
|
component: 'select',
|
||||||
|
name: 'companyFk',
|
||||||
|
optionLabel: 'code',
|
||||||
|
options: companies.value,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'warehouse',
|
||||||
|
label: t('globals.warehouse'),
|
||||||
|
columnFilter: {
|
||||||
|
component: 'select',
|
||||||
|
name: 'warehouseInFk',
|
||||||
|
options: warehouses.value,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'gestDocFk',
|
||||||
|
label: t('entry.preAccount.gestDocFk'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'dmsType',
|
||||||
|
label: t('entry.preAccount.dmsType'),
|
||||||
|
columnFilter: {
|
||||||
|
component: 'select',
|
||||||
|
label: null,
|
||||||
|
name: 'dmsTypeFk',
|
||||||
|
url: 'DmsTypes',
|
||||||
|
fields: ['id', 'name'],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'reference',
|
||||||
|
label: t('entry.preAccount.reference'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'shipped',
|
||||||
|
label: t('entry.preAccount.shipped'),
|
||||||
|
format: ({ shipped }, dashIfEmpty) => dashIfEmpty(toDate(shipped)),
|
||||||
|
columnFilter: {
|
||||||
|
component: 'date',
|
||||||
|
name: 'shipped',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'landed',
|
||||||
|
label: t('entry.preAccount.landed'),
|
||||||
|
format: ({ landed }, dashIfEmpty) => dashIfEmpty(toDate(landed)),
|
||||||
|
columnFilter: {
|
||||||
|
component: 'date',
|
||||||
|
name: 'landed',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'invoiceInFk',
|
||||||
|
label: t('entry.preAccount.invoiceInFk'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'supplier',
|
||||||
|
label: t('globals.supplier'),
|
||||||
|
format: (row) => row.supplier,
|
||||||
|
columnFilter: {
|
||||||
|
component: markRaw(VnSelectSupplier),
|
||||||
|
label: null,
|
||||||
|
name: 'supplierFk',
|
||||||
|
class: 'fit',
|
||||||
|
event: 'update',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'country',
|
||||||
|
label: t('globals.country'),
|
||||||
|
columnFilter: {
|
||||||
|
component: 'select',
|
||||||
|
name: 'countryFk',
|
||||||
|
options: countries.value,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'description',
|
||||||
|
label: t('entry.preAccount.entryType'),
|
||||||
|
columnFilter: {
|
||||||
|
component: 'select',
|
||||||
|
label: null,
|
||||||
|
name: 'typeFk',
|
||||||
|
options: entryTypes.value,
|
||||||
|
optionLabel: 'description',
|
||||||
|
optionValue: 'code',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'payDem',
|
||||||
|
label: t('entry.preAccount.payDem'),
|
||||||
|
columnFilter: {
|
||||||
|
component: 'number',
|
||||||
|
name: 'payDem',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'fiscalCode',
|
||||||
|
label: t('entry.preAccount.fiscalCode'),
|
||||||
|
format: ({ fiscalCode }) => t(fiscalCode),
|
||||||
|
columnFilter: {
|
||||||
|
component: 'select',
|
||||||
|
name: 'fiscalCode',
|
||||||
|
options: supplierFiscalTypes.value,
|
||||||
|
optionLabel: 'locale',
|
||||||
|
optionValue: 'code',
|
||||||
|
sortBy: 'code',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'amount',
|
||||||
|
label: t('globals.amount'),
|
||||||
|
format: ({ amount }) => toCurrency(amount),
|
||||||
|
columnFilter: {
|
||||||
|
component: 'number',
|
||||||
|
name: 'amount',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'isAgricultural',
|
||||||
|
label: t('entry.preAccount.isAgricultural'),
|
||||||
|
component: 'checkbox',
|
||||||
|
isEditable: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'isBooked',
|
||||||
|
label: t('entry.preAccount.isBooked'),
|
||||||
|
component: 'checkbox',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'isReceived',
|
||||||
|
label: t('entry.preAccount.isReceived'),
|
||||||
|
component: 'checkbox',
|
||||||
|
isEditable: false,
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
|
||||||
|
onBeforeMount(async () => {
|
||||||
|
const { data } = await axios.get('EntryConfigs/findOne', {
|
||||||
|
params: { filter: JSON.stringify({ fields: ['maxDays', 'defaultDays'] }) },
|
||||||
|
});
|
||||||
|
maxDays = data.maxDays;
|
||||||
|
defaultDays = data.defaultDays;
|
||||||
|
daysAgo.value = arrayData.store.userParams.daysAgo || defaultDays;
|
||||||
|
isBooked.value = arrayData.store.userParams.isBooked || false;
|
||||||
|
stateStore.leftDrawer = false;
|
||||||
|
});
|
||||||
|
|
||||||
|
watch(selectedRows, (nVal, oVal) => {
|
||||||
|
const lastRow = nVal.at(-1);
|
||||||
|
if (lastRow?.isBooked) selectedRows.value.pop();
|
||||||
|
if (nVal.length > oVal.length && lastRow.invoiceInFk)
|
||||||
|
quasar.dialog({
|
||||||
|
component: VnConfirm,
|
||||||
|
componentProps: { title: t('entry.preAccount.hasInvoice') },
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
function filterByDaysAgo(val) {
|
||||||
|
if (!val) val = defaultDays;
|
||||||
|
else if (val > maxDays) val = maxDays;
|
||||||
|
daysAgo.value = val;
|
||||||
|
arrayData.store.userParams.daysAgo = daysAgo.value;
|
||||||
|
table.value.reload();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function preAccount() {
|
||||||
|
const entries = selectedRows.value;
|
||||||
|
const { companyFk, isAgricultural, landed } = entries.at(0);
|
||||||
|
try {
|
||||||
|
dmsFk = entries.find(({ gestDocFk }) => gestDocFk)?.gestDocFk;
|
||||||
|
if (isAgricultural) {
|
||||||
|
const year = new Date(landed).getFullYear();
|
||||||
|
supplierRef = (
|
||||||
|
await axios.get('InvoiceIns/getMaxRef', { params: { companyFk, year } })
|
||||||
|
).data;
|
||||||
|
return createInvoice();
|
||||||
|
} else if (dmsFk) {
|
||||||
|
supplierRef = (
|
||||||
|
await axios.get(`Dms/${dmsFk}`, {
|
||||||
|
params: { filter: JSON.stringify({ fields: ['reference'] }) },
|
||||||
|
})
|
||||||
|
).data?.reference;
|
||||||
|
updateDialog.value.show();
|
||||||
|
} else {
|
||||||
|
uploadFile();
|
||||||
|
}
|
||||||
|
} catch (e) {
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
async function updateFile() {
|
||||||
|
await axios.post(`Dms/${dmsFk}/updateFile`, { dmsTypeId: dmsTypeId.value });
|
||||||
|
await createInvoice();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function uploadFile() {
|
||||||
|
const firstSelectedEntry = selectedRows.value.at(0);
|
||||||
|
const { supplier, companyFk, invoiceNumber } = firstSelectedEntry;
|
||||||
|
dmsData.value = {
|
||||||
|
dmsTypeFk: dmsTypeId.value,
|
||||||
|
warehouseFk: user.value.warehouseFk,
|
||||||
|
companyFk: companyFk,
|
||||||
|
description: supplier + defaultDmsDescription.value + invoiceNumber,
|
||||||
|
hasFile: false,
|
||||||
|
};
|
||||||
|
uploadDialog.value.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function afterUploadFile({ reference }, res) {
|
||||||
|
supplierRef = reference;
|
||||||
|
dmsFk = res.data[0].id;
|
||||||
|
await createInvoice();
|
||||||
|
}
|
||||||
|
|
||||||
|
async function createInvoice() {
|
||||||
|
try {
|
||||||
|
await axios.post(`Entries/addInvoiceIn`, {
|
||||||
|
ids: selectedRows.value.map((entry) => entry.id),
|
||||||
|
supplierRef,
|
||||||
|
dmsFk,
|
||||||
|
});
|
||||||
|
notify(t('entry.preAccount.success'), 'positive');
|
||||||
|
} catch (e) {
|
||||||
|
throw e;
|
||||||
|
} finally {
|
||||||
|
supplierRef = null;
|
||||||
|
dmsFk = undefined;
|
||||||
|
selectedRows.value.length = 0;
|
||||||
|
table.value.reload();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<FetchData
|
||||||
|
url="Countries"
|
||||||
|
:filter="{ fields: ['id', 'name'] }"
|
||||||
|
@on-fetch="(data) => (countries = data)"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
url="Companies"
|
||||||
|
:filter="{ fields: ['id', 'code'] }"
|
||||||
|
@on-fetch="(data) => (companies = data)"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
url="Warehouses"
|
||||||
|
:filter="{ fields: ['id', 'name'] }"
|
||||||
|
@on-fetch="(data) => (warehouses = data)"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
url="EntryTypes"
|
||||||
|
:filter="{ fields: ['code', 'description'] }"
|
||||||
|
@on-fetch="(data) => (entryTypes = data)"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
url="supplierFiscalTypes"
|
||||||
|
:filter="{ fields: ['code'] }"
|
||||||
|
@on-fetch="
|
||||||
|
(data) =>
|
||||||
|
(supplierFiscalTypes = data.map((x) => ({ locale: t(x.code), ...x })))
|
||||||
|
"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
url="InvoiceInConfigs/findOne"
|
||||||
|
:filter="{ fields: ['defaultDmsDescription'] }"
|
||||||
|
@on-fetch="(data) => (defaultDmsDescription = data?.defaultDmsDescription)"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
<FetchData
|
||||||
|
url="DmsTypes/findOne"
|
||||||
|
:filter="{ fields: ['id'] }"
|
||||||
|
:where="{ code: 'invoiceIn' }"
|
||||||
|
@on-fetch="(data) => (dmsTypeId = data?.id)"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
<VnSearchbar
|
||||||
|
:data-key
|
||||||
|
:url
|
||||||
|
:label="t('entry.preAccount.search')"
|
||||||
|
:info="t('entry.preAccount.searchInfo')"
|
||||||
|
:search-remove-params="false"
|
||||||
|
/>
|
||||||
|
<VnTable
|
||||||
|
v-model:selected="selectedRows"
|
||||||
|
:data-key
|
||||||
|
:columns
|
||||||
|
:url
|
||||||
|
:search-url="dataKey"
|
||||||
|
ref="table"
|
||||||
|
:disable-option="{ card: true }"
|
||||||
|
redirect="Entry"
|
||||||
|
:order="['landed DESC']"
|
||||||
|
:right-search="false"
|
||||||
|
:user-params="{ daysAgo, isBooked }"
|
||||||
|
:row-click="false"
|
||||||
|
:table="{ selection: 'multiple' }"
|
||||||
|
:limit="0"
|
||||||
|
:footer="true"
|
||||||
|
@on-fetch="
|
||||||
|
(data) => (totalAmount = data?.reduce((acc, entry) => acc + entry.amount, 0))
|
||||||
|
"
|
||||||
|
auto-load
|
||||||
|
>
|
||||||
|
<template #top-left>
|
||||||
|
<QBtn
|
||||||
|
data-cy="preAccount_btn"
|
||||||
|
icon="account_balance"
|
||||||
|
color="primary"
|
||||||
|
class="q-mr-sm"
|
||||||
|
:disable="!selectedRows.length"
|
||||||
|
@click="preAccount"
|
||||||
|
>
|
||||||
|
<QTooltip>{{ t('entry.preAccount.btn') }}</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
<VnInputNumber
|
||||||
|
v-model="daysAgo"
|
||||||
|
:label="$t('globals.daysAgo')"
|
||||||
|
dense
|
||||||
|
:step="1"
|
||||||
|
:decimal-places="0"
|
||||||
|
@update:model-value="filterByDaysAgo"
|
||||||
|
debounce="500"
|
||||||
|
:title="t('entry.preAccount.daysAgo')"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<template #column-id="{ row }">
|
||||||
|
<span class="link" @click.stop>
|
||||||
|
{{ row.id }}
|
||||||
|
<EntryDescriptorProxy :id="row.id" />
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
<template #column-company="{ row }">
|
||||||
|
<QBadge :color="row.color ?? 'transparent'" :label="row.company" />
|
||||||
|
</template>
|
||||||
|
<template #column-gestDocFk="{ row }">
|
||||||
|
<span class="link" @click.stop="downloadFile(row.gestDocFk)">
|
||||||
|
{{ row.gestDocFk }}
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
<template #column-supplier="{ row }">
|
||||||
|
<span class="link" @click.stop>
|
||||||
|
{{ row.supplier }}
|
||||||
|
<SupplierDescriptorProxy :id="row.supplierFk" />
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
<template #column-invoiceInFk="{ row }">
|
||||||
|
<span class="link" @click.stop>
|
||||||
|
{{ row.invoiceInFk }}
|
||||||
|
<InvoiceInDescriptorProxy :id="row.invoiceInFk" />
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
<template #column-footer-amount>
|
||||||
|
<div v-text="toCurrency(totalSelectedAmount)" />
|
||||||
|
<div v-text="toCurrency(totalAmount)" />
|
||||||
|
</template>
|
||||||
|
</VnTable>
|
||||||
|
<VnConfirm
|
||||||
|
ref="updateDialog"
|
||||||
|
:title="t('entry.preAccount.dialog.title')"
|
||||||
|
:message="t('entry.preAccount.dialog.message')"
|
||||||
|
>
|
||||||
|
<template #actions>
|
||||||
|
<QBtn
|
||||||
|
data-cy="updateFileYes"
|
||||||
|
:label="t('globals.yes')"
|
||||||
|
color="primary"
|
||||||
|
@click="updateFile"
|
||||||
|
autofocus
|
||||||
|
v-close-popup
|
||||||
|
/>
|
||||||
|
<QBtn
|
||||||
|
data-cy="updateFileNo"
|
||||||
|
:label="t('globals.no')"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
@click="uploadFile"
|
||||||
|
v-close-popup
|
||||||
|
/>
|
||||||
|
<QBtn :label="t('globals.cancel')" color="primary" flat v-close-popup />
|
||||||
|
</template>
|
||||||
|
</VnConfirm>
|
||||||
|
<QDialog ref="uploadDialog">
|
||||||
|
<VnDms
|
||||||
|
model="dms"
|
||||||
|
:form-initial-data="dmsData"
|
||||||
|
url="Dms/uploadFile"
|
||||||
|
@on-data-saved="afterUploadFile"
|
||||||
|
/>
|
||||||
|
</QDialog>
|
||||||
|
</template>
|
||||||
|
<i18n>
|
||||||
|
en:
|
||||||
|
IntraCommunity: Intra-community
|
||||||
|
NonCommunity: Non-community
|
||||||
|
CanaryIslands: Canary Islands
|
||||||
|
es:
|
||||||
|
IntraCommunity: Intracomunitaria
|
||||||
|
NonCommunity: Extracomunitaria
|
||||||
|
CanaryIslands: Islas Canarias
|
||||||
|
National: Nacional
|
||||||
|
</i18n>
|
|
@ -0,0 +1,63 @@
|
||||||
|
import { vi, describe, expect, it, beforeAll, afterEach } from 'vitest';
|
||||||
|
import { createWrapper } from 'app/test/vitest/helper';
|
||||||
|
import EntryPreAccount from '../EntryPreAccount.vue';
|
||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
|
describe('EntryPreAccount', () => {
|
||||||
|
let wrapper;
|
||||||
|
let vm;
|
||||||
|
|
||||||
|
beforeAll(() => {
|
||||||
|
vi.spyOn(axios, 'get').mockImplementation((url) => {
|
||||||
|
if (url == 'EntryConfigs/findOne')
|
||||||
|
return { data: { maxDays: 90, defaultDays: 30 } };
|
||||||
|
return { data: [] };
|
||||||
|
});
|
||||||
|
wrapper = createWrapper(EntryPreAccount);
|
||||||
|
vm = wrapper.vm;
|
||||||
|
});
|
||||||
|
|
||||||
|
afterEach(() => {
|
||||||
|
vi.clearAllMocks();
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('filterByDaysAgo()', () => {
|
||||||
|
it('should set daysAgo to defaultDays if no value is provided', () => {
|
||||||
|
vm.filterByDaysAgo();
|
||||||
|
expect(vm.daysAgo).toBe(vm.defaultDays);
|
||||||
|
expect(vm.arrayData.store.userParams.daysAgo).toBe(vm.defaultDays);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should set daysAgo to maxDays if the value exceeds maxDays', () => {
|
||||||
|
vm.filterByDaysAgo(500);
|
||||||
|
expect(vm.daysAgo).toBe(vm.maxDays);
|
||||||
|
expect(vm.arrayData.store.userParams.daysAgo).toBe(vm.maxDays);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should set daysAgo to the provided value if it is valid', () => {
|
||||||
|
vm.filterByDaysAgo(30);
|
||||||
|
expect(vm.daysAgo).toBe(30);
|
||||||
|
expect(vm.arrayData.store.userParams.daysAgo).toBe(30);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Dialog behavior when adding a new row', () => {
|
||||||
|
it('should open the dialog if the new row has invoiceInFk', async () => {
|
||||||
|
const dialogSpy = vi.spyOn(vm.quasar, 'dialog');
|
||||||
|
const selectedRows = [{ id: 1, invoiceInFk: 123 }];
|
||||||
|
vm.selectedRows = selectedRows;
|
||||||
|
await vm.$nextTick();
|
||||||
|
expect(dialogSpy).toHaveBeenCalledWith({
|
||||||
|
component: vm.VnConfirm,
|
||||||
|
componentProps: { title: vm.t('entry.preAccount.hasInvoice') },
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should not open the dialog if the new row does not have invoiceInFk', async () => {
|
||||||
|
const dialogSpy = vi.spyOn(vm.quasar, 'dialog');
|
||||||
|
vm.selectedRows = [{ id: 1, invoiceInFk: null }];
|
||||||
|
await vm.$nextTick();
|
||||||
|
expect(dialogSpy).not.toHaveBeenCalled();
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
|
@ -118,6 +118,33 @@ entry:
|
||||||
searchInfo: You can search by entry reference
|
searchInfo: You can search by entry reference
|
||||||
descriptorMenu:
|
descriptorMenu:
|
||||||
showEntryReport: Show entry report
|
showEntryReport: Show entry report
|
||||||
|
preAccount:
|
||||||
|
gestDocFk: Gestdoc
|
||||||
|
dmsType: Gestdoc type
|
||||||
|
invoiceNumber: Entry ref.
|
||||||
|
reference: Gestdoc ref.
|
||||||
|
shipped: Shipped
|
||||||
|
landed: Landed
|
||||||
|
id: Entry
|
||||||
|
invoiceInFk: Invoice in
|
||||||
|
supplierFk: Supplier
|
||||||
|
country: Country
|
||||||
|
description: Entry type
|
||||||
|
payDem: Payment term
|
||||||
|
isBooked: B
|
||||||
|
isReceived: R
|
||||||
|
entryType: Entry type
|
||||||
|
isAgricultural: Agricultural
|
||||||
|
fiscalCode: Account type
|
||||||
|
daysAgo: Max 365 days
|
||||||
|
search: Search
|
||||||
|
searchInfo: You can search by supplier name or nickname
|
||||||
|
btn: Pre-account
|
||||||
|
hasInvoice: This entry has already an invoice in
|
||||||
|
success: It has been successfully pre-accounted
|
||||||
|
dialog:
|
||||||
|
title: Pre-account entries
|
||||||
|
message: Do you want the invoice to inherit the entry document?
|
||||||
entryFilter:
|
entryFilter:
|
||||||
params:
|
params:
|
||||||
isExcludedFromAvailable: Excluded from available
|
isExcludedFromAvailable: Excluded from available
|
||||||
|
|
|
@ -69,6 +69,33 @@ entry:
|
||||||
observationType: Tipo de observación
|
observationType: Tipo de observación
|
||||||
search: Buscar entradas
|
search: Buscar entradas
|
||||||
searchInfo: Puedes buscar por referencia de entrada
|
searchInfo: Puedes buscar por referencia de entrada
|
||||||
|
preAccount:
|
||||||
|
gestDocFk: Gestdoc
|
||||||
|
dmsType: Tipo gestdoc
|
||||||
|
invoiceNumber: Ref. Entrada
|
||||||
|
reference: Ref. GestDoc
|
||||||
|
shipped: F. envío
|
||||||
|
landed: F. llegada
|
||||||
|
id: Entrada
|
||||||
|
invoiceInFk: Recibida
|
||||||
|
supplierFk: Proveedor
|
||||||
|
country: País
|
||||||
|
description: Tipo de Entrada
|
||||||
|
payDem: Plazo de pago
|
||||||
|
isBooked: C
|
||||||
|
isReceived: R
|
||||||
|
entryType: Tipo de entrada
|
||||||
|
isAgricultural: Agricultural
|
||||||
|
fiscalCode: Tipo de cuenta
|
||||||
|
daysAgo: Máximo 365 días
|
||||||
|
search: Buscar
|
||||||
|
searchInfo: Puedes buscar por nombre o alias de proveedor
|
||||||
|
btn: Precontabilizar
|
||||||
|
hasInvoice: Esta entrada ya tiene una f. recibida
|
||||||
|
success: Se ha precontabilizado correctamente
|
||||||
|
dialog:
|
||||||
|
title: Precontabilizar entradas
|
||||||
|
message: ¿Desea que la factura herede el documento de la entrada?
|
||||||
params:
|
params:
|
||||||
entryFk: Entrada
|
entryFk: Entrada
|
||||||
observationTypeFk: Tipo de observación
|
observationTypeFk: Tipo de observación
|
||||||
|
|
|
@ -5,7 +5,7 @@ import InvoiceInSummary from './InvoiceInSummary.vue';
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
id: {
|
id: {
|
||||||
type: Number,
|
type: Number,
|
||||||
required: true,
|
default: null,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -164,6 +164,7 @@ onMounted(async () => {
|
||||||
unelevated
|
unelevated
|
||||||
filled
|
filled
|
||||||
dense
|
dense
|
||||||
|
data-cy="formSubmitBtn"
|
||||||
/>
|
/>
|
||||||
<QBtn
|
<QBtn
|
||||||
v-else
|
v-else
|
||||||
|
@ -174,6 +175,7 @@ onMounted(async () => {
|
||||||
filled
|
filled
|
||||||
dense
|
dense
|
||||||
@click="getStatus = 'stopping'"
|
@click="getStatus = 'stopping'"
|
||||||
|
data-cy="formStopBtn"
|
||||||
/>
|
/>
|
||||||
</QForm>
|
</QForm>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -89,7 +89,6 @@ const insertTag = (rows) => {
|
||||||
:default-remove="false"
|
:default-remove="false"
|
||||||
:user-filter="{
|
:user-filter="{
|
||||||
fields: ['id', 'itemFk', 'tagFk', 'value', 'priority'],
|
fields: ['id', 'itemFk', 'tagFk', 'value', 'priority'],
|
||||||
where: { itemFk: route.params.id },
|
|
||||||
include: {
|
include: {
|
||||||
relation: 'tag',
|
relation: 'tag',
|
||||||
scope: {
|
scope: {
|
||||||
|
@ -97,6 +96,7 @@ const insertTag = (rows) => {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
}"
|
}"
|
||||||
|
:filter="{ where: { itemFk: route.params.id } }"
|
||||||
order="priority"
|
order="priority"
|
||||||
auto-load
|
auto-load
|
||||||
@on-fetch="onItemTagsFetched"
|
@on-fetch="onItemTagsFetched"
|
||||||
|
|
|
@ -11,25 +11,18 @@ export function cloneItem() {
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const cloneItem = async (entityId) => {
|
const cloneItem = async (entityId) => {
|
||||||
const { id } = entityId;
|
const { id } = entityId;
|
||||||
try {
|
|
||||||
const { data } = await axios.post(`Items/${id ?? entityId}/clone`);
|
const { data } = await axios.post(`Items/${id ?? entityId}/clone`);
|
||||||
router.push({ name: 'ItemTags', params: { id: data.id } });
|
router.push({ name: 'ItemTags', params: { id: data.id } });
|
||||||
} catch (err) {
|
|
||||||
console.error('Error cloning item');
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const openCloneDialog = async (entityId) => {
|
const openCloneDialog = async (entityId) => {
|
||||||
quasar
|
quasar.dialog({
|
||||||
.dialog({
|
|
||||||
component: VnConfirm,
|
component: VnConfirm,
|
||||||
componentProps: {
|
componentProps: {
|
||||||
title: t('item.descriptor.clone.title'),
|
title: t('item.descriptor.clone.title'),
|
||||||
message: t('item.descriptor.clone.subTitle'),
|
message: t('item.descriptor.clone.subTitle'),
|
||||||
|
promise: () => cloneItem(entityId),
|
||||||
},
|
},
|
||||||
})
|
|
||||||
.onOk(async () => {
|
|
||||||
await cloneItem(entityId);
|
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
return { openCloneDialog };
|
return { openCloneDialog };
|
||||||
|
|
|
@ -120,7 +120,6 @@ watch(
|
||||||
:data-key="dataKey"
|
:data-key="dataKey"
|
||||||
:tag-value="tagValue"
|
:tag-value="tagValue"
|
||||||
:tags="tags"
|
:tags="tags"
|
||||||
:initial-catalog-params="catalogParams"
|
|
||||||
:arrayData
|
:arrayData
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -27,7 +27,7 @@ const getTotalRef = ref();
|
||||||
const total = ref(0);
|
const total = ref(0);
|
||||||
|
|
||||||
const entityId = computed(() => {
|
const entityId = computed(() => {
|
||||||
return $props.id || route.params.id;
|
return Number($props.id || route.params.id);
|
||||||
});
|
});
|
||||||
|
|
||||||
const orderTotal = computed(() => state.get('orderTotal') ?? 0);
|
const orderTotal = computed(() => state.get('orderTotal') ?? 0);
|
||||||
|
|
|
@ -6,13 +6,18 @@ import { useRoute } from 'vue-router';
|
||||||
import { useSession } from 'src/composables/useSession';
|
import { useSession } from 'src/composables/useSession';
|
||||||
import { toDateHourMin } from 'filters/index';
|
import { toDateHourMin } from 'filters/index';
|
||||||
import { useStateStore } from 'src/stores/useStateStore';
|
import { useStateStore } from 'src/stores/useStateStore';
|
||||||
|
import { dashIfEmpty } from 'src/filters';
|
||||||
|
|
||||||
|
import AgencyDescriptorProxy from '../Agency/Card/AgencyDescriptorProxy.vue';
|
||||||
|
import CustomerDescriptorProxy from 'src/pages/Customer/Card/CustomerDescriptorProxy.vue';
|
||||||
|
import RouteDescriptorProxy from '../Card/RouteDescriptorProxy.vue';
|
||||||
|
import SupplierDescriptorProxy from 'src/pages/Supplier/Card/SupplierDescriptorProxy.vue';
|
||||||
import TicketDescriptorProxy from 'pages/Ticket/Card/TicketDescriptorProxy.vue';
|
import TicketDescriptorProxy from 'pages/Ticket/Card/TicketDescriptorProxy.vue';
|
||||||
import CustomerDescriptorProxy from 'pages/Customer/Card/CustomerDescriptorProxy.vue';
|
|
||||||
|
|
||||||
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
|
import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue';
|
||||||
import VnTable from 'components/VnTable/VnTable.vue';
|
import VnTable from 'components/VnTable/VnTable.vue';
|
||||||
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
import VnSearchbar from 'src/components/ui/VnSearchbar.vue';
|
||||||
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
@ -30,39 +35,117 @@ const userParams = {
|
||||||
|
|
||||||
const columns = computed(() => [
|
const columns = computed(() => [
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'right',
|
||||||
name: 'cmrFk',
|
name: 'cmrFk',
|
||||||
label: t('route.cmr.params.cmrFk'),
|
label: t('cmr.params.cmrFk'),
|
||||||
chip: {
|
chip: {
|
||||||
condition: () => true,
|
condition: () => true,
|
||||||
},
|
},
|
||||||
isId: true,
|
isId: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'center',
|
align: 'right',
|
||||||
name: 'hasCmrDms',
|
label: t('cmr.params.ticketFk'),
|
||||||
label: t('route.cmr.params.hasCmrDms'),
|
|
||||||
component: 'checkbox',
|
|
||||||
cardVisible: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
align: 'left',
|
|
||||||
label: t('route.cmr.params.ticketFk'),
|
|
||||||
name: 'ticketFk',
|
name: 'ticketFk',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'right',
|
||||||
label: t('route.cmr.params.routeFk'),
|
label: t('cmr.params.routeFk'),
|
||||||
name: 'routeFk',
|
name: 'routeFk',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
label: t('cmr.params.client'),
|
||||||
label: t('route.cmr.params.clientFk'),
|
|
||||||
name: 'clientFk',
|
name: 'clientFk',
|
||||||
|
component: 'select',
|
||||||
|
attrs: {
|
||||||
|
url: 'Clients',
|
||||||
|
fields: ['id', 'name'],
|
||||||
|
},
|
||||||
|
columnFilter: {
|
||||||
|
name: 'clientFk',
|
||||||
|
attrs: {
|
||||||
|
url: 'Clients',
|
||||||
|
fields: ['id', 'name'],
|
||||||
|
},
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'right',
|
label: t('cmr.params.agency'),
|
||||||
label: t('route.cmr.params.countryFk'),
|
name: 'agencyModeFk',
|
||||||
|
component: 'select',
|
||||||
|
attrs: {
|
||||||
|
url: 'Agencies',
|
||||||
|
fields: ['id', 'name'],
|
||||||
|
},
|
||||||
|
columnFilter: {
|
||||||
|
name: 'agencyModeFk',
|
||||||
|
attrs: {
|
||||||
|
url: 'Agencies',
|
||||||
|
fields: ['id', 'name'],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
format: ({ agencyName }) => agencyName,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: t('cmr.params.supplier'),
|
||||||
|
name: 'supplierFk',
|
||||||
|
component: 'select',
|
||||||
|
attrs: {
|
||||||
|
url: 'suppliers',
|
||||||
|
fields: ['id', 'name'],
|
||||||
|
},
|
||||||
|
columnFilter: {
|
||||||
|
name: 'supplierFk',
|
||||||
|
attrs: {
|
||||||
|
url: 'suppliers',
|
||||||
|
fields: ['id', 'name'],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: t('cmr.params.sender'),
|
||||||
|
name: 'addressFromFk',
|
||||||
|
component: 'select',
|
||||||
|
attrs: {
|
||||||
|
url: 'Addresses',
|
||||||
|
fields: ['id', 'nickname'],
|
||||||
|
optionValue: 'id',
|
||||||
|
optionLabel: 'nickname',
|
||||||
|
},
|
||||||
|
columnFilter: {
|
||||||
|
name: 'addressFromFk',
|
||||||
|
attrs: {
|
||||||
|
url: 'Addresses',
|
||||||
|
fields: ['id', 'nickname'],
|
||||||
|
optionValue: 'id',
|
||||||
|
optionLabel: 'nickname',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
format: ({ origin }) => origin,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: t('cmr.params.destination'),
|
||||||
|
name: 'addressToFk',
|
||||||
|
component: 'select',
|
||||||
|
attrs: {
|
||||||
|
url: 'addresses',
|
||||||
|
fields: ['id', 'nickname'],
|
||||||
|
optionValue: 'id',
|
||||||
|
optionLabel: 'nickname',
|
||||||
|
},
|
||||||
|
columnFilter: {
|
||||||
|
name: 'addressToFk',
|
||||||
|
attrs: {
|
||||||
|
url: 'addresses',
|
||||||
|
fields: ['id', 'nickname'],
|
||||||
|
optionValue: 'id',
|
||||||
|
optionLabel: 'nickname',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
format: ({ destination }) => destination,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: t('cmr.params.country'),
|
||||||
name: 'countryFk',
|
name: 'countryFk',
|
||||||
component: 'select',
|
component: 'select',
|
||||||
attrs: {
|
attrs: {
|
||||||
|
@ -79,16 +162,61 @@ const columns = computed(() => [
|
||||||
format: ({ countryName }) => countryName,
|
format: ({ countryName }) => countryName,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'right',
|
label: t('cmr.params.created'),
|
||||||
label: t('route.cmr.params.shipped'),
|
name: 'created',
|
||||||
name: 'shipped',
|
|
||||||
cardVisible: true,
|
|
||||||
component: 'date',
|
component: 'date',
|
||||||
format: ({ shipped }) => toDateHourMin(shipped),
|
format: ({ created }) => dashIfEmpty(toDateHourMin(created)),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'right',
|
label: t('cmr.params.shipped'),
|
||||||
label: t('route.cmr.params.warehouseFk'),
|
name: 'shipped',
|
||||||
|
component: 'date',
|
||||||
|
format: ({ shipped }) => dashIfEmpty(toDateHourMin(shipped)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: t('cmr.params.etd'),
|
||||||
|
name: 'ead',
|
||||||
|
component: 'date',
|
||||||
|
format: ({ ead }) => dashIfEmpty(toDateHourMin(ead)),
|
||||||
|
toolTip: t('cmr.params.etdTooltip'),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: t('globals.landed'),
|
||||||
|
name: 'landed',
|
||||||
|
component: 'date',
|
||||||
|
format: ({ landed }) => dashIfEmpty(toDateHourMin(landed)),
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
label: t('cmr.params.packageList'),
|
||||||
|
name: 'packagesList',
|
||||||
|
columnFilter: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
label: t('cmr.params.observation'),
|
||||||
|
name: 'observation',
|
||||||
|
columnFilter: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
label: t('cmr.params.senderInstructions'),
|
||||||
|
name: 'senderInstruccions',
|
||||||
|
columnFilter: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
label: t('cmr.params.paymentInstructions'),
|
||||||
|
name: 'paymentInstruccions',
|
||||||
|
columnFilter: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
label: t('cmr.params.vehiclePlate'),
|
||||||
|
name: 'truckPlate',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: t('cmr.params.warehouse'),
|
||||||
name: 'warehouseFk',
|
name: 'warehouseFk',
|
||||||
component: 'select',
|
component: 'select',
|
||||||
attrs: {
|
attrs: {
|
||||||
|
@ -96,7 +224,6 @@ const columns = computed(() => [
|
||||||
fields: ['id', 'name'],
|
fields: ['id', 'name'],
|
||||||
},
|
},
|
||||||
columnFilter: {
|
columnFilter: {
|
||||||
inWhere: true,
|
|
||||||
name: 'warehouseFk',
|
name: 'warehouseFk',
|
||||||
attrs: {
|
attrs: {
|
||||||
url: 'warehouses',
|
url: 'warehouses',
|
||||||
|
@ -105,12 +232,23 @@ const columns = computed(() => [
|
||||||
},
|
},
|
||||||
format: ({ warehouseName }) => warehouseName,
|
format: ({ warehouseName }) => warehouseName,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
align: 'left',
|
||||||
|
name: 'specialAgreements',
|
||||||
|
label: t('cmr.params.specialAgreements'),
|
||||||
|
columnFilter: false,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'hasCmrDms',
|
||||||
|
label: t('cmr.params.hasCmrDms'),
|
||||||
|
component: 'checkbox',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
align: 'center',
|
align: 'center',
|
||||||
name: 'tableActions',
|
name: 'tableActions',
|
||||||
actions: [
|
actions: [
|
||||||
{
|
{
|
||||||
title: t('route.cmr.params.viewCmr'),
|
title: t('cmr.params.viewCmr'),
|
||||||
icon: 'visibility',
|
icon: 'visibility',
|
||||||
isPrimary: true,
|
isPrimary: true,
|
||||||
action: (row) => window.open(getCmrUrl(row?.cmrFk), '_blank'),
|
action: (row) => window.open(getCmrUrl(row?.cmrFk), '_blank'),
|
||||||
|
@ -151,11 +289,7 @@ function downloadPdfs() {
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<VnSearchbar
|
<VnSearchbar :data-key :label="t('cmr.search')" :info="t('cmr.searchInfo')" />
|
||||||
:data-key
|
|
||||||
:label="t('route.cmr.search')"
|
|
||||||
:info="t('route.cmr.searchInfo')"
|
|
||||||
/>
|
|
||||||
<VnSubToolbar>
|
<VnSubToolbar>
|
||||||
<template #st-actions>
|
<template #st-actions>
|
||||||
<QBtn
|
<QBtn
|
||||||
|
@ -165,7 +299,7 @@ function downloadPdfs() {
|
||||||
:disable="!selectedRows?.length"
|
:disable="!selectedRows?.length"
|
||||||
@click="downloadPdfs"
|
@click="downloadPdfs"
|
||||||
>
|
>
|
||||||
<QTooltip>{{ t('route.cmr.params.downloadCmrs') }}</QTooltip>
|
<QTooltip>{{ t('cmr.params.downloadCmrs') }}</QTooltip>
|
||||||
</QBtn>
|
</QBtn>
|
||||||
</template>
|
</template>
|
||||||
</VnSubToolbar>
|
</VnSubToolbar>
|
||||||
|
@ -191,11 +325,72 @@ function downloadPdfs() {
|
||||||
<TicketDescriptorProxy :id="row.ticketFk" />
|
<TicketDescriptorProxy :id="row.ticketFk" />
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
|
<template #column-routeFk="{ row }">
|
||||||
|
<span class="link" @click.stop>
|
||||||
|
{{ row.routeFk }}
|
||||||
|
<RouteDescriptorProxy :id="row.routeFk" />
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
<template #column-clientFk="{ row }">
|
<template #column-clientFk="{ row }">
|
||||||
<span class="link" @click.stop>
|
<span class="link" @click.stop>
|
||||||
{{ row.clientFk }}
|
{{ row.clientName }}
|
||||||
<CustomerDescriptorProxy :id="row.clientFk" />
|
<CustomerDescriptorProxy :id="row.clientFk" />
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
|
<template #column-agencyModeFk="{ row }">
|
||||||
|
<span class="link" @click.stop>
|
||||||
|
{{ row.agencyName }}
|
||||||
|
<AgencyDescriptorProxy :id="row.agencyModeFk" />
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
<template #column-supplierFk="{ row }">
|
||||||
|
<span class="link" @click.stop>
|
||||||
|
{{ row.carrierName }}
|
||||||
|
<SupplierDescriptorProxy :id="row.supplierFk" />
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
<template #column-observation="{ row }">
|
||||||
|
<VnInput
|
||||||
|
v-if="row.observation"
|
||||||
|
type="textarea"
|
||||||
|
v-model="row.observation"
|
||||||
|
readonly
|
||||||
|
dense
|
||||||
|
rows="2"
|
||||||
|
style="overflow: hidden; text-overflow: ellipsis; white-space: nowrap"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<template #column-packagesList="{ row }">
|
||||||
|
<span>
|
||||||
|
{{ row.packagesList }}
|
||||||
|
<QTooltip v-if="row.packagesList" :label="row.packagesList">
|
||||||
|
{{ row.packagesList }}
|
||||||
|
</QTooltip>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
<template #column-senderInstruccions="{ row }">
|
||||||
|
<span>
|
||||||
|
{{ row.senderInstruccions }}
|
||||||
|
<QTooltip v-if="row.packagesList" :label="row.packagesList">
|
||||||
|
{{ row.senderInstruccions }}
|
||||||
|
</QTooltip>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
<template #column-paymentInstruccions="{ row }">
|
||||||
|
<span>
|
||||||
|
{{ row.paymentInstruccions }}
|
||||||
|
<QTooltip v-if="row.packagesList" :label="row.packagesList">
|
||||||
|
{{ row.paymentInstruccions }}
|
||||||
|
</QTooltip>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
|
<template #column-specialAgreements="{ row }">
|
||||||
|
<span>
|
||||||
|
{{ row.specialAgreements }}
|
||||||
|
<QTooltip v-if="row.packagesList" :label="row.packagesList">
|
||||||
|
{{ row.specialAgreements }}
|
||||||
|
</QTooltip>
|
||||||
|
</span>
|
||||||
|
</template>
|
||||||
</VnTable>
|
</VnTable>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
cmr:
|
||||||
|
search: Search Cmr
|
||||||
|
searchInfo: You can search Cmr by Id
|
||||||
|
params:
|
||||||
|
agency: Agency
|
||||||
|
client: Client
|
||||||
|
cmrFk: CMR id
|
||||||
|
country: Country
|
||||||
|
created: Created
|
||||||
|
destination: Destination
|
||||||
|
downloadCmrs: Download CMRs
|
||||||
|
etd: ETD
|
||||||
|
etdTooltip: Estimated Time Delivery
|
||||||
|
hasCmrDms: Attached in gestdoc
|
||||||
|
observation: Observation
|
||||||
|
packageList: Package List
|
||||||
|
paymentInstructions: Payment instructions
|
||||||
|
routeFk: Route id
|
||||||
|
results: results
|
||||||
|
search: General search
|
||||||
|
sender: Sender
|
||||||
|
senderInstructions: Sender instructions
|
||||||
|
shipped: Shipped
|
||||||
|
specialAgreements: Special agreements
|
||||||
|
supplier: Carrier
|
||||||
|
ticketFk: Ticket id
|
||||||
|
vehiclePlate: Vehicle plate
|
||||||
|
viewCmr: View CMR
|
||||||
|
warehouse: Warehouse
|
||||||
|
'true': 'Yes'
|
||||||
|
'false': 'No'
|
|
@ -0,0 +1,31 @@
|
||||||
|
cmr:
|
||||||
|
search: Buscar Cmr
|
||||||
|
searchInfo: Puedes buscar cmr por id
|
||||||
|
params:
|
||||||
|
agency: Agencia
|
||||||
|
client: Cliente
|
||||||
|
cmrFk: Id cmr
|
||||||
|
country: País
|
||||||
|
created: Creado
|
||||||
|
destination: Destinatario
|
||||||
|
downloadCmrs: Descargar CMRs
|
||||||
|
etd: ETD
|
||||||
|
etdTooltip: Fecha estimada de entrega
|
||||||
|
hasCmrDms: Adjunto en gestdoc
|
||||||
|
observation: Observaciones
|
||||||
|
packageList: Listado embalajes
|
||||||
|
paymentInstructions: Instrucciones de pago
|
||||||
|
routeFk: Id ruta
|
||||||
|
results: Resultados
|
||||||
|
search: Busqueda general
|
||||||
|
sender: Remitente
|
||||||
|
senderInstructions: Instrucciones de envío
|
||||||
|
shipped: F. envío
|
||||||
|
specialAgreements: Acuerdos especiales
|
||||||
|
supplier: Transportista
|
||||||
|
ticketFk: Id ticket
|
||||||
|
vehiclePlate: Matrícula
|
||||||
|
viewCmr: Ver CMR
|
||||||
|
warehouse: Almacén
|
||||||
|
'true': 'Si'
|
||||||
|
'false': 'No'
|
|
@ -0,0 +1,65 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
|
||||||
|
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||||
|
import FormModelPopup from 'components/FormModelPopup.vue';
|
||||||
|
import FetchData from 'components/FetchData.vue';
|
||||||
|
import useNotify from 'src/composables/useNotify.js';
|
||||||
|
|
||||||
|
import axios from 'axios';
|
||||||
|
|
||||||
|
const emit = defineEmits(['onDataSaved']);
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const { notify } = useNotify();
|
||||||
|
const route = useRoute();
|
||||||
|
|
||||||
|
const dmsOptions = ref([]);
|
||||||
|
const dmsId = ref(null);
|
||||||
|
|
||||||
|
const importDms = async () => {
|
||||||
|
try {
|
||||||
|
if (!dmsId.value) throw new Error(t(`vehicle.errors.documentIdEmpty`));
|
||||||
|
|
||||||
|
const data = {
|
||||||
|
vehicleFk: route.params.id,
|
||||||
|
dmsFk: dmsId.value,
|
||||||
|
};
|
||||||
|
|
||||||
|
await axios.post('vehicleDms', data);
|
||||||
|
notify(t('globals.dataSaved'), 'positive');
|
||||||
|
dmsId.value = null;
|
||||||
|
emit('onDataSaved');
|
||||||
|
} catch (e) {
|
||||||
|
throw e;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<FetchData
|
||||||
|
url="Dms"
|
||||||
|
:filter="{ fields: ['id'], order: 'id ASC' }"
|
||||||
|
auto-load
|
||||||
|
@on-fetch="(data) => (dmsOptions = data)"
|
||||||
|
/>
|
||||||
|
<FormModelPopup
|
||||||
|
model="DmsImport"
|
||||||
|
:title="t('globals.selectDocumentId')"
|
||||||
|
:form-initial-data="{}"
|
||||||
|
:save-fn="importDms"
|
||||||
|
>
|
||||||
|
<template #form-inputs>
|
||||||
|
<VnSelect
|
||||||
|
:label="t('globals.document')"
|
||||||
|
:options="dmsOptions"
|
||||||
|
hide-selected
|
||||||
|
option-label="id"
|
||||||
|
option-value="id"
|
||||||
|
v-model="dmsId"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</FormModelPopup>
|
||||||
|
</template>
|
|
@ -0,0 +1,183 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref, computed, onMounted } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
|
||||||
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
|
import FormPopup from 'components/FormPopup.vue';
|
||||||
|
import VnInputDate from 'src/components/common/VnInputDate.vue';
|
||||||
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
|
|
||||||
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
|
import { useVnConfirm } from 'composables/useVnConfirm';
|
||||||
|
import { useState } from 'src/composables/useState';
|
||||||
|
import axios from 'axios';
|
||||||
|
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||||
|
import useNotify from 'src/composables/useNotify.js';
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
event: {
|
||||||
|
type: Object,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
isNewMode: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
eventType: {
|
||||||
|
type: Boolean,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
firstDay: {
|
||||||
|
type: Date,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
lastDay: {
|
||||||
|
type: Date,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const emit = defineEmits(['onSubmit', 'closeForm', 'refresh-events']);
|
||||||
|
|
||||||
|
const route = useRoute();
|
||||||
|
const { t } = useI18n();
|
||||||
|
const { notify } = useNotify();
|
||||||
|
const { openConfirmationModal } = useVnConfirm();
|
||||||
|
const state = useState();
|
||||||
|
const user = state.getUser();
|
||||||
|
|
||||||
|
const isNew = computed(() => props.isNewMode);
|
||||||
|
const vehicleFormData = ref({
|
||||||
|
started: null,
|
||||||
|
finished: null,
|
||||||
|
vehicleStateFk: null,
|
||||||
|
description: '',
|
||||||
|
vehicleFk: null,
|
||||||
|
userFk: null,
|
||||||
|
});
|
||||||
|
|
||||||
|
const arrayData = useArrayData('VehicleEvents');
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
if (props.event) {
|
||||||
|
vehicleFormData.value = props.event;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const createVehicleEvent = async () => {
|
||||||
|
vehicleFormData.value.vehicleFk = route.params.id;
|
||||||
|
vehicleFormData.value.userFk = user.value.id;
|
||||||
|
|
||||||
|
if (isNew.value) {
|
||||||
|
await axios.post(`VehicleEvents`, vehicleFormData.value);
|
||||||
|
} else {
|
||||||
|
await axios.patch(
|
||||||
|
`VehicleEvents/${props.event?.id}`,
|
||||||
|
vehicleFormData.value,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
await refetchEvents();
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
const deleteVehicleEvent = async () => {
|
||||||
|
if (!props.event) return;
|
||||||
|
await axios.delete(`VehicleEvents/${props.event?.id}`);
|
||||||
|
await refetchEvents();
|
||||||
|
};
|
||||||
|
|
||||||
|
const refetchEvents = async () => {
|
||||||
|
await arrayData.refresh({
|
||||||
|
append: false,
|
||||||
|
params: {
|
||||||
|
filter: {
|
||||||
|
where: {
|
||||||
|
vehicleFk: route.params.id,
|
||||||
|
and: [
|
||||||
|
{
|
||||||
|
or: [
|
||||||
|
{ started: { lte: props.lastDay?.toISOString() } },
|
||||||
|
{ started: null }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
or: [
|
||||||
|
{ finished: { gte: props.firstDay?.toISOString() } },
|
||||||
|
{ finished: null }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
emit('refresh-events');
|
||||||
|
notify(t('globals.dataSaved'), 'positive');
|
||||||
|
emit('closeForm');
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<FormPopup
|
||||||
|
:title="isNew ? t('Add vehicle event') : t('Edit vehicle event')"
|
||||||
|
:default-cancel-button="false"
|
||||||
|
:default-submit-button="false"
|
||||||
|
>
|
||||||
|
<template #form-inputs>
|
||||||
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
|
<VnInputDate :label="t('Started')" v-model="vehicleFormData.started" />
|
||||||
|
<VnInputDate :label="t('Finished')" v-model="vehicleFormData.finished" />
|
||||||
|
<VnSelect
|
||||||
|
url="VehicleStates"
|
||||||
|
v-model="vehicleFormData.vehicleStateFk"
|
||||||
|
:label="t('globals.state')"
|
||||||
|
option-label="state"
|
||||||
|
data-cy="State_input"
|
||||||
|
/>
|
||||||
|
</VnRow>
|
||||||
|
<VnInput
|
||||||
|
v-model="vehicleFormData.description"
|
||||||
|
:label="t('globals.description')"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
<template #custom-buttons>
|
||||||
|
<QBtn
|
||||||
|
:label="t('globals.cancel')"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
class="q-mr-sm"
|
||||||
|
v-close-popup
|
||||||
|
/>
|
||||||
|
<QBtn
|
||||||
|
v-if="!isNew"
|
||||||
|
:label="t('globals.delete')"
|
||||||
|
color="primary"
|
||||||
|
flat
|
||||||
|
class="q-mr-sm"
|
||||||
|
@click="
|
||||||
|
openConfirmationModal(
|
||||||
|
t('vehicle.deleteTitle'),
|
||||||
|
t('vehicle.deleteSubtitle'),
|
||||||
|
() => deleteVehicleEvent(),
|
||||||
|
)
|
||||||
|
"
|
||||||
|
/>
|
||||||
|
<QBtn
|
||||||
|
:label="isNew ? t('globals.save') : t('globals.add')"
|
||||||
|
@click="createVehicleEvent"
|
||||||
|
color="primary"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</FormPopup>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<i18n>
|
||||||
|
es:
|
||||||
|
Started: Inicio
|
||||||
|
Finished: Fin
|
||||||
|
Add vehicle event: Agregar evento
|
||||||
|
Edit vehicle event: Editar evento
|
||||||
|
</i18n>
|
|
@ -0,0 +1,86 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref, reactive, onMounted } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
|
import VehicleEventsPanel from './VehicleEventsPanel.vue';
|
||||||
|
import VehicleCalendarGrid from '../VehicleCalendarGrid.vue';
|
||||||
|
import VehicleEventInclusionForm from './VehicleEventInclusionForm.vue';
|
||||||
|
|
||||||
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
|
import RightMenu from 'src/components/common/RightMenu.vue';
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
const stateStore = useStateStore();
|
||||||
|
|
||||||
|
const firstDay = ref();
|
||||||
|
const lastDay = ref();
|
||||||
|
const events = ref([]);
|
||||||
|
const vehicleEventsPanelRef = ref(null);
|
||||||
|
const showVehicleEventForm = ref(false);
|
||||||
|
const vehicleEventsFormProps = reactive({
|
||||||
|
isNewMode: true,
|
||||||
|
date: null,
|
||||||
|
event: null,
|
||||||
|
});
|
||||||
|
|
||||||
|
const refreshEvents = async () => {
|
||||||
|
await vehicleEventsPanelRef.value.fetchData();
|
||||||
|
};
|
||||||
|
|
||||||
|
const openForm = (data) => {
|
||||||
|
const { date = null, isNewMode, event } = data;
|
||||||
|
Object.assign(vehicleEventsFormProps, { date, isNewMode, event });
|
||||||
|
|
||||||
|
showVehicleEventForm.value = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
const onVehicleEventFormClose = () => {
|
||||||
|
showVehicleEventForm.value = false;
|
||||||
|
vehicleEventsFormProps.value = {};
|
||||||
|
};
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<RightMenu>
|
||||||
|
<template #right-panel v-if="stateStore.isHeaderMounted()">
|
||||||
|
<VehicleEventsPanel
|
||||||
|
ref="vehicleEventsPanelRef"
|
||||||
|
:first-day="firstDay"
|
||||||
|
:last-day="lastDay"
|
||||||
|
:events="events"
|
||||||
|
@update:events="events = $event"
|
||||||
|
/>
|
||||||
|
</template>
|
||||||
|
</RightMenu>
|
||||||
|
<QPage class="q-pa-md flex justify-center">
|
||||||
|
<VehicleCalendarGrid
|
||||||
|
v-model:events="events"
|
||||||
|
v-model:firstDay="firstDay"
|
||||||
|
v-model:lastDay="lastDay"
|
||||||
|
data-key="VehicleEvents"
|
||||||
|
@on-date-selected="openForm"
|
||||||
|
/>
|
||||||
|
<QDialog v-model="showVehicleEventForm" @hide="onVehicleEventFormClose()">
|
||||||
|
<VehicleEventInclusionForm
|
||||||
|
v-bind="vehicleEventsFormProps"
|
||||||
|
:first-day="firstDay"
|
||||||
|
:last-day="lastDay"
|
||||||
|
@close-form="onVehicleEventFormClose()"
|
||||||
|
@refresh-events="refreshEvents()"
|
||||||
|
/>
|
||||||
|
</QDialog>
|
||||||
|
<QPageSticky :offset="[20, 20]">
|
||||||
|
<QBtn
|
||||||
|
@click="openForm({ isNewMode: true }, true)"
|
||||||
|
color="primary"
|
||||||
|
fab
|
||||||
|
icon="add"
|
||||||
|
v-shortcut="'+'"
|
||||||
|
/>
|
||||||
|
<QTooltip class="text-no-wrap">
|
||||||
|
{{ t('eventsInclusionForm.addEvent') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QPageSticky>
|
||||||
|
</QPage>
|
||||||
|
</template>
|
|
@ -0,0 +1,196 @@
|
||||||
|
<script setup>
|
||||||
|
import { onMounted, watch, computed, ref } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
|
|
||||||
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
|
import axios from 'axios';
|
||||||
|
import { toDateFormat } from 'src/filters/date.js';
|
||||||
|
import { dashIfEmpty } from 'src/filters';
|
||||||
|
import { useWeekdayStore } from 'src/stores/useWeekdayStore';
|
||||||
|
import { useVnConfirm } from 'composables/useVnConfirm';
|
||||||
|
import useNotify from 'src/composables/useNotify.js';
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
firstDay: {
|
||||||
|
type: Date,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
lastDay: {
|
||||||
|
type: Date,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
|
events: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const emit = defineEmits(['openVehicleForm']);
|
||||||
|
const { t } = useI18n();
|
||||||
|
const route = useRoute();
|
||||||
|
const { notify } = useNotify();
|
||||||
|
const weekdayStore = useWeekdayStore();
|
||||||
|
const { openConfirmationModal } = useVnConfirm();
|
||||||
|
const vehicleStates = ref({});
|
||||||
|
const fetchVehicleState = async () => {
|
||||||
|
const vehicles = await axios.get('VehicleStates');
|
||||||
|
vehicleStates.value = vehicles.data;
|
||||||
|
};
|
||||||
|
|
||||||
|
const getVehicleStateName = (id) => {
|
||||||
|
return vehicleStates.value[id - 1] ?? dashIfEmpty(id - 1);
|
||||||
|
};
|
||||||
|
|
||||||
|
const params = computed(() => ({
|
||||||
|
vehicleFk: route.params.id,
|
||||||
|
started: props.firstDay,
|
||||||
|
finished: props.lastDay,
|
||||||
|
}));
|
||||||
|
|
||||||
|
const arrayData = useArrayData('VehicleEvents', {
|
||||||
|
params: params,
|
||||||
|
url: `VehicleEvents`,
|
||||||
|
});
|
||||||
|
|
||||||
|
const fetchData = async () => {
|
||||||
|
if (!params.value.vehicleFk || !props.firstDay || !props.lastDay) return;
|
||||||
|
|
||||||
|
try {
|
||||||
|
await arrayData.applyFilter({
|
||||||
|
params: {
|
||||||
|
filter: {
|
||||||
|
where: {
|
||||||
|
vehicleFk: route.params.id,
|
||||||
|
and: [
|
||||||
|
{ or: [
|
||||||
|
{ started: { lte: props.lastDay } },
|
||||||
|
{ started: null }
|
||||||
|
]},
|
||||||
|
{ or: [
|
||||||
|
{ finished: { gte: props.firstDay } },
|
||||||
|
{ finished: null }
|
||||||
|
]}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
emit('update:events', arrayData.store.data || []);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error fetching events:', error);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
watch(
|
||||||
|
params,
|
||||||
|
async () => {
|
||||||
|
await fetchData();
|
||||||
|
},
|
||||||
|
{ immediate: true, deep: true },
|
||||||
|
);
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => props.events,
|
||||||
|
(newEvents) => {
|
||||||
|
emit('update:events', newEvents);
|
||||||
|
},
|
||||||
|
{ deep: true }
|
||||||
|
);
|
||||||
|
|
||||||
|
const deleteEvent = async (id) => {
|
||||||
|
if (!id) return;
|
||||||
|
await axios.delete(`VehicleEvents/${id}`);
|
||||||
|
notify(t('globals.dataSaved'), 'positive');
|
||||||
|
await fetchData();
|
||||||
|
};
|
||||||
|
|
||||||
|
const openInclusionForm = (event) => {
|
||||||
|
emit('openVehicleForm', {
|
||||||
|
date: event.dated,
|
||||||
|
event,
|
||||||
|
isNewMode: false,
|
||||||
|
});
|
||||||
|
};
|
||||||
|
|
||||||
|
onMounted(async () => {
|
||||||
|
weekdayStore.initStore();
|
||||||
|
await fetchVehicleState();
|
||||||
|
});
|
||||||
|
|
||||||
|
defineExpose({
|
||||||
|
fetchData
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<QForm @submit="onSubmit()">
|
||||||
|
<div class="column q-pa-md q-gutter-y-sm"></div>
|
||||||
|
<span class="color-vn-label text-subtitle1 q-px-md">{{
|
||||||
|
t('eventsPanel.events')
|
||||||
|
}}</span>
|
||||||
|
<QList>
|
||||||
|
<QItem v-for="(event, index) in events" :key="index" class="event-card">
|
||||||
|
<QItemSection left @click="openInclusionForm(event)">
|
||||||
|
<div class="q-mb-xs">
|
||||||
|
<span
|
||||||
|
>({{ toDateFormat(event.started) }} -
|
||||||
|
{{ toDateFormat(event.finished) }})</span
|
||||||
|
>
|
||||||
|
</div>
|
||||||
|
<span class="color-vn-label"
|
||||||
|
>{{ t('globals.description') }}:
|
||||||
|
<span class="color-vn-text q-ml-xs">{{
|
||||||
|
dashIfEmpty(event.description)
|
||||||
|
}}</span>
|
||||||
|
</span>
|
||||||
|
<span class="color-vn-label"
|
||||||
|
>{{ t('globals.state') }}:
|
||||||
|
<span class="color-vn-text">{{
|
||||||
|
getVehicleStateName(event.vehicleStateFk).state
|
||||||
|
}}</span>
|
||||||
|
</span>
|
||||||
|
</QItemSection>
|
||||||
|
<QItemSection side @click="openInclusionForm(event)">
|
||||||
|
<QBtn
|
||||||
|
icon="delete"
|
||||||
|
data-cy="delete_event"
|
||||||
|
flat
|
||||||
|
dense
|
||||||
|
size="md"
|
||||||
|
color="primary"
|
||||||
|
@click.stop="
|
||||||
|
openConfirmationModal(
|
||||||
|
t('vehicle.deleteTitle'),
|
||||||
|
t('vehicle.deleteSubtitle'),
|
||||||
|
() => deleteEvent(event.id),
|
||||||
|
)
|
||||||
|
"
|
||||||
|
>
|
||||||
|
<QTooltip>{{ t('eventsPanel.delete') }}</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
</QItemSection>
|
||||||
|
</QItem>
|
||||||
|
<span
|
||||||
|
v-if="!events.length"
|
||||||
|
class="flex justify-center text-h5 color-vn-label"
|
||||||
|
>
|
||||||
|
{{ t('globals.noResults') }}
|
||||||
|
</span>
|
||||||
|
</QList>
|
||||||
|
</QForm>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<style scoped lang="scss">
|
||||||
|
.event-card {
|
||||||
|
display: flex;
|
||||||
|
border-bottom: $border-thin-light;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: var(--vn-accent-color);
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -0,0 +1,13 @@
|
||||||
|
<script setup>
|
||||||
|
import EntityCalendar from 'src/components/EntityCalendar.vue';
|
||||||
|
|
||||||
|
const emit = defineEmits(['onDateSelected']);
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<EntityCalendar
|
||||||
|
v-bind="$props"
|
||||||
|
@onDateSelected="(e) => emit('onDateSelected', e)"
|
||||||
|
/>
|
||||||
|
</template>
|
|
@ -0,0 +1,97 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref, watch } from 'vue';
|
||||||
|
import EntityCalendarGrid from 'src/components/EntityCalendarGrid.vue';
|
||||||
|
import VehicleCalendar from './VehicleCalendar.vue';
|
||||||
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
dataKey: {
|
||||||
|
type: String,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const firstDay = ref(new Date());
|
||||||
|
const lastDay = ref(new Date());
|
||||||
|
const entityCalendarRef = ref(null);
|
||||||
|
|
||||||
|
const arrayData = useArrayData(props.dataKey);
|
||||||
|
const { store } = arrayData;
|
||||||
|
const _data = ref(null);
|
||||||
|
const days = ref({});
|
||||||
|
const events = ref([]);
|
||||||
|
|
||||||
|
const refreshEvents = () => {
|
||||||
|
days.value = {};
|
||||||
|
if (!events.value?.length || !firstDay.value || !lastDay.value) return;
|
||||||
|
|
||||||
|
let day = new Date(firstDay.value.getTime());
|
||||||
|
let endDate = new Date(lastDay.value.getTime());
|
||||||
|
|
||||||
|
while (day <= endDate) {
|
||||||
|
let stamp = day.getTime();
|
||||||
|
let dayEvents = [];
|
||||||
|
|
||||||
|
for (let event of events.value) {
|
||||||
|
const eventStart = event.started ? new Date(event.started).getTime() : null;
|
||||||
|
const eventEnd = event.finished ? new Date(event.finished).getTime() : null;
|
||||||
|
|
||||||
|
let match = (!eventStart || stamp >= eventStart) &&
|
||||||
|
(!eventEnd || stamp <= eventEnd);
|
||||||
|
|
||||||
|
if (match) {
|
||||||
|
dayEvents.push(event);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (dayEvents.length) {
|
||||||
|
days.value[stamp] = dayEvents;
|
||||||
|
}
|
||||||
|
|
||||||
|
day.setDate(day.getDate() + 1);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
watch(
|
||||||
|
() => store.data,
|
||||||
|
(value) => {
|
||||||
|
_data.value = value;
|
||||||
|
events.value = Array.isArray(value) ? value : [];
|
||||||
|
|
||||||
|
function toStamp(date) {
|
||||||
|
return date && new Date(date).setHours(0, 0, 0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (events.value) {
|
||||||
|
for (let event of events.value) {
|
||||||
|
event.dated = toStamp(event.dated);
|
||||||
|
event.finished = toStamp(event.finished);
|
||||||
|
event.started = toStamp(event.started);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
refreshEvents();
|
||||||
|
},
|
||||||
|
{ immediate: true },
|
||||||
|
);
|
||||||
|
|
||||||
|
watch(() => entityCalendarRef.value?.firstDay, (newVal) => {
|
||||||
|
if (newVal) firstDay.value = new Date(newVal);
|
||||||
|
});
|
||||||
|
|
||||||
|
watch(() => entityCalendarRef.value?.lastDay, (newVal) => {
|
||||||
|
if (newVal) lastDay.value = new Date(newVal);
|
||||||
|
});
|
||||||
|
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<EntityCalendarGrid
|
||||||
|
ref="entityCalendarRef"
|
||||||
|
:data-key="dataKey"
|
||||||
|
:calendar-component="VehicleCalendar"
|
||||||
|
:additional-props="{ daysMap: days }"
|
||||||
|
@refresh-events="refreshEvents"
|
||||||
|
v-bind="$attrs"
|
||||||
|
/>
|
||||||
|
</template>
|
|
@ -0,0 +1,42 @@
|
||||||
|
<script setup>
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
|
import VnDmsList from 'src/components/common/VnDmsList.vue';
|
||||||
|
import VehicleDmsImportForm from 'src/pages/Route/Vehicle/Card/VehicleDmsImportForm.vue';
|
||||||
|
|
||||||
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
const dmsListRef = ref(null);
|
||||||
|
const showImportDialog = ref(false);
|
||||||
|
|
||||||
|
const onDataSaved = () => dmsListRef.value.dmsRef.fetch();
|
||||||
|
</script>
|
||||||
|
<template>
|
||||||
|
<VnDmsList
|
||||||
|
ref="dmsListRef"
|
||||||
|
model="VehicleDms"
|
||||||
|
update-model="vehicles"
|
||||||
|
delete-model="VehicleDms"
|
||||||
|
download-model="dms"
|
||||||
|
default-dms-code="vehicles"
|
||||||
|
filter="vehicleFk"
|
||||||
|
/>
|
||||||
|
<QDialog v-model="showImportDialog">
|
||||||
|
<VehicleDmsImportForm @on-data-saved="onDataSaved()" />
|
||||||
|
</QDialog>
|
||||||
|
<QPageSticky position="bottom-right" :offset="[25, 90]">
|
||||||
|
<QBtn
|
||||||
|
fab
|
||||||
|
color="primary"
|
||||||
|
icon="file_copy"
|
||||||
|
@click="showImportDialog = true"
|
||||||
|
class="fill-icon"
|
||||||
|
data-cy="importBtn"
|
||||||
|
>
|
||||||
|
<QTooltip>
|
||||||
|
{{ t('globals.import') }}
|
||||||
|
</QTooltip>
|
||||||
|
</QBtn>
|
||||||
|
</QPageSticky>
|
||||||
|
</template>
|
|
@ -15,6 +15,10 @@ vehicle:
|
||||||
remove: Vehicle removed
|
remove: Vehicle removed
|
||||||
search: Search Vehicle
|
search: Search Vehicle
|
||||||
searchInfo: Search by id or number plate
|
searchInfo: Search by id or number plate
|
||||||
|
deleteTitle: This item will be deleted
|
||||||
|
deleteSubtitle: Are you sure you want to continue?
|
||||||
params:
|
params:
|
||||||
vehicleTypeFk: Type
|
vehicleTypeFk: Type
|
||||||
vehicleStateFk: State
|
vehicleStateFk: State
|
||||||
|
errors:
|
||||||
|
documentIdEmpty: The document identifier can't be empty
|
||||||
|
|
|
@ -15,6 +15,10 @@ vehicle:
|
||||||
remove: Vehículo eliminado
|
remove: Vehículo eliminado
|
||||||
search: Buscar Vehículo
|
search: Buscar Vehículo
|
||||||
searchInfo: Buscar por id o matrícula
|
searchInfo: Buscar por id o matrícula
|
||||||
|
deleteTitle: Este elemento será eliminado
|
||||||
|
deleteSubtitle: ¿Seguro que quieres continuar?
|
||||||
params:
|
params:
|
||||||
vehicleTypeFk: Tipo
|
vehicleTypeFk: Tipo
|
||||||
vehicleStateFk: Estado
|
vehicleStateFk: Estado
|
||||||
|
errors:
|
||||||
|
documentIdEmpty: El número de documento no puede estar vacío
|
||||||
|
|
|
@ -51,6 +51,11 @@ route:
|
||||||
agencyModeName: Agency route
|
agencyModeName: Agency route
|
||||||
isOwn: Own
|
isOwn: Own
|
||||||
isAnyVolumeAllowed: Any volume allowed
|
isAnyVolumeAllowed: Any volume allowed
|
||||||
|
created: Created
|
||||||
|
addressFromFk: Sender
|
||||||
|
addressToFk: Destination
|
||||||
|
landed: Landed
|
||||||
|
ead: EAD
|
||||||
Worker: Worker
|
Worker: Worker
|
||||||
Agency: Agency
|
Agency: Agency
|
||||||
Vehicle: Vehicle
|
Vehicle: Vehicle
|
||||||
|
@ -70,21 +75,3 @@ route:
|
||||||
searchInfo: You can search by route reference
|
searchInfo: You can search by route reference
|
||||||
dated: Dated
|
dated: Dated
|
||||||
preview: Preview
|
preview: Preview
|
||||||
cmr:
|
|
||||||
search: Search Cmr
|
|
||||||
searchInfo: You can search Cmr by Id
|
|
||||||
params:
|
|
||||||
results: results
|
|
||||||
cmrFk: CMR id
|
|
||||||
hasCmrDms: Attached in gestdoc
|
|
||||||
'true': 'Yes'
|
|
||||||
'false': 'No'
|
|
||||||
ticketFk: Ticketd id
|
|
||||||
routeFk: Route id
|
|
||||||
countryFk: Country
|
|
||||||
clientFk: Client id
|
|
||||||
warehouseFk: Warehouse
|
|
||||||
shipped: Preparation date
|
|
||||||
viewCmr: View CMR
|
|
||||||
downloadCmrs: Download CMRs
|
|
||||||
search: General search
|
|
||||||
|
|
|
@ -47,11 +47,16 @@ route:
|
||||||
routeFk: Id ruta
|
routeFk: Id ruta
|
||||||
clientFk: Id cliente
|
clientFk: Id cliente
|
||||||
countryFk: Pais
|
countryFk: Pais
|
||||||
shipped: Fecha preparación
|
shipped: F. envío
|
||||||
agencyModeName: Agencia Ruta
|
agencyModeName: Agencia Ruta
|
||||||
agencyAgreement: Agencia Acuerdo
|
agencyAgreement: Agencia Acuerdo
|
||||||
isOwn: Propio
|
isOwn: Propio
|
||||||
isAnyVolumeAllowed: Cualquier volumen
|
isAnyVolumeAllowed: Cualquier volumen
|
||||||
|
created: Creado
|
||||||
|
addressFromFk: Remitente
|
||||||
|
addressToFk: Destinatario
|
||||||
|
landed: F. entrega
|
||||||
|
ead: ETD
|
||||||
Worker: Trabajador
|
Worker: Trabajador
|
||||||
Agency: Agencia
|
Agency: Agencia
|
||||||
Vehicle: Vehículo
|
Vehicle: Vehículo
|
||||||
|
|
|
@ -4,11 +4,6 @@ import ParkingSummary from './ParkingSummary.vue';
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<QPopupProxy style="max-width: 10px">
|
<QPopupProxy style="max-width: 10px">
|
||||||
<ParkingDescriptor
|
<ParkingDescriptor v-if="$attrs.id" v-bind="$attrs" :summary="ParkingSummary" />
|
||||||
v-if="$attrs.id"
|
|
||||||
v-bind="$attrs.id"
|
|
||||||
:summary="ParkingSummary"
|
|
||||||
:proxy-render="true"
|
|
||||||
/>
|
|
||||||
</QPopupProxy>
|
</QPopupProxy>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -80,7 +80,7 @@ const columns = computed(() => [
|
||||||
<VnTable
|
<VnTable
|
||||||
:data-key="dataKey"
|
:data-key="dataKey"
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
is-editable="false"
|
:is-editable="false"
|
||||||
:right-search="false"
|
:right-search="false"
|
||||||
:use-model="true"
|
:use-model="true"
|
||||||
:disable-option="{ table: true }"
|
:disable-option="{ table: true }"
|
||||||
|
|
|
@ -90,7 +90,7 @@ const onDataSaved = ({ id }) => {
|
||||||
<VnTable
|
<VnTable
|
||||||
:data-key="dataKey"
|
:data-key="dataKey"
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
is-editable="false"
|
:is-editable="false"
|
||||||
:right-search="false"
|
:right-search="false"
|
||||||
:use-model="true"
|
:use-model="true"
|
||||||
:disable-option="{ table: true }"
|
:disable-option="{ table: true }"
|
||||||
|
|
|
@ -7,12 +7,11 @@ import FetchData from 'components/FetchData.vue';
|
||||||
import CrudModel from 'components/CrudModel.vue';
|
import CrudModel from 'components/CrudModel.vue';
|
||||||
import VnRow from 'components/ui/VnRow.vue';
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
import VnInput from 'src/components/common/VnInput.vue';
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
import CreateBankEntityForm from 'src/components/CreateBankEntityForm.vue';
|
|
||||||
import VnSelectDialog from 'src/components/common/VnSelectDialog.vue';
|
|
||||||
|
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import useNotify from 'src/composables/useNotify.js';
|
import useNotify from 'src/composables/useNotify.js';
|
||||||
import { useQuasar } from 'quasar';
|
import { useQuasar } from 'quasar';
|
||||||
|
import VnBankDetailsForm from 'src/components/common/VnBankDetailsForm.vue';
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const { notify } = useNotify();
|
const { notify } = useNotify();
|
||||||
|
@ -26,11 +25,6 @@ const wireTransferFk = ref(null);
|
||||||
const bankEntitiesOptions = ref([]);
|
const bankEntitiesOptions = ref([]);
|
||||||
const filteredBankEntitiesOptions = ref([]);
|
const filteredBankEntitiesOptions = ref([]);
|
||||||
|
|
||||||
const onBankEntityCreated = async (dataSaved, rowData) => {
|
|
||||||
await bankEntitiesRef.value.fetch();
|
|
||||||
rowData.bankEntityFk = dataSaved.id;
|
|
||||||
};
|
|
||||||
|
|
||||||
const onChangesSaved = async () => {
|
const onChangesSaved = async () => {
|
||||||
if (supplier.value.payMethodFk !== wireTransferFk.value)
|
if (supplier.value.payMethodFk !== wireTransferFk.value)
|
||||||
quasar
|
quasar
|
||||||
|
@ -56,25 +50,6 @@ const setWireTransfer = async () => {
|
||||||
await axios.patch(`Suppliers/${route.params.id}`, params);
|
await axios.patch(`Suppliers/${route.params.id}`, params);
|
||||||
notify('globals.dataSaved', 'positive');
|
notify('globals.dataSaved', 'positive');
|
||||||
};
|
};
|
||||||
|
|
||||||
function findBankFk(value, row) {
|
|
||||||
row.bankEntityFk = null;
|
|
||||||
if (!value) return;
|
|
||||||
|
|
||||||
const bankEntityFk = bankEntitiesOptions.value.find((b) => b.id == value.slice(4, 8));
|
|
||||||
if (bankEntityFk) row.bankEntityFk = bankEntityFk.id;
|
|
||||||
}
|
|
||||||
|
|
||||||
function bankEntityFilter(val, update) {
|
|
||||||
update(() => {
|
|
||||||
const needle = val.toLowerCase();
|
|
||||||
filteredBankEntitiesOptions.value = bankEntitiesOptions.value.filter(
|
|
||||||
(bank) =>
|
|
||||||
bank.bic.toLowerCase().startsWith(needle) ||
|
|
||||||
bank.name.toLowerCase().includes(needle),
|
|
||||||
);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<FetchData
|
<FetchData
|
||||||
|
@ -82,7 +57,8 @@ function bankEntityFilter(val, update) {
|
||||||
url="BankEntities"
|
url="BankEntities"
|
||||||
@on-fetch="
|
@on-fetch="
|
||||||
(data) => {
|
(data) => {
|
||||||
(bankEntitiesOptions = data), (filteredBankEntitiesOptions = data);
|
bankEntitiesOptions = data;
|
||||||
|
filteredBankEntitiesOptions = data;
|
||||||
}
|
}
|
||||||
"
|
"
|
||||||
auto-load
|
auto-load
|
||||||
|
@ -119,49 +95,16 @@ function bankEntityFilter(val, update) {
|
||||||
:key="index"
|
:key="index"
|
||||||
class="row q-gutter-md q-mb-md"
|
class="row q-gutter-md q-mb-md"
|
||||||
>
|
>
|
||||||
<VnInput
|
<VnBankDetailsForm
|
||||||
:label="t('supplier.accounts.iban')"
|
v-model:iban="row.iban"
|
||||||
v-model="row.iban"
|
v-model:bankEntityFk="row.bankEntityFk"
|
||||||
@update:model-value="(value) => findBankFk(value, row)"
|
@update-bic="
|
||||||
:required="true"
|
({ iban, bankEntityFk }) => {
|
||||||
>
|
row.iban = iban;
|
||||||
<template #append>
|
row.bankEntityFk = bankEntityFk;
|
||||||
<QIcon name="info" class="cursor-info">
|
}
|
||||||
<QTooltip>{{ t('components.iban_tooltip') }}</QTooltip>
|
|
||||||
</QIcon>
|
|
||||||
</template>
|
|
||||||
</VnInput>
|
|
||||||
<VnSelectDialog
|
|
||||||
:label="t('worker.create.bankEntity')"
|
|
||||||
v-model="row.bankEntityFk"
|
|
||||||
:options="filteredBankEntitiesOptions"
|
|
||||||
:default-filter="false"
|
|
||||||
@filter="(val, update) => bankEntityFilter(val, update)"
|
|
||||||
option-label="bic"
|
|
||||||
option-value="id"
|
|
||||||
hide-selected
|
|
||||||
:required="true"
|
|
||||||
:roles-allowed-to-create="['financial']"
|
|
||||||
>
|
|
||||||
<template #form>
|
|
||||||
<CreateBankEntityForm
|
|
||||||
@on-data-saved="
|
|
||||||
(_, requestResponse) =>
|
|
||||||
onBankEntityCreated(requestResponse, row)
|
|
||||||
"
|
"
|
||||||
/>
|
/>
|
||||||
</template>
|
|
||||||
<template #option="scope">
|
|
||||||
<QItem v-bind="scope.itemProps">
|
|
||||||
<QItemSection v-if="scope.opt">
|
|
||||||
<QItemLabel
|
|
||||||
>{{ scope.opt.bic }}
|
|
||||||
{{ scope.opt.name }}</QItemLabel
|
|
||||||
>
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
</template>
|
|
||||||
</VnSelectDialog>
|
|
||||||
<VnInput
|
<VnInput
|
||||||
:label="t('supplier.accounts.beneficiary')"
|
:label="t('supplier.accounts.beneficiary')"
|
||||||
v-model="row.beneficiary"
|
v-model="row.beneficiary"
|
||||||
|
|
|
@ -5,7 +5,7 @@ import SupplierSummary from './SupplierSummary.vue';
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
id: {
|
id: {
|
||||||
type: Number,
|
type: Number,
|
||||||
required: true,
|
default: null,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -11,10 +11,10 @@ import VnSelect from 'src/components/common/VnSelect.vue';
|
||||||
import VnLocation from 'src/components/common/VnLocation.vue';
|
import VnLocation from 'src/components/common/VnLocation.vue';
|
||||||
import VnAccountNumber from 'src/components/common/VnAccountNumber.vue';
|
import VnAccountNumber from 'src/components/common/VnAccountNumber.vue';
|
||||||
import VnCheckbox from 'src/components/common/VnCheckbox.vue';
|
import VnCheckbox from 'src/components/common/VnCheckbox.vue';
|
||||||
|
import { useArrayData } from 'src/composables/useArrayData';
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
const arrayData = useArrayData('Supplier');
|
||||||
const sageTaxTypesOptions = ref([]);
|
const sageTaxTypesOptions = ref([]);
|
||||||
const sageWithholdingsOptions = ref([]);
|
const sageWithholdingsOptions = ref([]);
|
||||||
const sageTransactionTypesOptions = ref([]);
|
const sageTransactionTypesOptions = ref([]);
|
||||||
|
@ -89,6 +89,7 @@ function handleLocation(data, location) {
|
||||||
}"
|
}"
|
||||||
auto-load
|
auto-load
|
||||||
:clear-store-on-unmount="false"
|
:clear-store-on-unmount="false"
|
||||||
|
@on-data-saved="arrayData.fetch({})"
|
||||||
>
|
>
|
||||||
<template #form="{ data, validate }">
|
<template #form="{ data, validate }">
|
||||||
<VnRow>
|
<VnRow>
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue