Merge branch 'test' of https://gitea.verdnatura.es/verdnatura/salix-front into warmfix_vnLinkPhone

This commit is contained in:
Javier Segarra 2025-04-02 11:21:47 +02:00
commit 8bc40c74f2
192 changed files with 4061 additions and 2853 deletions

4
Jenkinsfile vendored
View File

@ -115,6 +115,7 @@ pipeline {
steps { steps {
script { script {
sh 'rm -f junit/e2e-*.xml' sh 'rm -f junit/e2e-*.xml'
sh 'rm -rf test/cypress/screenshots'
env.COMPOSE_TAG = PROTECTED_BRANCH.contains(env.CHANGE_TARGET) ? env.CHANGE_TARGET : 'dev' env.COMPOSE_TAG = PROTECTED_BRANCH.contains(env.CHANGE_TARGET) ? env.CHANGE_TARGET : 'dev'
def image = docker.build('lilium-dev', '-f docs/Dockerfile.dev docs') def image = docker.build('lilium-dev', '-f docs/Dockerfile.dev docs')
@ -125,13 +126,14 @@ pipeline {
sh "docker-compose ${env.COMPOSE_PARAMS} up -d" sh "docker-compose ${env.COMPOSE_PARAMS} up -d"
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/cypressParallel.sh 2' sh 'sh test/cypress/cypressParallel.sh 1'
} }
} }
} }
post { post {
always { always {
sh "docker-compose ${env.COMPOSE_PARAMS} down -v" sh "docker-compose ${env.COMPOSE_PARAMS} down -v"
archiveArtifacts artifacts: 'test/cypress/screenshots/**/*', allowEmptyArchive: true
junit( junit(
testResults: 'junit/e2e-*.xml', testResults: 'junit/e2e-*.xml',
allowEmptyResults: true allowEmptyResults: true

View File

@ -49,3 +49,9 @@ pnpm run test:e2e:summary
```bash ```bash
quasar build quasar build
``` ```
### Serve the app for production
```bash
quasar build quasar serve dist/spa --host 0.0.0.0 --proxy=./proxy-serve.js
```

View File

@ -1,6 +1,6 @@
{ {
"name": "salix-front", "name": "salix-front",
"version": "25.12.0", "version": "25.14.0",
"description": "Salix frontend", "description": "Salix frontend",
"productName": "Salix", "productName": "Salix",
"author": "Verdnatura", "author": "Verdnatura",

View File

@ -198,8 +198,7 @@ const setCategoryList = (data) => {
v-model="params.typeFk" v-model="params.typeFk"
:options="itemTypesOptions" :options="itemTypesOptions"
dense dense
outlined filled
rounded
use-input use-input
:disable="!selectedCategoryFk" :disable="!selectedCategoryFk"
@update:model-value=" @update:model-value="
@ -235,8 +234,7 @@ const setCategoryList = (data) => {
v-model="value.selectedTag" v-model="value.selectedTag"
:options="tagOptions" :options="tagOptions"
dense dense
outlined filled
rounded
:emit-value="false" :emit-value="false"
use-input use-input
:is-clearable="false" :is-clearable="false"
@ -252,8 +250,7 @@ const setCategoryList = (data) => {
option-value="value" option-value="value"
option-label="value" option-label="value"
dense dense
outlined filled
rounded
emit-value emit-value
use-input use-input
:disable="!value" :disable="!value"
@ -265,7 +262,6 @@ const setCategoryList = (data) => {
v-model="value.value" v-model="value.value"
:label="t('components.itemsFilterPanel.value')" :label="t('components.itemsFilterPanel.value')"
:disable="!value" :disable="!value"
is-outlined
:is-clearable="false" :is-clearable="false"
@keyup.enter="applyTags(params, searchFn)" @keyup.enter="applyTags(params, searchFn)"
/> />

View File

@ -1,5 +1,5 @@
<script setup> <script setup>
import { onMounted, ref } from 'vue'; import { onMounted, ref, computed } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { useState } from 'src/composables/useState'; import { useState } from 'src/composables/useState';
import { useStateStore } from 'stores/useStateStore'; import { useStateStore } from 'stores/useStateStore';
@ -18,6 +18,14 @@ const state = useState();
const user = state.getUser(); const user = state.getUser();
const appName = 'Lilium'; const appName = 'Lilium';
const pinnedModulesRef = ref(); const pinnedModulesRef = ref();
const hostname = window.location.hostname;
const env = ref();
const getEnvironment = computed(() => {
env.value = hostname.split('-');
if (env.value.length <= 1) return;
return env.value[0];
});
onMounted(() => stateStore.setMounted()); onMounted(() => stateStore.setMounted());
const refresh = () => window.location.reload(); const refresh = () => window.location.reload();
@ -49,6 +57,9 @@ const refresh = () => window.location.reload();
{{ t('globals.backToDashboard') }} {{ t('globals.backToDashboard') }}
</QTooltip> </QTooltip>
</QBtn> </QBtn>
<QBadge v-if="getEnvironment" color="primary" align="top">
{{ getEnvironment }}
</QBadge>
</RouterLink> </RouterLink>
<VnBreadcrumbs v-if="$q.screen.gt.sm" /> <VnBreadcrumbs v-if="$q.screen.gt.sm" />
<QSpinner <QSpinner

View File

@ -17,17 +17,6 @@ defineProps({ row: { type: Object, required: true } });
</QTooltip> </QTooltip>
</QIcon> </QIcon>
</router-link> </router-link>
<QIcon
v-if="row?.reserved"
color="primary"
name="vn:reserva"
size="xs"
data-cy="ticketSaleReservedIcon"
>
<QTooltip>
{{ t('ticketSale.reserved') }}
</QTooltip>
</QIcon>
<QIcon <QIcon
v-if="row?.isDeleted" v-if="row?.isDeleted"
color="primary" color="primary"

View File

@ -55,6 +55,8 @@ const $props = defineProps({
}, },
}); });
const label = $props.showLabel && $props.column.label ? $props.column.label : '';
const defaultSelect = { const defaultSelect = {
attrs: { attrs: {
row: $props.row, row: $props.row,
@ -62,7 +64,7 @@ const defaultSelect = {
class: 'fit', class: 'fit',
}, },
forceAttrs: { forceAttrs: {
label: $props.showLabel && $props.column.label, label,
}, },
}; };
@ -74,7 +76,7 @@ const defaultComponents = {
class: 'fit', class: 'fit',
}, },
forceAttrs: { forceAttrs: {
label: $props.showLabel && $props.column.label, label,
}, },
}, },
number: { number: {
@ -84,7 +86,7 @@ const defaultComponents = {
class: 'fit', class: 'fit',
}, },
forceAttrs: { forceAttrs: {
label: $props.showLabel && $props.column.label, label,
}, },
}, },
date: { date: {
@ -96,7 +98,7 @@ const defaultComponents = {
class: 'fit', class: 'fit',
}, },
forceAttrs: { forceAttrs: {
label: $props.showLabel && $props.column.label, label,
}, },
}, },
time: { time: {
@ -105,7 +107,7 @@ const defaultComponents = {
disable: !$props.isEditable, disable: !$props.isEditable,
}, },
forceAttrs: { forceAttrs: {
label: $props.showLabel && $props.column.label, label,
}, },
}, },
checkbox: { checkbox: {
@ -125,7 +127,7 @@ const defaultComponents = {
return defaultAttrs; return defaultAttrs;
}, },
forceAttrs: { forceAttrs: {
label: $props.showLabel && $props.column.label, label,
autofocus: true, autofocus: true,
}, },
events: { events: {

View File

@ -70,7 +70,7 @@ function textAlignToFlex(textAlign) {
:style="textAlignToFlex(align)" :style="textAlignToFlex(align)"
> >
<span :title="label">{{ label }}</span> <span :title="label">{{ label }}</span>
<div v-if="name && model?.index"> <div v-if="name && (model?.index || vertical)">
<QChip <QChip
:label="!vertical ? model?.index : ''" :label="!vertical ? model?.index : ''"
:icon=" :icon="
@ -83,14 +83,14 @@ function textAlignToFlex(textAlign) {
:size="vertical ? '' : 'sm'" :size="vertical ? '' : 'sm'"
:class="[ :class="[
model?.index ? 'color-vn-text' : 'bg-transparent', model?.index ? 'color-vn-text' : 'bg-transparent',
vertical ? 'q-px-none' : '', vertical ? 'q-mx-none q-py-lg' : '',
]" ]"
class="no-box-shadow" class="no-box-shadow"
:clickable="true" :clickable="true"
style="min-width: 40px; max-height: 30px" style="min-width: 40px; max-height: 30px"
> >
<div <div
class="column flex-center" class="column justify-center text-center"
v-if="vertical" v-if="vertical"
:style="!model?.index && 'color: #5d5d5d'" :style="!model?.index && 'color: #5d5d5d'"
> >

View File

@ -140,7 +140,7 @@ const $props = defineProps({
}, },
dataCy: { dataCy: {
type: String, type: String,
default: 'vn-table', default: 'vnTable',
}, },
}); });
@ -633,6 +633,7 @@ const rowCtrlClickFunction = computed(() => {
:data-key="$attrs['data-key']" :data-key="$attrs['data-key']"
:columns="columns" :columns="columns"
:redirect="redirect" :redirect="redirect"
v-bind="$attrs?.['table-filter']"
> >
<template <template
v-for="(_, slotName) in $slots" v-for="(_, slotName) in $slots"
@ -684,7 +685,7 @@ const rowCtrlClickFunction = computed(() => {
@update:selected="emit('update:selected', $event)" @update:selected="emit('update:selected', $event)"
@selection="(details) => handleSelection(details, rows)" @selection="(details) => handleSelection(details, rows)"
:hide-selected-banner="true" :hide-selected-banner="true"
:data-cy="$props.dataCy ?? 'vnTable'" :data-cy
> >
<template #top-left v-if="!$props.withoutHeader"> <template #top-left v-if="!$props.withoutHeader">
<slot name="top-left"> </slot> <slot name="top-left"> </slot>
@ -781,6 +782,7 @@ const rowCtrlClickFunction = computed(() => {
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
" "
:data-cy="`vnTableCell_${col.name}`"
> >
<slot <slot
:name="`column-${col.name}`" :name="`column-${col.name}`"

View File

@ -26,7 +26,12 @@ function columnName(col) {
} }
</script> </script>
<template> <template>
<VnFilterPanel v-bind="$attrs" :search-button="true" :disable-submit-event="true"> <VnFilterPanel
v-bind="$attrs"
:search-button="true"
:disable-submit-event="true"
:search-url
>
<template #body="{ params, orders, searchFn }"> <template #body="{ params, orders, searchFn }">
<div <div
class="container" class="container"
@ -34,13 +39,20 @@ function columnName(col) {
:key="col.id" :key="col.id"
> >
<div class="filter"> <div class="filter">
<VnFilter <slot
ref="tableFilterRef" :name="`filter-${col.name}`"
:column="col" :params="params"
:data-key="$attrs['data-key']" :column-name="columnName(col)"
v-model="params[columnName(col)]" :search-fn
:search-url="searchUrl" >
/> <VnFilter
ref="tableFilterRef"
:column="col"
:data-key="$attrs['data-key']"
v-model="params[columnName(col)]"
:search-url="searchUrl"
/>
</slot>
</div> </div>
<div class="order"> <div class="order">
<VnTableOrder <VnTableOrder
@ -77,13 +89,13 @@ function columnName(col) {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
height: 45px; min-height: 45px;
gap: 10px; gap: 10px;
} }
.filter { .filter {
width: 70%; width: 70%;
height: 40px; min-height: 40px;
text-align: center; text-align: center;
} }
.order { .order {

View File

@ -1,15 +1,15 @@
<script setup> <script setup>
import {useDialogPluginComponent} from 'quasar'; import { useDialogPluginComponent } from 'quasar';
import {useI18n} from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import {computed, ref} from 'vue'; import { computed, ref } from 'vue';
import VnInput from 'components/common/VnInput.vue'; import VnInput from 'components/common/VnInput.vue';
import axios from 'axios'; import axios from 'axios';
import useNotify from "composables/useNotify"; import useNotify from 'composables/useNotify';
const MESSAGE_MAX_LENGTH = 160; const MESSAGE_MAX_LENGTH = 160;
const {t} = useI18n(); const { t } = useI18n();
const {notify} = useNotify(); const { notify } = useNotify();
const props = defineProps({ const props = defineProps({
title: { title: {
type: String, type: String,
@ -34,7 +34,7 @@ const props = defineProps({
}); });
const emit = defineEmits([...useDialogPluginComponent.emits, 'sent']); const emit = defineEmits([...useDialogPluginComponent.emits, 'sent']);
const {dialogRef, onDialogHide} = useDialogPluginComponent(); const { dialogRef, onDialogHide } = useDialogPluginComponent();
const smsRules = [ const smsRules = [
(val) => (val && val.length > 0) || t("The message can't be empty"), (val) => (val && val.length > 0) || t("The message can't be empty"),
@ -43,10 +43,10 @@ const smsRules = [
t("The message it's too long"), t("The message it's too long"),
]; ];
const message = ref(''); const message = ref(t('routeDelay'));
const charactersRemaining = computed( const charactersRemaining = computed(
() => MESSAGE_MAX_LENGTH - new Blob([message.value]).size () => MESSAGE_MAX_LENGTH - new Blob([message.value]).size,
); );
const charactersChipColor = computed(() => { const charactersChipColor = computed(() => {
@ -114,7 +114,7 @@ const onSubmit = async () => {
<QTooltip> <QTooltip>
{{ {{
t( t(
'Special characters like accents counts as a multiple' 'Special characters like accents counts as a multiple',
) )
}} }}
</QTooltip> </QTooltip>
@ -144,7 +144,10 @@ const onSubmit = async () => {
max-width: 450px; max-width: 450px;
} }
</style> </style>
<i18n> <i18n>
en:
routeDelay: "Your order has been delayed in transit.\nDelivery will take place throughout the day.\nWe apologize for the inconvenience and appreciate your patience."
es: es:
Message: Mensaje Message: Mensaje
Send: Enviar Send: Enviar
@ -153,4 +156,5 @@ es:
The destination can't be empty: El destinatario no puede estar vacio The destination can't be empty: El destinatario no puede estar vacio
The message can't be empty: El mensaje no puede estar vacio The message can't be empty: El mensaje no puede estar vacio
The message it's too long: El mensaje es demasiado largo The message it's too long: El mensaje es demasiado largo
</i18n> routeDelay: "Retraso en ruta.\nInformamos que la ruta que lleva su pedido ha sufrido un retraso y la entrega se hará a lo largo del día.\nDisculpe las molestias."
</i18n>

View File

@ -1,35 +1,14 @@
<script setup> <script setup>
import { nextTick, ref } from 'vue';
import VnInput from './VnInput.vue'; import VnInput from './VnInput.vue';
import { useAccountShortToStandard } from 'src/composables/useAccountShortToStandard'; import { useAccountShortToStandard } from 'src/composables/useAccountShortToStandard';
const $props = defineProps({
insertable: {
type: Boolean,
default: false,
},
});
const emit = defineEmits(['update:modelValue', 'accountShortToStandard']);
const model = defineModel({ prop: 'modelValue' }); const model = defineModel({ prop: 'modelValue' });
const inputRef = ref(false);
function setCursorPosition(pos) {
const input = inputRef.value.vnInputRef.$el.querySelector('input');
input.focus();
input.setSelectionRange(pos, pos);
}
async function handleUpdateModel(val) {
model.value = val?.at(-1) === '.' ? useAccountShortToStandard(val) : val;
await nextTick(() => setCursorPosition(0));
}
</script> </script>
<template> <template>
<VnInput <VnInput
v-model="model" v-model="model"
ref="inputRef" ref="inputRef"
:insertable @keydown.tab="model = useAccountShortToStandard($event.target.value) ?? model"
@update:model-value="handleUpdateModel" @input="model = $event.target.value.replace(/[^\d.]/g, '')"
/> />
</template> </template>

View File

@ -1,12 +1,15 @@
<script setup> <script setup>
import { onBeforeMount } from 'vue'; import { onBeforeMount, computed, markRaw } from 'vue';
import { useRouter, onBeforeRouteUpdate, onBeforeRouteLeave } from 'vue-router'; import { useRoute, useRouter, onBeforeRouteUpdate, onBeforeRouteLeave } from 'vue-router';
import { useArrayData } from 'src/composables/useArrayData'; import { useArrayData } from 'src/composables/useArrayData';
import { useStateStore } from 'stores/useStateStore'; import { useStateStore } from 'stores/useStateStore';
import useCardSize from 'src/composables/useCardSize'; import useCardSize from 'src/composables/useCardSize';
import VnSubToolbar from '../ui/VnSubToolbar.vue'; import VnSubToolbar from '../ui/VnSubToolbar.vue';
const emit = defineEmits(['onFetch']);
const props = defineProps({ const props = defineProps({
id: { type: Number, required: false, default: null },
dataKey: { type: String, required: true }, dataKey: { type: String, required: true },
url: { type: String, default: undefined }, url: { type: String, default: undefined },
idInWhere: { type: Boolean, default: false }, idInWhere: { type: Boolean, default: false },
@ -16,26 +19,25 @@ const props = defineProps({
searchDataKey: { type: String, default: undefined }, searchDataKey: { type: String, default: undefined },
searchbarProps: { type: Object, default: undefined }, searchbarProps: { type: Object, default: undefined },
redirectOnError: { type: Boolean, default: false }, redirectOnError: { type: Boolean, default: false },
visual: { type: Boolean, default: true },
}); });
const route = useRoute();
const stateStore = useStateStore(); const stateStore = useStateStore();
const router = useRouter(); const router = useRouter();
const arrayData = useArrayData(props.dataKey, { const entityId = computed(() => props.id || route?.params?.id);
url: props.url, let arrayData = getArrayData(entityId.value, props.url);
userFilter: props.filter,
oneRecord: true,
});
onBeforeRouteLeave(() => { onBeforeRouteLeave(() => {
stateStore.cardDescriptorChangeValue(null); stateStore.cardDescriptorChangeValue(null);
}); });
onBeforeMount(async () => { onBeforeMount(async () => {
stateStore.cardDescriptorChangeValue(props.descriptor); stateStore.cardDescriptorChangeValue(markRaw(props.descriptor));
const route = router.currentRoute.value; const route = router.currentRoute.value;
try { try {
await fetch(route.params.id); await fetch(entityId.value);
} catch { } catch {
const { matched: matches } = route; const { matched: matches } = route;
const { path } = matches.at(-1); const { path } = matches.at(-1);
@ -51,24 +53,41 @@ onBeforeRouteUpdate(async (to, from) => {
router.push({ name, params: to.params }); router.push({ name, params: to.params });
} }
} }
const id = to.params.id; if (entityId.value !== to.params.id) await fetch(to.params.id, true);
if (id !== from.params.id) await fetch(id, true);
}); });
async function fetch(id, append = false) { async function fetch(id, append = false) {
const regex = /\/(\d+)/;
if (props.idInWhere) arrayData.store.filter.where = { id }; if (props.idInWhere) arrayData.store.filter.where = { id };
else if (!regex.test(props.url)) arrayData.store.url = `${props.url}/${id}`; else {
else arrayData.store.url = props.url.replace(regex, `/${id}`); arrayData = getArrayData(id);
}
await arrayData.fetch({ append, updateRouter: false }); await arrayData.fetch({ append, updateRouter: false });
emit('onFetch', arrayData.store.data);
} }
function hasRouteParam(params, valueToCheck = ':addressId') { function hasRouteParam(params, valueToCheck = ':addressId') {
return Object.values(params).includes(valueToCheck); return Object.values(params).includes(valueToCheck);
} }
function formatUrl(id) {
const newId = id || entityId.value;
const regex = /\/(\d+)/;
if (!regex.test(props.url)) return `${props.url}/${newId}`;
return props.url.replace(regex, `/${newId}`);
}
function getArrayData(id, url) {
return useArrayData(props.dataKey, {
url: url ?? formatUrl(id),
userFilter: props.filter,
oneRecord: true,
});
}
</script> </script>
<template> <template>
<VnSubToolbar /> <template v-if="visual">
<div :class="[useCardSize(), $attrs.class]"> <VnSubToolbar />
<RouterView :key="$route.path" /> <div :class="[useCardSize(), $attrs.class]">
</div> <RouterView :key="$route.path" />
</div>
</template>
</template> </template>

View File

@ -27,7 +27,11 @@ const checkboxModel = computed({
</script> </script>
<template> <template>
<div> <div>
<QCheckbox v-bind="$attrs" v-model="checkboxModel" /> <QCheckbox
v-bind="$attrs"
v-model="checkboxModel"
:data-cy="$attrs['data-cy'] ?? `vnCheckbox${$attrs['label'] ?? ''}`"
/>
<QIcon <QIcon
v-if="info" v-if="info"
v-bind="$attrs" v-bind="$attrs"

View File

@ -35,6 +35,10 @@ const $props = defineProps({
type: String, type: String,
default: null, default: null,
}, },
hasFile: {
type: Boolean,
default: false,
},
}); });
const warehouses = ref(); const warehouses = ref();
@ -90,6 +94,7 @@ function defaultData() {
if ($props.formInitialData) return (dms.value = $props.formInitialData); if ($props.formInitialData) return (dms.value = $props.formInitialData);
return addDefaultData({ return addDefaultData({
reference: route.params.id, reference: route.params.id,
hasFile: $props.hasFile,
}); });
} }

View File

@ -0,0 +1,53 @@
<script setup>
import { ref } from 'vue';
import VnSelect from './VnSelect.vue';
const stateBtnDropdownRef = ref();
const emit = defineEmits(['changeState']);
const $props = defineProps({
disable: {
type: Boolean,
default: null,
},
options: {
type: Array,
default: null,
},
optionLabel: {
type: String,
default: 'name',
},
optionValue: {
type: String,
default: 'id',
},
});
async function changeState(value) {
stateBtnDropdownRef.value?.hide();
emit('changeState', value);
}
</script>
<template>
<QBtnDropdown
ref="stateBtnDropdownRef"
color="black"
text-color="white"
:label="$t('globals.changeState')"
:disable="$props.disable"
>
<VnSelect
:options="$props.options"
:option-label="$props.optionLabel"
:option-value="$props.optionValue"
hide-selected
hide-dropdown-icon
focus-on-mount
@update:model-value="changeState"
>
</VnSelect>
</QBtnDropdown>
</template>

View File

@ -107,7 +107,7 @@ const manageDate = (date) => {
@click="isPopupOpen = !isPopupOpen" @click="isPopupOpen = !isPopupOpen"
@keydown="isPopupOpen = false" @keydown="isPopupOpen = false"
hide-bottom-space hide-bottom-space
:data-cy="$attrs.dataCy ?? $attrs.label + '_inputDate'" :data-cy="($attrs['data-cy'] ?? $attrs.label) + '_inputDate'"
> >
<template #append> <template #append>
<QIcon <QIcon

View File

@ -1,5 +1,5 @@
<script setup> <script setup>
import { ref, onUnmounted, watch } from 'vue'; import { ref, onMounted, onUnmounted, watch, 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';
@ -10,12 +10,12 @@ import { useColor } from 'src/composables/useColor';
import { useCapitalize } from 'src/composables/useCapitalize'; import { useCapitalize } from 'src/composables/useCapitalize';
import { useValidator } from 'src/composables/useValidator'; import { useValidator } from 'src/composables/useValidator';
import VnAvatar from '../ui/VnAvatar.vue'; import VnAvatar from '../ui/VnAvatar.vue';
import VnJsonValue from '../common/VnJsonValue.vue'; import VnLogValue from './VnLogValue.vue';
import FetchData from '../FetchData.vue';
import VnSelect from './VnSelect.vue';
import VnUserLink from '../ui/VnUserLink.vue'; import VnUserLink from '../ui/VnUserLink.vue';
import VnPaginate from '../ui/VnPaginate.vue'; import VnPaginate from '../ui/VnPaginate.vue';
import VnLogFilter from 'src/components/common/VnLogFilter.vue';
import RightMenu from './RightMenu.vue'; import RightMenu from './RightMenu.vue';
import { useFilterParams } from 'src/composables/useFilterParams';
const stateStore = useStateStore(); const stateStore = useStateStore();
const validationsStore = useValidator(); const validationsStore = useValidator();
@ -72,39 +72,8 @@ const filter = {
}; };
const paginate = ref(); const paginate = ref();
const actions = ref(); const dataKey = computed(() => `${props.model}Log`);
const changeInput = ref(); const userParams = ref(useFilterParams(dataKey.value).params);
const searchInput = ref();
const userRadio = ref();
const userSelect = ref();
const dateFrom = ref();
const dateFromDialog = ref(false);
const dateTo = ref();
const dateToDialog = ref(false);
const selectedFilters = ref({});
const userTypes = [
{ label: 'All', value: undefined },
{ label: 'User', value: { neq: null } },
{ label: 'System', value: null },
];
const checkboxOptions = ref({
insert: {
label: 'Creates',
selected: false,
},
update: {
label: 'Edits',
selected: false,
},
delete: {
label: 'Deletes',
selected: false,
},
select: {
label: 'Accesses',
selected: false,
},
});
let validations = models; let validations = models;
let pointRecord = ref(null); let pointRecord = ref(null);
@ -246,131 +215,54 @@ async function setLogTree(data) {
function filterByRecord(modelLog) { function filterByRecord(modelLog) {
byRecord.value = true; byRecord.value = true;
const { id, model } = modelLog; const { id, model } = modelLog;
applyFilter({ changedModelId: id, changedModel: model });
searchInput.value = id;
selectedFilters.value.changedModelId = id;
selectedFilters.value.changedModel = model;
applyFilter();
} }
async function applyFilter() { async function applyFilter(params = {}) {
filter.where = { and: [] }; paginate.value.arrayData.applyFilter({
if ( filter: {},
!selectedFilters.value.changedModel || params: { originFk: route.params.id, ...params },
(!selectedFilters.value.changedModelValue && });
!selectedFilters.value.changedModelId)
)
byRecord.value = false;
if (!byRecord.value) filter.where.and.push({ originFk: route.params.id });
if (Object.keys(selectedFilters.value).length) {
filter.where.and.push(selectedFilters.value);
}
paginate.value.fetch({ filter });
} }
function setDate(type) { function exprBuilder(param, value) {
let from = dateFrom.value switch (param) {
? date.formatDate(dateFrom.value.split('-').reverse().join('-'), 'YYYY-MM-DD') case 'changedModelValue':
: undefined; return { [param]: { like: `%${value}%` } };
from = date.adjustDate(from, { hour: 0, minute: 0, second: 0, millisecond: 0 }, true); case 'change':
if (value)
let to = dateTo.value
? date.formatDate(dateTo.value.split('-').reverse().join('-'), 'YYYY-MM-DD')
: date.formatDate(dateFrom.value.split('-').reverse().join('-'), 'YYYY-MM-DD');
to = date.adjustDate(
to,
{ hour: 21, minute: 59, second: 59, millisecond: 999 },
true,
);
switch (type) {
case 'from':
return { between: [from, to] };
case 'to': {
if (dateFrom.value) {
return { return {
between: [from, to], or: [
{ oldJson: { like: `%${value}%` } },
{ newJson: { like: `%${value}%` } },
{ description: { like: `%${value}%` } },
],
}; };
} break;
return { lte: to }; case 'action':
} if (value?.length) return { [param]: { inq: value } };
break;
case 'from':
return { creationDate: { gte: value } };
case 'to':
return { creationDate: { lte: value } };
case 'userType':
if (value === 'User') return { userFk: { neq: null } };
if (value === 'System') return { userFk: null };
break;
default:
return { [param]: value };
} }
} }
function selectFilter(type, dateType) {
const filter = {};
const actions = { inq: [] };
let reload = true;
if (type === 'search') {
if (/^\s*[0-9]+\s*$/.test(searchInput.value) || props.byRecord) {
selectedFilters.value.changedModelId = searchInput.value.trim();
} else if (!searchInput.value) {
selectedFilters.value.changedModelId = undefined;
selectedFilters.value.changedModelValue = undefined;
} else {
selectedFilters.value.changedModelValue = { like: `%${searchInput.value}%` };
}
}
if (type === 'action' && selectedFilters.value.changedModel === null) {
selectedFilters.value.changedModel = undefined;
}
if (type === 'userRadio') {
selectedFilters.value.userFk = userRadio.value;
}
if (type === 'change') {
if (changeInput.value)
selectedFilters.value.or = [
{ oldJson: { like: `%${changeInput.value}%` } },
{ newJson: { like: `%${changeInput.value}%` } },
{ description: { like: `%${changeInput.value}%` } },
];
else selectedFilters.value.or = undefined;
}
if (type === 'userSelect') {
selectedFilters.value.userFk =
userSelect.value !== null ? userSelect.value : undefined;
}
if (type === 'date') {
if (!dateFrom.value && !dateTo.value) {
selectedFilters.value.creationDate = undefined;
} else if (dateType === 'to') {
selectedFilters.value.creationDate = setDate('to');
} else if (dateType === 'from') {
selectedFilters.value.creationDate = setDate('from');
}
}
Object.keys(checkboxOptions.value).forEach((key) => {
if (checkboxOptions.value[key].selected) actions.inq.push(key);
});
selectedFilters.value.action = actions.inq.length ? actions : undefined;
Object.keys(selectedFilters.value).forEach((key) => {
if (selectedFilters.value[key]) filter[key] = selectedFilters.value[key];
});
if (reload) applyFilter(filter);
}
async function clearFilter() { async function clearFilter() {
selectedFilters.value = {};
byRecord.value = false; byRecord.value = false;
userSelect.value = undefined;
searchInput.value = undefined;
changeInput.value = undefined;
dateFrom.value = undefined;
dateTo.value = undefined;
userRadio.value = undefined;
Object.keys(checkboxOptions.value).forEach(
(opt) => (checkboxOptions.value[opt].selected = false),
);
await applyFilter(); await applyFilter();
} }
onMounted(() => {
stateStore.rightDrawerChangeValue(true);
});
onUnmounted(() => { onUnmounted(() => {
stateStore.rightDrawer = false; stateStore.rightDrawer = false;
}); });
@ -383,32 +275,18 @@ watch(
); );
</script> </script>
<template> <template>
<FetchData
:url="`${props.model}Logs/${route.params.id}/models`"
:filter="{ order: ['changedModel'] }"
@on-fetch="
(data) =>
(actions = data.map((item) => {
const changedModel = item.changedModel;
return {
locale: useCapitalize(
validations[changedModel]?.locale?.name ?? changedModel,
),
value: changedModel,
};
}))
"
auto-load
/>
<VnPaginate <VnPaginate
ref="paginate" ref="paginate"
:data-key="`${model}Log`" :data-key
:url="`${model}Logs`" :url="dataKey + 's'"
:user-filter="filter" :user-filter="filter"
:skeleton="false" :skeleton="false"
auto-load auto-load
@on-fetch="setLogTree" @on-fetch="setLogTree"
@on-change="setLogTree"
search-url="logs" search-url="logs"
:exprBuilder
:order="['creationDate DESC', 'id DESC']"
> >
<template #body> <template #body>
<div <div
@ -467,6 +345,7 @@ watch(
backgroundColor: useColor(modelLog.model), backgroundColor: useColor(modelLog.model),
}" }"
:title="`${modelLog.model} #${modelLog.id}`" :title="`${modelLog.model} #${modelLog.id}`"
data-cy="vnLog-model-chip"
> >
{{ t(modelLog.modelI18n) }} {{ t(modelLog.modelI18n) }}
</QChip> </QChip>
@ -560,10 +439,9 @@ watch(
value.nameI18n value.nameI18n
}}: }}:
</span> </span>
<VnJsonValue <VnLogValue
:value=" :value="value.val"
value.val.val :name="value.name"
"
/> />
</QItem> </QItem>
</QCardSection> </QCardSection>
@ -581,6 +459,7 @@ watch(
}`, }`,
) )
" "
data-cy="vnLog-action-icon"
/> />
</div> </div>
</QItem> </QItem>
@ -614,7 +493,10 @@ watch(
> >
{{ prop.nameI18n }}: {{ prop.nameI18n }}:
</span> </span>
<VnJsonValue :value="prop.val.val" /> <VnLogValue
:value="prop.val"
:name="prop.name"
/>
<span <span
v-if=" v-if="
propIndex < propIndex <
@ -642,8 +524,9 @@ watch(
{{ prop.nameI18n }}: {{ prop.nameI18n }}:
</span> </span>
<span v-if="log.action == 'update'"> <span v-if="log.action == 'update'">
<VnJsonValue <VnLogValue
:value="prop.old.val" :value="prop.old"
:name="prop.name"
/> />
<span <span
v-if="prop.old.id" v-if="prop.old.id"
@ -652,8 +535,9 @@ watch(
#{{ prop.old.id }} #{{ prop.old.id }}
</span> </span>
<VnJsonValue <VnLogValue
:value="prop.val.val" :value="prop.val"
:name="prop.name"
/> />
<span <span
v-if="prop.val.id" v-if="prop.val.id"
@ -663,8 +547,9 @@ watch(
</span> </span>
</span> </span>
<span v-else="prop.old.val"> <span v-else="prop.old.val">
<VnJsonValue <VnLogValue
:value="prop.val.val" :value="prop.val"
:name="prop.name"
/> />
<span <span
v-if="prop.old.id" v-if="prop.old.id"
@ -692,176 +577,12 @@ watch(
</VnPaginate> </VnPaginate>
<RightMenu> <RightMenu>
<template #right-panel> <template #right-panel>
<QList dense> <VnLogFilter :data-key />
<QSeparator />
<QItem class="q-mt-sm">
<QInput
:label="t('globals.search')"
v-model="searchInput"
class="full-width"
clearable
clear-icon="close"
@keyup.enter="() => selectFilter('search')"
@focusout="() => selectFilter('search')"
@clear="() => selectFilter('search')"
>
<template #append>
<QIcon name="info" class="cursor-pointer">
<QTooltip>{{ t('tooltips.search') }}</QTooltip>
</QIcon>
</template>
</QInput>
</QItem>
<QItem>
<VnSelect
class="full-width"
:label="t('globals.entity')"
v-model="selectedFilters.changedModel"
option-label="locale"
option-value="value"
:options="actions"
@update:model-value="selectFilter('action')"
hide-selected
/>
</QItem>
<QItem class="q-mt-sm">
<QOptionGroup
size="sm"
v-model="userRadio"
:options="userTypes"
color="primary"
@update:model-value="selectFilter('userRadio')"
right-label
>
<template #label="{ label }">
{{ t(`Users.${label}`) }}
</template>
</QOptionGroup>
</QItem>
<QItem class="q-mt-sm">
<QItemSection v-if="userRadio !== null">
<VnSelect
class="full-width"
:label="t('globals.user')"
v-model="userSelect"
option-label="name"
option-value="id"
:url="`${model}Logs/${route.params.id}/editors`"
:fields="['id', 'nickname', 'name', 'image']"
sort-by="nickname"
@update:model-value="selectFilter('userSelect')"
hide-selected
>
<template #option="{ opt, itemProps }">
<QItem
v-bind="itemProps"
class="q-pa-xs row items-center"
>
<QItemSection class="col-3 items-center">
<VnAvatar :worker-id="opt.id" />
</QItemSection>
<QItemSection class="col-9 justify-center">
<span>{{ opt.name }}</span>
<span class="text-grey">{{ opt.nickname }}</span>
</QItemSection>
</QItem>
</template>
</VnSelect>
</QItemSection>
</QItem>
<QItem class="q-mt-sm">
<QInput
:label="t('globals.changes')"
v-model="changeInput"
class="full-width"
clearable
clear-icon="close"
@keyup.enter="selectFilter('change')"
@focusout="selectFilter('change')"
@clear="selectFilter('change')"
>
<template #append>
<QIcon name="info" class="cursor-pointer">
<QTooltip max-width="250px">{{
t('tooltips.changes')
}}</QTooltip>
</QIcon>
</template>
</QInput>
</QItem>
<QItem
:class="index == 'create' ? 'q-mt-md' : 'q-mt-xs'"
v-for="(checkboxOption, index) in checkboxOptions"
:key="index"
>
<QCheckbox
size="sm"
v-model="checkboxOption.selected"
:label="t(`actions.${checkboxOption.label}`)"
@update:model-value="selectFilter"
/>
</QItem>
<QItem class="q-mt-sm">
<QInput
class="full-width"
:label="t('globals.date')"
@click="dateFromDialog = true"
@focus="(evt) => evt.target.blur()"
@clear="selectFilter('date', 'to')"
v-model="dateFrom"
clearable
clear-icon="close"
/>
</QItem>
<QItem class="q-mt-sm">
<QInput
class="full-width"
:label="t('globals.to')"
@click="dateToDialog = true"
@focus="(evt) => evt.target.blur()"
@clear="selectFilter('date', 'from')"
v-model="dateTo"
clearable
clear-icon="close"
/>
</QItem>
</QList>
</template> </template>
</RightMenu> </RightMenu>
<QDialog v-model="dateFromDialog">
<QDate
:years-in-month-view="false"
v-model="dateFrom"
dense
flat
minimal
@update:model-value="
(value) => {
dateFromDialog = false;
dateFrom = date.formatDate(value, 'DD-MM-YYYY');
selectFilter('date', 'from');
}
"
/>
</QDialog>
<QDialog v-model="dateToDialog">
<QDate
v-model="dateTo"
dense
flat
minimal
@update:model-value="
(value) => {
dateToDialog = false;
dateTo = date.formatDate(value, 'DD-MM-YYYY');
selectFilter('date', 'to');
}
"
/>
</QDialog>
<QPageSticky position="bottom-right" :offset="[25, 25]"> <QPageSticky position="bottom-right" :offset="[25, 25]">
<QBtn <QBtn
v-if="Object.values(selectedFilters).some((filter) => filter !== undefined)" v-if="Object.keys(userParams).some((filter) => filter !== 'originFk')"
color="primary" color="primary"
icon="filter_alt_off" icon="filter_alt_off"
size="md" size="md"

View File

@ -1,77 +1,249 @@
<script setup> <script setup>
import { ref } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import FetchData from 'components/FetchData.vue'; import VnTableFilter from '../VnTable/VnTableFilter.vue';
import VnFilterPanel from 'src/components/ui/VnFilterPanel.vue'; import VnSelect from './VnSelect.vue';
import { useRoute } from 'vue-router';
import VnInput from './VnInput.vue';
import { ref, computed, watch } from 'vue';
import VnInputDate from './VnInputDate.vue';
import { useFilterParams } from 'src/composables/useFilterParams';
import FetchData from '../FetchData.vue';
import { useValidator } from 'src/composables/useValidator';
import { useCapitalize } from 'src/composables/useCapitalize';
const { t } = useI18n(); const $props = defineProps({
const props = defineProps({
dataKey: { dataKey: {
type: String, type: String,
required: true, default: null,
}, },
}); });
const workers = ref(); const { t } = useI18n();
const route = useRoute();
const validationsStore = useValidator();
const { models } = validationsStore;
const entities = ref([]);
const editors = ref([]);
const userParams = ref(useFilterParams($props.dataKey).params);
let validations = models;
const userTypes = [
{ value: 'All', label: t(`Users.All`) },
{ value: 'User', label: t(`Users.User`) },
{ value: 'System', label: t(`Users.System`) },
];
const checkboxOptions = ref([
{ name: 'insert', label: 'Creates', selected: false },
{ name: 'update', label: 'Edits', selected: false },
{ name: 'delete', label: 'Deletes', selected: false },
{ name: 'select', label: 'Accesses', selected: false },
]);
const columns = computed(() => [
{ name: 'changedModelValue' },
{ name: 'changedModel' },
{ name: 'userType', orderBy: false },
{ name: 'userFk' },
{ name: 'change', orderBy: false },
{ name: 'action' },
{ name: 'from', orderBy: 'creationDate' },
{ name: 'to', orderBy: 'creationDate' },
]);
const userParamsWatcher = watch(
() => userParams.value,
(params) => {
if (params.action) {
params.action.forEach((option) => {
checkboxOptions.value.find((o) => o.name === option).selected = true;
});
userParamsWatcher();
}
},
);
function getActions() {
const actions = checkboxOptions.value
.filter((option) => option.selected)
?.map((o) => o.name);
return actions.length ? actions : null;
}
</script> </script>
<template> <template>
<FetchData <FetchData
url="Workers/activeWithInheritedRole" :url="`${dataKey}s/${route.params.id}/models`"
:filter="{ where: { role: 'salesPerson' } }" :filter="{ order: ['changedModel'] }"
@on-fetch="(data) => (workers = data)" @on-fetch="
(data) =>
(entities = data.map((item) => {
const changedModel = item.changedModel;
return {
locale: useCapitalize(
validations[changedModel]?.locale?.name ?? changedModel,
),
value: changedModel,
};
}))
"
auto-load auto-load
/> />
<VnFilterPanel :data-key="props.dataKey" :search-button="true"> <FetchData
<template #tags="{ tag, formatFn }"> :url="`${dataKey}s/${route.params.id}/editors`"
<div class="q-gutter-x-xs"> :filter="{ fields: ['id', 'nickname', 'name', 'image'] }"
<strong>{{ t(`params.${tag.label}`) }}: </strong> sort-by="nickname"
<span>{{ formatFn(tag.value) }}</span> @on-fetch="(data) => (editors = data)"
auto-load
/>
<VnTableFilter
v-if="dataKey"
:data-key
:columns="columns"
:redirect="false"
:hiddenTags="['originFk', 'creationDate']"
:exprBuilder
search-url="logs"
:showTagChips="false"
>
<template #filter-changedModelValue="{ params, columnName, searchFn }">
<VnInput
:label="t('globals.search')"
v-model="params[columnName]"
@keyup.enter="searchFn"
@blur="searchFn"
@remove="searchFn"
:info="t('tooltips.search')"
dense
filled
data-cy="vnLog-search"
/>
</template>
<template #filter-changedModel="{ params, columnName, searchFn }">
<VnSelect
:label="t('globals.entity')"
v-model="params[columnName]"
option-label="locale"
option-value="value"
:options="entities"
@update:model-value="() => searchFn()"
dense
filled
data-cy="vnLog-entity"
/>
</template>
<template #filter-userType="{ params, columnName, searchFn }">
<QOptionGroup
class="text-left"
size="sm"
v-model="params[columnName]"
:options="userTypes"
color="primary"
@update:model-value="
() => {
params.userFk = null;
searchFn();
}
"
/>
</template>
<template #filter-userFk="{ params, columnName, searchFn }">
<VnSelect
:label="t('globals.user')"
v-model="params[columnName]"
:options="editors"
@update:modelValue="() => searchFn()"
:disable="params.userType === 'System'"
dense
filled
>
<template #option="{ opt, itemProps }">
<QItem v-bind="itemProps" class="q-pa-xs row items-center">
<QItemSection class="col-3 items-center">
<VnAvatar :worker-id="opt.id" />
</QItemSection>
<QItemSection class="col-9 justify-center">
<span>{{ opt.name }}</span>
<span class="text-grey">{{ opt.nickname }}</span>
</QItemSection>
</QItem>
</template>
</VnSelect>
</template>
<template #filter-change="{ params, columnName, searchFn }">
<VnInput
:label="t('globals.changes')"
v-model="params[columnName]"
@keyup.enter="searchFn"
@blur="searchFn"
@remove="searchFn"
:info="t('tooltips.changes')"
dense
filled
/>
</template>
<template #filter-action="{ searchFn }">
<div class="column">
<QCheckbox
v-for="checkboxOption in checkboxOptions"
:key="checkboxOption"
size="sm"
v-model="checkboxOption.selected"
:label="t(`actions.${checkboxOption.label}`)"
@update:model-value="
() => searchFn(undefined, 'action', getActions())
"
data-cy="vnLog-checkbox"
/>
</div> </div>
</template> </template>
<template #body="{ params, searchFn }"> <template #filter-from="{ params, columnName, searchFn }">
<QDate <VnInputDate
v-model="params.created" :label="t('globals.from')"
@update:model-value="searchFn()" v-model="params[columnName]"
dense dense
flat filled
minimal @update:modelValue="() => searchFn()"
> />
</QDate>
<QSeparator />
<QItem>
<QItemSection v-if="!workers">
<QSkeleton type="QInput" class="full-width" />
</QItemSection>
<QItemSection v-if="workers">
<QSelect
:label="t('User')"
v-model="params.userFk"
@update:model-value="searchFn()"
:options="workers"
option-value="id"
option-label="name"
emit-value
map-options
use-input
:input-debounce="0"
/>
</QItemSection>
</QItem>
</template> </template>
</VnFilterPanel> <template #filter-to="{ params, columnName, searchFn }">
<VnInputDate
:label="t('globals.to')"
v-model="params[columnName]"
dense
filled
@update:modelValue="() => searchFn()"
/>
</template>
</VnTableFilter>
</template> </template>
<i18n> <i18n>
en:
params:
search: Contains
userFk: User
created: Created
es: es:
tooltips:
search: Buscar por identificador o concepto
changes: Buscar por cambios. Los atributos deben buscarse por su nombre interno, para obtenerlo situar el cursor sobre el atributo.
actions:
Creates: Crea
Edits: Modifica
Deletes: Elimina
Accesses: Accede
Users:
User: Usuario
All: Todo
System: Sistema
params: params:
search: Contiene changedModel: Entity
userFk: Usuario
created: Creada en:
User: Usuario tooltips:
search: Search by identifier or concept
changes: Search by changes. Attributes must be searched by their internal name, to get it place the cursor over the attribute.
actions:
Creates: Creates
Edits: Edits
Deletes: Deletes
Accesses: Accesses
Users:
User: User
All: All
System: System
params:
changedModel: Entidad
</i18n> </i18n>

View File

@ -0,0 +1,28 @@
<script setup>
import { useDescriptorStore } from 'src/stores/useDescriptorStore';
import VnJsonValue from './VnJsonValue.vue';
import { computed } from 'vue';
const descriptorStore = useDescriptorStore();
const $props = defineProps({
value: { type: Object, default: () => {} },
name: { type: String, default: undefined },
});
const descriptor = computed(() => descriptorStore.has($props.name));
</script>
<template>
<VnJsonValue :value="value.val" />
<span
v-if="(value.id || typeof value.val == 'number') && descriptor"
style="margin-left: 2px"
>
<QIcon
name="launch"
class="link"
:data-cy="'iconLaunch-' + $props.name"
style="padding-bottom: 2px"
/>
<component :is="descriptor" :id="value.id ?? value.val" />
</span>
</template>

View File

@ -40,10 +40,6 @@ const $props = defineProps({
type: Boolean, type: Boolean,
default: true, default: true,
}, },
keepData: {
type: Boolean,
default: true,
},
}); });
const route = useRoute(); const route = useRoute();
@ -61,7 +57,6 @@ onBeforeMount(() => {
if ($props.dataKey) if ($props.dataKey)
arrayData = useArrayData($props.dataKey, { arrayData = useArrayData($props.dataKey, {
searchUrl: 'table', searchUrl: 'table',
keepData: $props.keepData,
...$props.arrayDataProps, ...$props.arrayDataProps,
navigate: $props.redirect, navigate: $props.redirect,
}); });

View File

@ -152,6 +152,10 @@ const value = computed({
}, },
}); });
const computedSortBy = computed(() => {
return $props.sortBy || $props.optionLabel + ' ASC';
});
watch(options, (newValue) => { watch(options, (newValue) => {
setOptions(newValue); setOptions(newValue);
}); });
@ -186,7 +190,7 @@ function findKeyInOptions() {
} }
function setOptions(data) { function setOptions(data) {
data = dataByOrder(data, $props.sortBy); data = dataByOrder(data, computedSortBy.value);
myOptions.value = JSON.parse(JSON.stringify(data)); myOptions.value = JSON.parse(JSON.stringify(data));
myOptionsOriginal.value = JSON.parse(JSON.stringify(data)); myOptionsOriginal.value = JSON.parse(JSON.stringify(data));
emit('update:options', data); emit('update:options', data);
@ -216,7 +220,8 @@ function filter(val, options) {
async function fetchFilter(val) { async function fetchFilter(val) {
if (!$props.url) return; if (!$props.url) return;
const { fields, include, sortBy, limit } = $props; const { fields, include, limit } = $props;
const sortBy = computedSortBy.value;
const key = const key =
optionFilterValue.value ?? optionFilterValue.value ??
(new RegExp(/\d/g).test(val) (new RegExp(/\d/g).test(val)

View File

@ -4,12 +4,15 @@ import { vi, afterEach, beforeAll, describe, expect, it } from 'vitest';
describe('VnDmsList', () => { describe('VnDmsList', () => {
let vm; let vm;
const dms = { const dms = {
userFk: 1, userFk: 1,
name: 'DMS 1' name: 'DMS 1',
}; };
beforeAll(() => { beforeAll(() => {
vi.mock('src/composables/getUrl', () => ({
getUrl: vi.fn().mockResolvedValue(''),
}));
vi.spyOn(axios, 'get').mockResolvedValue({ data: [] }); vi.spyOn(axios, 'get').mockResolvedValue({ data: [] });
vm = createWrapper(VnDmsList, { vm = createWrapper(VnDmsList, {
props: { props: {
@ -18,8 +21,8 @@ describe('VnDmsList', () => {
filter: 'wd.workerFk', filter: 'wd.workerFk',
updateModel: 'Workers', updateModel: 'Workers',
deleteModel: 'WorkerDms', deleteModel: 'WorkerDms',
downloadModel: 'WorkerDms' downloadModel: 'WorkerDms',
} },
}).vm; }).vm;
}); });
@ -29,46 +32,45 @@ describe('VnDmsList', () => {
describe('setData()', () => { describe('setData()', () => {
const data = [ const data = [
{ {
userFk: 1, userFk: 1,
name: 'Jessica', name: 'Jessica',
lastName: 'Jones', lastName: 'Jones',
file: '4.jpg', file: '4.jpg',
created: '2021-07-28 21:00:00' created: '2021-07-28 21:00:00',
}, },
{ {
userFk: 2, userFk: 2,
name: 'Bruce', name: 'Bruce',
lastName: 'Banner', lastName: 'Banner',
created: '2022-07-28 21:00:00', created: '2022-07-28 21:00:00',
dms: { dms: {
userFk: 2, userFk: 2,
name: 'Bruce', name: 'Bruce',
lastName: 'BannerDMS', lastName: 'BannerDMS',
created: '2022-07-28 21:00:00', created: '2022-07-28 21:00:00',
file: '4.jpg', file: '4.jpg',
} },
}, },
{ {
userFk: 3, userFk: 3,
name: 'Natasha', name: 'Natasha',
lastName: 'Romanoff', lastName: 'Romanoff',
file: '4.jpg', file: '4.jpg',
created: '2021-10-28 21:00:00' created: '2021-10-28 21:00:00',
} },
] ];
it('Should replace objects that contain the "dms" property with the value of the same and sort by creation date', () => { it('Should replace objects that contain the "dms" property with the value of the same and sort by creation date', () => {
vm.setData(data); vm.setData(data);
expect([vm.rows][0][0].lastName).toEqual('BannerDMS'); expect([vm.rows][0][0].lastName).toEqual('BannerDMS');
expect([vm.rows][0][1].lastName).toEqual('Romanoff'); expect([vm.rows][0][1].lastName).toEqual('Romanoff');
}); });
}); });
describe('parseDms()', () => { describe('parseDms()', () => {
const resultDms = { ...dms, userId:1}; const resultDms = { ...dms, userId: 1 };
it('Should add properties that end with "Fk" by changing the suffix to "Id"', () => { it('Should add properties that end with "Fk" by changing the suffix to "Id"', () => {
const parsedDms = vm.parseDms(dms); const parsedDms = vm.parseDms(dms);
expect(parsedDms).toEqual(resultDms); expect(parsedDms).toEqual(resultDms);
@ -76,12 +78,12 @@ describe('VnDmsList', () => {
}); });
describe('showFormDialog()', () => { describe('showFormDialog()', () => {
const resultDms = { ...dms, userId:1}; const resultDms = { ...dms, userId: 1 };
it('should call fn parseDms() and set show true if dms is defined', () => { it('should call fn parseDms() and set show true if dms is defined', () => {
vm.showFormDialog(dms); vm.showFormDialog(dms);
expect(vm.formDialog.show).toEqual(true); expect(vm.formDialog.show).toEqual(true);
expect(vm.formDialog.dms).toEqual(resultDms); expect(vm.formDialog.dms).toEqual(resultDms);
}); });
}); });
}); });

View File

@ -108,27 +108,4 @@ describe('VnLog', () => {
expect(vm.logTree[0].originFk).toEqual(1); expect(vm.logTree[0].originFk).toEqual(1);
expect(vm.logTree[0].logs[0].user.name).toEqual('salesPerson'); expect(vm.logTree[0].logs[0].user.name).toEqual('salesPerson');
}); });
it('should correctly set the selectedFilters when filtering', () => {
vm.searchInput = '1';
vm.userSelect = '21';
vm.checkboxOptions.insert.selected = true;
vm.checkboxOptions.update.selected = true;
vm.selectFilter('search');
vm.selectFilter('userSelect');
expect(vm.selectedFilters.changedModelId).toEqual('1');
expect(vm.selectedFilters.userFk).toEqual('21');
expect(vm.selectedFilters.action).toEqual({ inq: ['insert', 'update'] });
});
it('should correctly set the date from', () => {
vm.dateFrom = '18-09-2023';
vm.selectFilter('date', 'from');
expect(vm.selectedFilters.creationDate.between).toEqual([
new Date('2023-09-18T00:00:00.000Z'),
new Date('2023-09-18T21:59:59.999Z'),
]);
});
}); });

View File

@ -0,0 +1,28 @@
import { vi, describe, expect, it, beforeAll, afterEach } from 'vitest';
import { createWrapper } from 'app/test/vitest/helper';
import VnLogFilter from 'src/components/common/VnLogFilter.vue';
describe('VnLogFilter', () => {
let vm;
beforeAll(async () => {
vm = createWrapper(VnLogFilter, {
props: {
dataKey: 'ClaimLog',
},
}).vm;
});
afterEach(() => {
vi.clearAllMocks();
});
it('should getActions selected', async () => {
vm.checkboxOptions.find((o) => o.name == 'insert').selected = true;
vm.checkboxOptions.find((o) => o.name == 'update').selected = true;
const actions = vm.getActions();
expect(actions.length).toEqual(2);
expect(actions).toEqual(['insert', 'update']);
});
});

View File

@ -0,0 +1,26 @@
import { describe, it, expect } from 'vitest';
import VnLogValue from 'src/components/common/VnLogValue.vue';
import { createWrapper } from 'app/test/vitest/helper';
const buildComponent = (props) => {
return createWrapper(VnLogValue, {
props,
global: {},
}).wrapper;
};
describe('VnLogValue', () => {
const id = 1;
it('renders without descriptor', async () => {
expect(getIcon('inventFk').exists()).toBe(false);
});
it('renders with descriptor', async () => {
expect(getIcon('claimFk').text()).toBe('launch');
});
function getIcon(name) {
const wrapper = buildComponent({ value: { val: id }, name });
return wrapper.find('.q-icon');
}
});

View File

@ -1,16 +1,6 @@
import { import { describe, it, expect, vi, afterEach, beforeEach, afterAll } from 'vitest';
describe,
it,
expect,
vi,
beforeAll,
afterEach,
beforeEach,
afterAll,
} from 'vitest';
import { createWrapper, axios } from 'app/test/vitest/helper'; import { createWrapper, axios } from 'app/test/vitest/helper';
import VnNotes from 'src/components/ui/VnNotes.vue'; import VnNotes from 'src/components/ui/VnNotes.vue';
import vnDate from 'src/boot/vnDate';
describe('VnNotes', () => { describe('VnNotes', () => {
let vm; let vm;
@ -18,6 +8,7 @@ describe('VnNotes', () => {
let spyFetch; let spyFetch;
let postMock; let postMock;
let patchMock; let patchMock;
let deleteMock;
let expectedInsertBody; let expectedInsertBody;
let expectedUpdateBody; let expectedUpdateBody;
const defaultOptions = { const defaultOptions = {
@ -57,6 +48,7 @@ describe('VnNotes', () => {
beforeEach(() => { beforeEach(() => {
postMock = vi.spyOn(axios, 'post'); postMock = vi.spyOn(axios, 'post');
patchMock = vi.spyOn(axios, 'patch'); patchMock = vi.spyOn(axios, 'patch');
deleteMock = vi.spyOn(axios, 'delete');
}); });
afterEach(() => { afterEach(() => {
@ -153,4 +145,16 @@ describe('VnNotes', () => {
); );
}); });
}); });
describe('delete', () => {
it('Should call axios.delete with url and vnPaginateRef.fetch', async () => {
generateWrapper();
createSpyFetch();
await vm.deleteNote({ id: 1 });
expect(deleteMock).toHaveBeenCalledWith(`${vm.$props.url}/1`);
expect(spyFetch).toHaveBeenCalled();
});
});
}); });

View File

@ -1,274 +1,40 @@
<script setup> <script setup>
import { onBeforeMount, watch, computed, ref } from 'vue'; import { ref } from 'vue';
import { useI18n } from 'vue-i18n'; import VnDescriptor from './VnDescriptor.vue';
import SkeletonDescriptor from 'components/ui/SkeletonDescriptor.vue';
import { useArrayData } from 'composables/useArrayData';
import { useSummaryDialog } from 'src/composables/useSummaryDialog';
import { useState } from 'src/composables/useState';
import { useRoute, useRouter } from 'vue-router';
import { useClipboard } from 'src/composables/useClipboard';
import VnMoreOptions from './VnMoreOptions.vue';
const $props = defineProps({ const $props = defineProps({
url: { id: {
type: String,
default: '',
},
filter: {
type: Object,
default: null,
},
title: {
type: String,
default: '',
},
subtitle: {
type: Number, type: Number,
default: null, default: false,
}, },
dataKey: { card: {
type: String,
default: null,
},
summary: {
type: Object, type: Object,
default: null, default: null,
}, },
width: {
type: String,
default: 'md-width',
},
toModule: {
type: String,
default: null,
},
}); });
const state = useState();
const route = useRoute();
const router = useRouter();
const { t } = useI18n();
const { copyText } = useClipboard();
const { viewSummary } = useSummaryDialog();
let arrayData;
let store;
let entity;
const isLoading = ref(false);
const isSameDataKey = computed(() => $props.dataKey === route.meta.moduleName);
const DESCRIPTOR_PROXY = 'DescriptorProxy';
const moduleName = ref();
const isSameModuleName = route.matched[1].meta.moduleName !== moduleName.value;
defineExpose({ getData });
onBeforeMount(async () => {
arrayData = useArrayData($props.dataKey, {
url: $props.url,
userFilter: $props.filter,
skip: 0,
oneRecord: true,
});
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) await getData();
watch(
() => [$props.url, $props.filter],
async () => {
if (!isSameDataKey.value) await getData();
},
);
});
function getName() {
let name = $props.dataKey;
if ($props.dataKey.includes(DESCRIPTOR_PROXY)) {
name = name.split(DESCRIPTOR_PROXY)[0];
}
return name;
}
const routeName = computed(() => {
let routeName = getName();
return `${routeName}Summary`;
});
async function getData() {
store.url = $props.url;
store.filter = $props.filter ?? {};
isLoading.value = true;
try {
const { data } = await arrayData.fetch({ append: false, updateRouter: false });
state.set($props.dataKey, data);
emit('onFetch', data);
} finally {
isLoading.value = false;
}
}
function getValueFromPath(path) {
if (!path) return;
const keys = path.toString().split('.');
let current = entity.value;
for (const key of keys) {
if (current[key] === undefined) return undefined;
else current = current[key];
}
return current;
}
function copyIdText(id) {
copyText(id, {
component: {
copyValue: id,
},
});
}
const emit = defineEmits(['onFetch']); const emit = defineEmits(['onFetch']);
const entity = ref();
const iconModule = computed(() => {
moduleName.value = getName();
if ($props.toModule) {
return router.getRoutes().find((r) => r.name === $props.toModule.name).meta.icon;
}
if (isSameModuleName) {
return router.options.routes[1].children.find((r) => r.name === moduleName.value)
?.meta?.icon;
} else {
return route.matched[1].meta.icon;
}
});
const toModule = computed(() => {
moduleName.value = getName();
if ($props.toModule) return $props.toModule;
if (isSameModuleName) {
return router.options.routes[1].children.find((r) => r.name === moduleName.value)
?.redirect;
} else {
return route.matched[1].path.split('/').length > 2
? route.matched[1].redirect
: route.matched[1].children[0].redirect;
}
});
</script> </script>
<template> <template>
<div class="descriptor"> <component
<template v-if="entity && !isLoading"> :is="card"
<div class="header bg-primary q-pa-sm justify-between"> :id
<slot name="header-extra-action"> :visual="false"
<QBtn v-bind="$attrs"
round @on-fetch="
flat (data) => {
dense entity = data;
size="md" emit('onFetch', data);
:icon="iconModule" }
color="white" "
class="link"
:to="toModule"
>
<QTooltip>
{{ t('globals.goToModuleIndex') }}
</QTooltip>
</QBtn>
</slot>
<QBtn
@click.stop="viewSummary(entity.id, $props.summary, $props.width)"
round
flat
dense
size="md"
icon="preview"
color="white"
class="link"
v-if="summary"
data-cy="openSummaryBtn"
>
<QTooltip>
{{ t('components.smartCard.openSummary') }}
</QTooltip>
</QBtn>
<RouterLink :to="{ name: routeName, params: { id: entity.id } }">
<QBtn
class="link"
color="white"
dense
flat
icon="launch"
round
size="md"
data-cy="goToSummaryBtn"
>
<QTooltip>
{{ t('components.cardDescriptor.summary') }}
</QTooltip>
</QBtn>
</RouterLink>
<VnMoreOptions v-if="$slots.menu">
<template #menu="{ menuRef }">
<slot name="menu" :entity="entity" :menu-ref="menuRef" />
</template>
</VnMoreOptions>
</div>
<slot name="before" />
<div class="body q-py-sm">
<QList dense>
<QItemLabel header class="ellipsis text-h5" :lines="1">
<div class="title">
<span v-if="$props.title" :title="getValueFromPath(title)">
{{ getValueFromPath(title) ?? $props.title }}
</span>
<slot v-else name="description" :entity="entity">
<span :title="entity.name">
{{ entity.name }}
</span>
</slot>
</div>
</QItemLabel>
<QItem>
<QItemLabel class="subtitle">
#{{ getValueFromPath(subtitle) ?? entity.id }}
</QItemLabel>
<QBtn
round
flat
dense
size="sm"
icon="content_copy"
color="primary"
@click.stop="copyIdText(entity.id)"
>
<QTooltip>
{{ t('globals.copyId') }}
</QTooltip>
</QBtn>
</QItem>
</QList>
<div class="list-box q-mt-xs">
<slot name="body" :entity="entity" />
</div>
</div>
<div class="icons">
<slot name="icons" :entity="entity" />
</div>
<div class="actions justify-center" data-cy="descriptor_actions">
<slot name="actions" :entity="entity" />
</div>
<slot name="after" />
</template>
<SkeletonDescriptor v-if="!entity || isLoading" />
</div>
<QInnerLoading
:label="t('globals.pleaseWait')"
:showing="isLoading"
color="primary"
/> />
<VnDescriptor v-model="entity" v-bind="$attrs">
<template v-for="(_, slotName) in $slots" #[slotName]="slotData" :key="slotName">
<slot :name="slotName" v-bind="slotData ?? {}" :key="slotName" />
</template>
</VnDescriptor>
</template> </template>
<style lang="scss"> <style lang="scss">

View File

@ -206,6 +206,29 @@ async function fetch() {
} }
} }
} }
.vn-card-group {
display: flex;
flex-direction: column;
}
.vn-card-content {
display: flex;
flex-direction: column;
text-overflow: ellipsis;
> div {
max-height: 70px;
}
}
@media (min-width: 1010px) {
.vn-card-group {
flex-direction: row;
}
.vn-card-content {
flex: 1;
}
}
</style> </style>
<style lang="scss" scoped> <style lang="scss" scoped>
.summaryHeader .vn-label-value { .summaryHeader .vn-label-value {

View File

@ -0,0 +1,78 @@
<script setup>
import { onBeforeMount, watch, computed, ref } from 'vue';
import { useArrayData } from 'composables/useArrayData';
import { useState } from 'src/composables/useState';
import { useRoute } from 'vue-router';
import VnDescriptor from './VnDescriptor.vue';
const $props = defineProps({
url: {
type: String,
default: '',
},
filter: {
type: Object,
default: null,
},
dataKey: {
type: String,
default: null,
},
});
const state = useState();
const route = useRoute();
let arrayData;
let store;
let entity;
const isLoading = ref(false);
const isSameDataKey = computed(() => $props.dataKey === route.meta.moduleName);
defineExpose({ getData });
onBeforeMount(async () => {
arrayData = useArrayData($props.dataKey, {
url: $props.url,
userFilter: $props.filter,
skip: 0,
oneRecord: true,
});
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) await getData();
watch(
() => [$props.url, $props.filter],
async () => {
if (!isSameDataKey.value) await getData();
},
);
});
async function getData() {
store.url = $props.url;
store.filter = $props.filter ?? {};
isLoading.value = true;
try {
const { data } = await arrayData.fetch({ append: false, updateRouter: false });
state.set($props.dataKey, data);
emit('onFetch', data);
} finally {
isLoading.value = false;
}
}
const emit = defineEmits(['onFetch']);
</script>
<template>
<VnDescriptor v-model="entity" v-bind="$attrs" :module="dataKey">
<template v-for="(_, slotName) in $slots" #[slotName]="slotData" :key="slotName">
<slot :name="slotName" v-bind="slotData ?? {}" :key="slotName" />
</template>
</VnDescriptor>
</template>

View File

@ -0,0 +1,318 @@
<script setup>
import { computed, ref } from 'vue';
import { useI18n } from 'vue-i18n';
import SkeletonDescriptor from 'components/ui/SkeletonDescriptor.vue';
import { useSummaryDialog } from 'src/composables/useSummaryDialog';
import { useRoute, useRouter } from 'vue-router';
import { useClipboard } from 'src/composables/useClipboard';
import VnMoreOptions from './VnMoreOptions.vue';
const entity = defineModel({ type: Object, default: null });
const $props = defineProps({
title: {
type: String,
default: '',
},
subtitle: {
type: Number,
default: null,
},
summary: {
type: Object,
default: null,
},
width: {
type: String,
default: 'md-width',
},
module: {
type: String,
default: null,
},
toModule: {
type: Object,
default: null,
},
});
const route = useRoute();
const router = useRouter();
const { t } = useI18n();
const { copyText } = useClipboard();
const { viewSummary } = useSummaryDialog();
const DESCRIPTOR_PROXY = 'DescriptorProxy';
const moduleName = ref();
const isSameModuleName = route.matched[1].meta.moduleName !== moduleName.value;
function getName() {
let name = $props.module;
if ($props.module.includes(DESCRIPTOR_PROXY)) {
name = name.split(DESCRIPTOR_PROXY)[0];
}
return name;
}
const routeName = computed(() => {
let routeName = getName();
return `${routeName}Summary`;
});
function getValueFromPath(path) {
if (!path) return;
const keys = path.toString().split('.');
let current = entity.value;
for (const key of keys) {
if (current[key] === undefined) return undefined;
else current = current[key];
}
return current;
}
function copyIdText(id) {
copyText(id, {
component: {
copyValue: id,
},
});
}
const emit = defineEmits(['onFetch']);
const iconModule = computed(() => {
moduleName.value = getName();
if ($props.toModule) {
return router.getRoutes().find((r) => r.name === $props.toModule.name).meta.icon;
}
if (isSameModuleName) {
return router.options.routes[1].children.find((r) => r.name === moduleName.value)
?.meta?.icon;
} else {
return route.matched[1].meta.icon;
}
});
const toModule = computed(() => {
moduleName.value = getName();
if ($props.toModule) return $props.toModule;
if (isSameModuleName) {
return router.options.routes[1].children.find((r) => r.name === moduleName.value)
?.redirect;
} else {
return route.matched[1].path.split('/').length > 2
? route.matched[1].redirect
: route.matched[1].children[0].redirect;
}
});
</script>
<template>
<div class="descriptor" data-cy="vnDescriptor">
<template v-if="entity && entity?.id">
<div class="header bg-primary q-pa-sm justify-between">
<slot name="header-extra-action">
<QBtn
round
flat
dense
size="md"
:icon="iconModule"
color="white"
class="link"
:to="toModule"
>
<QTooltip>
{{ t('globals.goToModuleIndex') }}
</QTooltip>
</QBtn>
</slot>
<QBtn
@click.stop="viewSummary(entity.id, summary, width)"
round
flat
dense
size="md"
icon="preview"
color="white"
class="link"
v-if="summary"
data-cy="openSummaryBtn"
>
<QTooltip>
{{ t('components.smartCard.openSummary') }}
</QTooltip>
</QBtn>
<RouterLink :to="{ name: routeName, params: { id: entity.id } }">
<QBtn
class="link"
color="white"
dense
flat
icon="launch"
round
size="md"
data-cy="goToSummaryBtn"
>
<QTooltip>
{{ t('components.vnDescriptor.summary') }}
</QTooltip>
</QBtn>
</RouterLink>
<VnMoreOptions v-if="$slots.menu">
<template #menu="{ menuRef }">
<slot name="menu" :entity="entity" :menu-ref="menuRef" />
</template>
</VnMoreOptions>
</div>
<slot name="before" />
<div class="body q-py-sm">
<QList dense>
<QItemLabel header class="ellipsis text-h5" :lines="1">
<div class="title">
<span
v-if="title"
:title="getValueFromPath(title)"
:data-cy="`${$attrs['data-cy'] ?? 'vnDescriptor'}_title`"
>
{{ getValueFromPath(title) ?? title }}
</span>
<slot v-else name="description" :entity="entity">
<span
:title="entity.name"
:data-cy="`${$attrs['data-cy'] ?? 'vnDescriptor'}_description`"
v-text="entity.name"
/>
</slot>
</div>
</QItemLabel>
<QItem>
<QItemLabel
class="subtitle"
:data-cy="`${$attrs['data-cy'] ?? 'vnDescriptor'}_subtitle`"
>
#{{ getValueFromPath(subtitle) ?? entity.id }}
</QItemLabel>
<QBtn
round
flat
dense
size="sm"
icon="content_copy"
color="primary"
@click.stop="copyIdText(entity.id)"
>
<QTooltip>
{{ t('globals.copyId') }}
</QTooltip>
</QBtn>
</QItem>
</QList>
<div
class="list-box q-mt-xs"
:data-cy="`${$attrs['data-cy'] ?? 'vnDescriptor'}_listbox`"
>
<slot name="body" :entity="entity" />
</div>
</div>
<div class="icons">
<slot name="icons" :entity="entity" />
</div>
<div class="actions justify-center" data-cy="descriptor_actions">
<slot name="actions" :entity="entity" />
</div>
<slot name="after" />
</template>
<SkeletonDescriptor v-if="!entity" />
</div>
<QInnerLoading :label="t('globals.pleaseWait')" :showing="!entity" color="primary" />
</template>
<style lang="scss">
.body {
background-color: var(--vn-section-color);
.text-h5 {
font-size: 20px;
padding-top: 5px;
padding-bottom: 0px;
}
.q-item {
min-height: 20px;
.link {
margin-left: 10px;
}
}
.vn-label-value {
display: flex;
padding: 0px 16px;
.label {
color: var(--vn-label-color);
font-size: 14px;
&:not(:has(a))::after {
content: ':';
}
}
.value {
color: var(--vn-text-color);
font-size: 14px;
margin-left: 4px;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
text-align: left;
}
.info {
margin-left: 5px;
}
}
}
</style>
<style lang="scss" scoped>
.title {
overflow: hidden;
text-overflow: ellipsis;
span {
color: var(--vn-text-color);
font-weight: bold;
}
}
.subtitle {
color: var(--vn-text-color);
font-size: 16px;
margin-bottom: 2px;
}
.list-box {
.q-item__label {
color: var(--vn-label-color);
padding-bottom: 0%;
}
}
.descriptor {
width: 256px;
.header {
display: flex;
align-items: center;
}
.icons {
margin: 0 10px;
display: flex;
justify-content: center;
.q-icon {
margin-right: 5px;
}
}
.actions {
margin: 0 5px;
justify-content: center !important;
}
}
</style>
<i18n>
en:
globals:
copyId: Copy ID
es:
globals:
copyId: Copiar ID
</i18n>

View File

@ -61,6 +61,10 @@ const $props = defineProps({
type: Object, type: Object,
default: null, default: null,
}, },
showTagChips: {
type: Boolean,
default: true,
},
}); });
const emit = defineEmits([ const emit = defineEmits([
@ -88,13 +92,14 @@ const userOrders = ref(useFilterParams($props.dataKey).orders);
defineExpose({ search, params: userParams, remove }); defineExpose({ search, params: userParams, remove });
const isLoading = ref(false); const isLoading = ref(false);
async function search(evt) { async function search(evt, name, value) {
try { try {
if (evt && $props.disableSubmitEvent) return; if (evt && $props.disableSubmitEvent) return;
store.filter.where = {}; store.filter.where = {};
isLoading.value = true; isLoading.value = true;
const filter = { ...userParams.value, ...$props.modelValue }; const filter = { ...userParams.value, ...$props.modelValue };
if (name) filter[name] = value;
store.userParamsChanged = true; store.userParamsChanged = true;
await arrayData.addFilter({ await arrayData.addFilter({
params: filter, params: filter,
@ -214,7 +219,7 @@ const getLocale = (label) => {
</QTooltip> </QTooltip>
</QBtn> </QBtn>
<QForm @submit="search" id="filterPanelForm" @keyup.enter="search()"> <QForm @submit="search" id="filterPanelForm" @keyup.enter="search()">
<QList dense> <QList dense v-if="showTagChips">
<QItem class="q-mt-xs"> <QItem class="q-mt-xs">
<QItemSection top> <QItemSection top>
<QItemLabel header lines="1" class="text-uppercase q-py-xs q-px-none"> <QItemLabel header lines="1" class="text-uppercase q-py-xs q-px-none">
@ -249,7 +254,7 @@ const getLocale = (label) => {
:key="chip.label" :key="chip.label"
:removable="!unremovableParams?.includes(chip.label)" :removable="!unremovableParams?.includes(chip.label)"
@remove="remove(chip.label)" @remove="remove(chip.label)"
data-cy="vnFilterPanelChip" :data-cy="`vnFilterPanelChip_${chip.label}`"
> >
<slot <slot
name="tags" name="tags"

View File

@ -28,13 +28,14 @@ function copyValueText() {
const val = computed(() => $props.value); const val = computed(() => $props.value);
</script> </script>
<template> <template>
<div class="vn-label-value"> <div class="vn-label-value" :data-cy="`${$attrs['data-cy'] ?? 'vnLv'}${label ?? ''}`">
<QCheckbox <QCheckbox
v-if="typeof value === 'boolean'" v-if="typeof value === 'boolean'"
v-model="val" v-model="val"
:label="label" :label="label"
disable disable
dense dense
size="sm"
/> />
<template v-else> <template v-else>
<div v-if="label || $slots.label" class="label"> <div v-if="label || $slots.label" class="label">
@ -42,9 +43,9 @@ const val = computed(() => $props.value);
<span style="color: var(--vn-label-color)">{{ label }}</span> <span style="color: var(--vn-label-color)">{{ label }}</span>
</slot> </slot>
</div> </div>
<div class="value"> <div class="value" v-if="value || $slots.value">
<slot name="value"> <slot name="value">
<span :title="value"> <span :title="value" style="text-overflow: ellipsis">
{{ dash ? dashIfEmpty(value) : value }} {{ dash ? dashIfEmpty(value) : value }}
</span> </span>
</slot> </slot>

View File

@ -9,10 +9,10 @@
data-cy="descriptor-more-opts" data-cy="descriptor-more-opts"
> >
<QTooltip> <QTooltip>
{{ $t('components.cardDescriptor.moreOptions') }} {{ $t('components.vnDescriptor.moreOptions') }}
</QTooltip> </QTooltip>
<QMenu ref="menuRef" data-cy="descriptor-more-opts-menu"> <QMenu ref="menuRef" data-cy="descriptor-more-opts-menu">
<QList> <QList data-cy="descriptor-more-opts_list">
<slot name="menu" :menu-ref="$refs.menuRef" /> <slot name="menu" :menu-ref="$refs.menuRef" />
</QList> </QList>
</QMenu> </QMenu>

View File

@ -18,10 +18,10 @@ import VnInput from 'components/common/VnInput.vue';
const emit = defineEmits(['onFetch']); const emit = defineEmits(['onFetch']);
const $attrs = useAttrs(); const originalAttrs = useAttrs();
const $attrs = computed(() => {
const isRequired = computed(() => { const { required, deletable, ...rest } = originalAttrs;
return Object.keys($attrs).includes('required'); return rest;
}); });
const $props = defineProps({ const $props = defineProps({
@ -40,6 +40,11 @@ const quasar = useQuasar();
const newNote = reactive({ text: null, observationTypeFk: null }); const newNote = reactive({ text: null, observationTypeFk: null });
const observationTypes = ref([]); const observationTypes = ref([]);
const vnPaginateRef = ref(); const vnPaginateRef = ref();
const defaultObservationType = computed(() =>
observationTypes.value.find(ot => ot.code === 'salesPerson')?.id
);
let originalText; let originalText;
function handleClick(e) { function handleClick(e) {
@ -48,6 +53,11 @@ function handleClick(e) {
else insert(); else insert();
} }
async function deleteNote(e) {
await axios.delete(`${$props.url}/${e.id}`);
await vnPaginateRef.value.fetch();
}
async function insert() { async function insert() {
if (!newNote.text || ($props.selectType && !newNote.observationTypeFk)) return; if (!newNote.text || ($props.selectType && !newNote.observationTypeFk)) return;
@ -111,14 +121,22 @@ function fetchData([data]) {
originalText = data?.notes; originalText = data?.notes;
emit('onFetch', data); emit('onFetch', data);
} }
const handleObservationTypes = (data) => {
observationTypes.value = data;
if(defaultObservationType.value) {
newNote.observationTypeFk = defaultObservationType.value;
}
};
</script> </script>
<template> <template>
<FetchData <FetchData
v-if="selectType" v-if="selectType"
url="ObservationTypes" url="ObservationTypes"
:filter="{ fields: ['id', 'description'] }" :filter="{ fields: ['id', 'description', 'code'] }"
auto-load auto-load
@on-fetch="(data) => (observationTypes = data)" @on-fetch="handleObservationTypes"
/> />
<FetchData <FetchData
v-if="justInput" v-if="justInput"
@ -144,7 +162,7 @@ function fetchData([data]) {
v-model="newNote.observationTypeFk" v-model="newNote.observationTypeFk"
option-label="description" option-label="description"
style="flex: 0.15" style="flex: 0.15"
:required="isRequired" :required="'required' in originalAttrs"
@keyup.enter.stop="insert" @keyup.enter.stop="insert"
/> />
<VnInput <VnInput
@ -152,10 +170,10 @@ function fetchData([data]) {
type="textarea" type="textarea"
:label="$props.justInput && newNote.text ? '' : t('Add note here...')" :label="$props.justInput && newNote.text ? '' : t('Add note here...')"
filled filled
size="lg"
autogrow autogrow
autofocus
@keyup.enter.stop="handleClick" @keyup.enter.stop="handleClick"
:required="isRequired" :required="'required' in originalAttrs"
clearable clearable
> >
<template #append> <template #append>
@ -189,7 +207,6 @@ function fetchData([data]) {
:search-url="false" :search-url="false"
@on-fetch=" @on-fetch="
newNote.text = ''; newNote.text = '';
newNote.observationTypeFk = null;
" "
> >
<template #body="{ rows }"> <template #body="{ rows }">
@ -226,6 +243,21 @@ function fetchData([data]) {
</QBadge> </QBadge>
</div> </div>
<span v-text="toDateHourMin(note.created)" /> <span v-text="toDateHourMin(note.created)" />
<div>
<QIcon
v-if="'deletable' in originalAttrs"
name="delete"
size="sm"
class="cursor-pointer"
color="primary"
@click="deleteNote(note)"
data-cy="notesRemoveNoteBtn"
>
<QTooltip>
{{ t('ticketNotes.removeNote') }}
</QTooltip>
</QIcon>
</div>
</div> </div>
</QCardSection> </QCardSection>
<QCardSection class="q-pa-xs q-my-none q-py-none"> <QCardSection class="q-pa-xs q-my-none q-py-none">

View File

@ -115,7 +115,7 @@ onMounted(async () => {
}); });
onBeforeUnmount(() => { onBeforeUnmount(() => {
if (!store.keepData) arrayData.reset(['data']); arrayData.reset(['data']);
arrayData.resetPagination(); arrayData.resetPagination();
}); });
@ -215,6 +215,7 @@ defineExpose({
paginate, paginate,
userParams: arrayData.store.userParams, userParams: arrayData.store.userParams,
currentFilter: arrayData.store.currentFilter, currentFilter: arrayData.store.currentFilter,
arrayData,
}); });
</script> </script>

View File

@ -26,6 +26,7 @@ const id = props.entityId;
:to="{ name: routeName, params: { id: id } }" :to="{ name: routeName, params: { id: id } }"
class="header link" class="header link"
:href="url" :href="url"
data-cy="goToSummaryBtn"
> >
<QIcon name="open_in_new" color="white" size="sm" /> <QIcon name="open_in_new" color="white" size="sm" />
</router-link> </router-link>

View File

@ -6,10 +6,12 @@ const session = useSession();
const token = session.getToken(); const token = session.getToken();
describe('downloadFile', () => { describe('downloadFile', () => {
const baseUrl = 'http://localhost:9000';
let defaulCreateObjectURL; let defaulCreateObjectURL;
beforeAll(() => { beforeAll(() => {
vi.mock('src/composables/getUrl', () => ({
getUrl: vi.fn().mockResolvedValue(''),
}));
defaulCreateObjectURL = window.URL.createObjectURL; defaulCreateObjectURL = window.URL.createObjectURL;
window.URL.createObjectURL = vi.fn(() => 'blob:http://localhost:9000/blob-id'); window.URL.createObjectURL = vi.fn(() => 'blob:http://localhost:9000/blob-id');
}); });
@ -22,15 +24,14 @@ describe('downloadFile', () => {
headers: { 'content-disposition': 'attachment; filename="test-file.txt"' }, headers: { 'content-disposition': 'attachment; filename="test-file.txt"' },
}; };
vi.spyOn(axios, 'get').mockImplementation((url) => { vi.spyOn(axios, 'get').mockImplementation((url) => {
if (url == 'Urls/getUrl') return Promise.resolve({ data: baseUrl }); if (url.includes('downloadFile')) return Promise.resolve(res);
else if (url.includes('downloadFile')) return Promise.resolve(res);
}); });
await downloadFile(1); await downloadFile(1);
expect(axios.get).toHaveBeenCalledWith( expect(axios.get).toHaveBeenCalledWith(
`${baseUrl}/api/dms/1/downloadFile?access_token=${token}`, `/api/dms/1/downloadFile?access_token=${token}`,
{ responseType: 'blob' } { responseType: 'blob' },
); );
}); });
}); });

View File

@ -7,18 +7,33 @@ const { getTokenMultimedia } = useSession();
const token = getTokenMultimedia(); const token = getTokenMultimedia();
export async function downloadFile(id, model = 'dms', urlPath = '/downloadFile', url) { export async function downloadFile(id, model = 'dms', urlPath = '/downloadFile', url) {
const appUrl = (await getUrl('', 'lilium')).replace('/#/', ''); const appUrl = await getAppUrl();
const response = await axios.get( const response = await axios.get(
url ?? `${appUrl}/api/${model}/${id}${urlPath}?access_token=${token}`, url ?? `${appUrl}/api/${model}/${id}${urlPath}?access_token=${token}`,
{ responseType: 'blob' } { responseType: 'blob' },
); );
download(response);
}
export async function downloadDocuware(url, params) {
const appUrl = await getAppUrl();
const response = await axios.get(`${appUrl}/api/` + url, {
responseType: 'blob',
params,
});
download(response);
}
function download(response) {
const contentDisposition = response.headers['content-disposition']; const contentDisposition = response.headers['content-disposition'];
const matches = /filename[^;=\n]*=((['"]).*?\2|[^;\n]*)/.exec(contentDisposition); const matches = /filename[^;=\n]*=((['"]).*?\2|[^;\n]*)/.exec(contentDisposition);
const filename = const filename = matches?.[1] ? matches[1].replace(/['"]/g, '') : 'downloaded-file';
matches != null && matches[1]
? matches[1].replace(/['"]/g, '')
: 'downloaded-file';
exportFile(filename, response.data); exportFile(filename, response.data);
} }
async function getAppUrl() {
return (await getUrl('', 'lilium')).replace('/#/', '');
}

View File

@ -56,7 +56,6 @@ export function useArrayData(key, userOptions) {
'searchUrl', 'searchUrl',
'navigate', 'navigate',
'mapKey', 'mapKey',
'keepData',
'oneRecord', 'oneRecord',
]; ];
if (typeof userOptions === 'object') { if (typeof userOptions === 'object') {
@ -108,7 +107,7 @@ export function useArrayData(key, userOptions) {
store.hasMoreData = limit && response.data.length >= limit; store.hasMoreData = limit && response.data.length >= limit;
if (!append && !isDialogOpened() && updateRouter) { if (!append && !isDialogOpened() && updateRouter) {
if (updateStateParams(response.data)?.redirect && !store.keepData) return; if (updateStateParams(response.data)?.redirect) return;
} }
store.isLoading = false; store.isLoading = false;
canceller = null; canceller = null;
@ -189,7 +188,7 @@ export function useArrayData(key, userOptions) {
store.order = order; store.order = order;
resetPagination(); resetPagination();
fetch({}); await fetch({});
index++; index++;
return { index, order }; return { index, order };

View File

@ -14,7 +14,7 @@ export function useFilterParams(key) {
watch( watch(
() => arrayData.value.store?.currentFilter, () => arrayData.value.store?.currentFilter,
(val, oldValue) => (val || oldValue) && setUserParams(val), (val, oldValue) => (val || oldValue) && setUserParams(val),
{ immediate: true, deep: true } { immediate: true, deep: true },
); );
function parseOrder(urlOrders) { function parseOrder(urlOrders) {
@ -54,7 +54,7 @@ export function useFilterParams(key) {
Object.assign(params, item); Object.assign(params, item);
}); });
delete params[key]; delete params[key];
} else if (value && typeof value === 'object') { } else if (value && typeof value === 'object' && !Array.isArray(value)) {
const param = Object.values(value)[0]; const param = Object.values(value)[0];
if (typeof param == 'string') params[key] = param.replaceAll('%', ''); if (typeof param == 'string') params[key] = param.replaceAll('%', '');
} }

View File

@ -370,6 +370,11 @@ globals:
countryCodeFk: Country countryCodeFk: Country
companyFk: Company companyFk: Company
nickname: Alias nickname: Alias
changedModel: Entity
changedModelValue: Search
changedModelId: Entity id
userFk: User
action: Action
model: Model model: Model
fuel: Fuel fuel: Fuel
active: Active active: Active
@ -646,6 +651,7 @@ worker:
model: Model model: Model
serialNumber: Serial number serialNumber: Serial number
removePDA: Deallocate PDA removePDA: Deallocate PDA
sendToTablet: Send to tablet
create: create:
lastName: Last name lastName: Last name
birth: Birth birth: Birth
@ -884,7 +890,7 @@ components:
openCard: View openCard: View
openSummary: Summary openSummary: Summary
viewSummary: Summary viewSummary: Summary
cardDescriptor: vnDescriptor:
mainList: Main list mainList: Main list
summary: Summary summary: Summary
moreOptions: More options moreOptions: More options

View File

@ -371,6 +371,11 @@ globals:
countryCodeFk: País countryCodeFk: País
companyFk: Empresa companyFk: Empresa
nickname: Alias nickname: Alias
changedModel: Entidad
changedModelValue: Buscar
changedModelId: Id de entidad
userFk: Usuario
action: Acción
errors: errors:
statusUnauthorized: Acceso denegado statusUnauthorized: Acceso denegado
statusInternalServerError: Ha ocurrido un error interno del servidor statusInternalServerError: Ha ocurrido un error interno del servidor
@ -731,6 +736,7 @@ worker:
model: Modelo model: Modelo
serialNumber: Número de serie serialNumber: Número de serie
removePDA: Desasignar PDA removePDA: Desasignar PDA
sendToTablet: Enviar a la tablet
create: create:
lastName: Apellido lastName: Apellido
birth: Fecha de nacimiento birth: Fecha de nacimiento
@ -968,7 +974,7 @@ components:
openCard: Ficha openCard: Ficha
openSummary: Detalles openSummary: Detalles
viewSummary: Vista previa viewSummary: Vista previa
cardDescriptor: vnDescriptor:
mainList: Listado principal mainList: Listado principal
summary: Resumen summary: Resumen
moreOptions: Más opciones moreOptions: Más opciones

View File

@ -47,7 +47,7 @@ const rolesOptions = ref([]);
:label="t('globals.name')" :label="t('globals.name')"
v-model="params.name" v-model="params.name"
lazy-rules lazy-rules
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -57,7 +57,7 @@ const rolesOptions = ref([]);
:label="t('account.card.alias')" :label="t('account.card.alias')"
v-model="params.nickname" v-model="params.nickname"
lazy-rules lazy-rules
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -75,8 +75,7 @@ const rolesOptions = ref([]);
use-input use-input
hide-selected hide-selected
dense dense
outlined filled
rounded
:input-debounce="0" :input-debounce="0"
/> />
</QItemSection> </QItemSection>

View File

@ -56,8 +56,7 @@ onBeforeMount(() => {
option-label="name" option-label="name"
use-input use-input
dense dense
outlined filled
rounded
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -72,8 +71,7 @@ onBeforeMount(() => {
option-label="name" option-label="name"
use-input use-input
dense dense
outlined filled
rounded
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -83,7 +81,7 @@ onBeforeMount(() => {
:label="t('acls.aclFilter.property')" :label="t('acls.aclFilter.property')"
v-model="params.property" v-model="params.property"
lazy-rules lazy-rules
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -98,8 +96,7 @@ onBeforeMount(() => {
option-label="name" option-label="name"
use-input use-input
dense dense
outlined filled
rounded
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -114,8 +111,7 @@ onBeforeMount(() => {
option-label="name" option-label="name"
use-input use-input
dense dense
outlined filled
rounded
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>

View File

@ -4,7 +4,7 @@ import { useRoute, useRouter } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { useQuasar } from 'quasar'; import { useQuasar } from 'quasar';
import CardDescriptor from 'components/ui/CardDescriptor.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 axios from 'axios'; import axios from 'axios';
@ -48,7 +48,7 @@ const removeAlias = () => {
</script> </script>
<template> <template>
<CardDescriptor <EntityDescriptor
ref="descriptor" ref="descriptor"
:url="`MailAliases/${entityId}`" :url="`MailAliases/${entityId}`"
data-key="Alias" data-key="Alias"
@ -63,7 +63,7 @@ const removeAlias = () => {
<template #body="{ entity }"> <template #body="{ entity }">
<VnLv :label="t('role.description')" :value="entity.description" /> <VnLv :label="t('role.description')" :value="entity.description" />
</template> </template>
</CardDescriptor> </EntityDescriptor>
</template> </template>
<i18n> <i18n>

View File

@ -1,7 +1,7 @@
<script setup> <script setup>
import { ref, computed, onMounted } from 'vue'; import { ref, computed, onMounted } from 'vue';
import { useRoute } from 'vue-router'; import { useRoute } from 'vue-router';
import CardDescriptor from 'components/ui/CardDescriptor.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 AccountDescriptorMenu from './AccountDescriptorMenu.vue'; import AccountDescriptorMenu from './AccountDescriptorMenu.vue';
import VnImg from 'src/components/ui/VnImg.vue'; import VnImg from 'src/components/ui/VnImg.vue';
@ -20,7 +20,7 @@ onMounted(async () => {
</script> </script>
<template> <template>
<CardDescriptor <EntityDescriptor
ref="descriptor" ref="descriptor"
:url="`VnUsers/preview`" :url="`VnUsers/preview`"
:filter="{ ...filter, where: { id: entityId } }" :filter="{ ...filter, where: { id: entityId } }"
@ -78,7 +78,7 @@ onMounted(async () => {
</QIcon> </QIcon>
</QCardActions> </QCardActions>
</template> </template>
</CardDescriptor> </EntityDescriptor>
</template> </template>
<style scoped> <style scoped>
.q-item__label { .q-item__label {

View File

@ -0,0 +1,14 @@
<script setup>
import AccountDescriptor from './AccountDescriptor.vue';
import AccountSummary from './AccountSummary.vue';
</script>
<template>
<QPopupProxy style="max-width: 10px">
<AccountDescriptor
v-if="$attrs.id"
v-bind="$attrs.id"
:summary="AccountSummary"
:proxy-render="true"
/>
</QPopupProxy>
</template>

View File

@ -27,7 +27,7 @@ const props = defineProps({
:label="t('globals.name')" :label="t('globals.name')"
v-model="params.name" v-model="params.name"
lazy-rules lazy-rules
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -37,7 +37,7 @@ const props = defineProps({
:label="t('role.description')" :label="t('role.description')"
v-model="params.description" v-model="params.description"
lazy-rules lazy-rules
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>

View File

@ -2,7 +2,7 @@
import { computed } 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 CardDescriptor from 'components/ui/CardDescriptor.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 axios from 'axios'; import axios from 'axios';
import useNotify from 'src/composables/useNotify.js'; import useNotify from 'src/composables/useNotify.js';
@ -32,7 +32,7 @@ const removeRole = async () => {
</script> </script>
<template> <template>
<CardDescriptor <EntityDescriptor
url="VnRoles" url="VnRoles"
:filter="{ where: { id: entityId } }" :filter="{ where: { id: entityId } }"
data-key="Role" data-key="Role"
@ -47,7 +47,7 @@ const removeRole = async () => {
<template #body="{ entity }"> <template #body="{ entity }">
<VnLv :label="t('role.description')" :value="entity.description" /> <VnLv :label="t('role.description')" :value="entity.description" />
</template> </template>
</CardDescriptor> </EntityDescriptor>
</template> </template>
<style scoped> <style scoped>
.q-item__label { .q-item__label {

View File

@ -6,7 +6,7 @@ import { toDateHourMinSec, toPercentage } from 'src/filters';
import TicketDescriptorProxy from 'pages/Ticket/Card/TicketDescriptorProxy.vue'; import TicketDescriptorProxy from 'pages/Ticket/Card/TicketDescriptorProxy.vue';
import ClaimDescriptorMenu from 'pages/Claim/Card/ClaimDescriptorMenu.vue'; import ClaimDescriptorMenu from 'pages/Claim/Card/ClaimDescriptorMenu.vue';
import DepartmentDescriptorProxy from 'src/pages/Worker/Department/Card/DepartmentDescriptorProxy.vue'; import DepartmentDescriptorProxy from 'src/pages/Worker/Department/Card/DepartmentDescriptorProxy.vue';
import CardDescriptor from 'components/ui/CardDescriptor.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 { getUrl } from 'src/composables/getUrl';
@ -44,7 +44,7 @@ onMounted(async () => {
</script> </script>
<template> <template>
<CardDescriptor <EntityDescriptor
:url="`Claims/${entityId}`" :url="`Claims/${entityId}`"
:filter="filter" :filter="filter"
title="client.name" title="client.name"
@ -147,7 +147,7 @@ onMounted(async () => {
</QBtn> </QBtn>
</QCardActions> </QCardActions>
</template> </template>
</CardDescriptor> </EntityDescriptor>
</template> </template>
<style scoped> <style scoped>
.q-item__label { .q-item__label {

View File

@ -0,0 +1,14 @@
<script setup>
import ClaimDescriptor from './ClaimDescriptor.vue';
import ClaimSummary from './ClaimSummary.vue';
</script>
<template>
<QPopupProxy style="max-width: 10px">
<ClaimDescriptor
v-if="$attrs.id"
v-bind="$attrs.id"
:summary="ClaimSummary"
:proxy-render="true"
/>
</QPopupProxy>
</template>

View File

@ -21,6 +21,7 @@ import CustomerDescriptorProxy from 'src/pages/Customer/Card/CustomerDescriptorP
import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue'; import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue';
import DepartmentDescriptorProxy from 'src/pages/Worker/Department/Card/DepartmentDescriptorProxy.vue'; import DepartmentDescriptorProxy from 'src/pages/Worker/Department/Card/DepartmentDescriptorProxy.vue';
import ClaimDescriptorMenu from './ClaimDescriptorMenu.vue'; import ClaimDescriptorMenu from './ClaimDescriptorMenu.vue';
import VnDropdown from 'src/components/common/VnDropdown.vue';
const route = useRoute(); const route = useRoute();
const router = useRouter(); const router = useRouter();
@ -36,7 +37,7 @@ const $props = defineProps({
}); });
const entityId = computed(() => $props.id || route.params.id); const entityId = computed(() => $props.id || route.params.id);
const ClaimStates = ref([]); const claimStates = ref([]);
const claimDmsRef = ref(); const claimDmsRef = ref();
const claimDms = ref([]); const claimDms = ref([]);
const multimediaDialog = ref(); const multimediaDialog = ref();
@ -173,7 +174,9 @@ function openDialog(dmsId) {
} }
async function changeState(value) { async function changeState(value) {
await axios.patch(`Claims/updateClaim/${entityId.value}`, { claimStateFk: value }); await axios.patch(`Claims/updateClaim/${entityId.value}`, {
claimStateFk: value,
});
router.go(route.fullPath); router.go(route.fullPath);
} }
@ -183,13 +186,18 @@ function claimUrl(section) {
</script> </script>
<template> <template>
<FetchData
url="ClaimStates"
:filter="{ fields: ['id', 'description'] }"
@on-fetch="(data) => (claimStates = data)"
auto-load
/>
<FetchData <FetchData
url="ClaimDms" url="ClaimDms"
:filter="claimDmsFilter" :filter="claimDmsFilter"
@on-fetch="(data) => setClaimDms(data)" @on-fetch="(data) => setClaimDms(data)"
ref="claimDmsRef" ref="claimDmsRef"
/> />
<FetchData url="ClaimStates" @on-fetch="(data) => (ClaimStates = data)" auto-load />
<CardSummary <CardSummary
ref="summary" ref="summary"
:url="`Claims/${entityId}/getSummary`" :url="`Claims/${entityId}/getSummary`"
@ -201,34 +209,11 @@ function claimUrl(section) {
{{ claim.id }} - {{ claim.client.name }} ({{ claim.client.id }}) {{ claim.id }} - {{ claim.client.name }} ({{ claim.client.id }})
</template> </template>
<template #header-right> <template #header-right>
<QBtnDropdown <VnDropdown
side :options="claimStates"
top option-label="description"
color="black" @change-state="changeState"
text-color="white" />
:label="t('globals.changeState')"
>
<QList>
<QVirtualScroll
class="max-container-height"
:items="ClaimStates"
separator
v-slot="{ item, index }"
>
<QItem
:key="index"
dense
clickable
v-close-popup
@click="changeState(item.id)"
>
<QItemSection>
<QItemLabel>{{ item.description }}</QItemLabel>
</QItemSection>
</QItem>
</QVirtualScroll>
</QList>
</QBtnDropdown>
</template> </template>
<template #menu="{ entity }"> <template #menu="{ entity }">
<ClaimDescriptorMenu :claim="entity.claim" /> <ClaimDescriptorMenu :claim="entity.claim" />

View File

@ -33,7 +33,7 @@ const props = defineProps({
:label="t('claim.customerId')" :label="t('claim.customerId')"
v-model="params.clientFk" v-model="params.clientFk"
lazy-rules lazy-rules
is-outlined filled
> >
<template #prepend> <QIcon name="badge" size="xs" /></template> <template #prepend> <QIcon name="badge" size="xs" /></template>
</VnInput> </VnInput>
@ -41,12 +41,11 @@ const props = defineProps({
:label="t('Client Name')" :label="t('Client Name')"
v-model="params.clientName" v-model="params.clientName"
lazy-rules lazy-rules
is-outlined filled
/> />
<VnSelect <VnSelect
outlined
dense dense
rounded filled
:label="t('globals.params.departmentFk')" :label="t('globals.params.departmentFk')"
v-model="params.departmentFk" v-model="params.departmentFk"
option-value="id" option-value="id"
@ -61,8 +60,7 @@ const props = defineProps({
:use-like="false" :use-like="false"
option-filter="firstName" option-filter="firstName"
dense dense
outlined filled
rounded
/> />
<VnSelect <VnSelect
:label="t('claim.state')" :label="t('claim.state')"
@ -70,14 +68,12 @@ const props = defineProps({
:options="states" :options="states"
option-label="description" option-label="description"
dense dense
outlined filled
rounded
/> />
<VnInputDate <VnInputDate
v-model="params.created" v-model="params.created"
:label="t('claim.created')" :label="t('claim.created')"
outlined filled
rounded
dense dense
/> />
<VnSelect <VnSelect
@ -86,8 +82,7 @@ const props = defineProps({
url="Items/withName" url="Items/withName"
:use-like="false" :use-like="false"
sort-by="id DESC" sort-by="id DESC"
outlined filled
rounded
dense dense
/> />
<VnSelect <VnSelect
@ -98,15 +93,13 @@ const props = defineProps({
:use-like="false" :use-like="false"
option-filter="firstName" option-filter="firstName"
dense dense
outlined filled
rounded
/> />
<VnSelect <VnSelect
:label="t('claim.zone')" :label="t('claim.zone')"
v-model="params.zoneFk" v-model="params.zoneFk"
url="Zones" url="Zones"
outlined filled
rounded
dense dense
/> />
<QCheckbox <QCheckbox

View File

@ -134,7 +134,7 @@ const columns = computed(() => [
const STATE_COLOR = { const STATE_COLOR = {
pending: 'bg-warning', pending: 'bg-warning',
managed: 'bg-info', loses: 'bg-negative',
resolved: 'bg-positive', resolved: 'bg-positive',
}; };
</script> </script>

View File

@ -20,6 +20,7 @@ import VnFilter from 'components/VnTable/VnFilter.vue';
import CustomerNewPayment from 'src/pages/Customer/components/CustomerNewPayment.vue'; import CustomerNewPayment from 'src/pages/Customer/components/CustomerNewPayment.vue';
import InvoiceOutDescriptorProxy from 'src/pages/InvoiceOut/Card/InvoiceOutDescriptorProxy.vue'; import InvoiceOutDescriptorProxy from 'src/pages/InvoiceOut/Card/InvoiceOutDescriptorProxy.vue';
import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue';
const { openConfirmationModal } = useVnConfirm(); const { openConfirmationModal } = useVnConfirm();
const { sendEmail, openReport } = usePrintService(); const { sendEmail, openReport } = usePrintService();
@ -89,15 +90,7 @@ const columns = computed(() => [
{ {
align: 'left', align: 'left',
label: t('Employee'), label: t('Employee'),
columnField: { name: 'workerFk',
component: 'userLink',
attrs: ({ row }) => {
return {
workerId: row.workerFk,
name: row.userName,
};
},
},
cardVisible: true, cardVisible: true,
}, },
{ {
@ -131,7 +124,6 @@ const columns = computed(() => [
align: 'left', align: 'left',
name: 'balance', name: 'balance',
label: t('Balance'), label: t('Balance'),
format: ({ balance }) => toCurrency(balance),
cardVisible: true, cardVisible: true,
}, },
{ {
@ -146,12 +138,14 @@ const columns = computed(() => [
actions: [ actions: [
{ {
title: t('globals.downloadPdf'), title: t('globals.downloadPdf'),
isPrimary: true,
icon: 'cloud_download', icon: 'cloud_download',
show: (row) => row.isInvoice, show: (row) => row.isInvoice,
action: (row) => showBalancePdf(row), action: (row) => showBalancePdf(row),
}, },
{ {
title: t('Send compensation'), title: t('Send compensation'),
isPrimary: true,
icon: 'outgoing_mail', icon: 'outgoing_mail',
show: (row) => !!row.isCompensation, show: (row) => !!row.isCompensation,
action: ({ id }) => action: ({ id }) =>
@ -256,6 +250,12 @@ const showBalancePdf = ({ id }) => {
<template #column-balance="{ rowIndex }"> <template #column-balance="{ rowIndex }">
{{ toCurrency(balances[rowIndex]?.balance) }} {{ toCurrency(balances[rowIndex]?.balance) }}
</template> </template>
<template #column-workerFk="{ row }">
<span class="link" @click.stop>
{{ row.userName }}
<WorkerDescriptorProxy :id="row.workerFk" />
</span>
</template>
<template #column-description="{ row }"> <template #column-description="{ row }">
<span class="link" v-if="row.isInvoice" @click.stop> <span class="link" v-if="row.isInvoice" @click.stop>
{{ t('bill', { ref: row.description }) }} {{ t('bill', { ref: row.description }) }}

View File

@ -7,7 +7,7 @@ import { toCurrency, toDate } from 'src/filters';
import useCardDescription from 'src/composables/useCardDescription'; import useCardDescription from 'src/composables/useCardDescription';
import CardDescriptor from 'components/ui/CardDescriptor.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 CustomerDescriptorMenu from './CustomerDescriptorMenu.vue'; import CustomerDescriptorMenu from './CustomerDescriptorMenu.vue';
import DepartmentDescriptorProxy from 'src/pages/Worker/Department/Card/DepartmentDescriptorProxy.vue'; import DepartmentDescriptorProxy from 'src/pages/Worker/Department/Card/DepartmentDescriptorProxy.vue';
@ -54,7 +54,7 @@ const debtWarning = computed(() => {
</script> </script>
<template> <template>
<CardDescriptor <EntityDescriptor
:url="`Clients/${entityId}/getCard`" :url="`Clients/${entityId}/getCard`"
:summary="$props.summary" :summary="$props.summary"
data-key="Customer" data-key="Customer"
@ -223,7 +223,7 @@ const debtWarning = computed(() => {
</QBtn> </QBtn>
</QCardActions> </QCardActions>
</template> </template>
</CardDescriptor> </EntityDescriptor>
</template> </template>
<i18n> <i18n>

View File

@ -41,7 +41,7 @@ const exprBuilder = (param, value) => {
<template #body="{ params, searchFn }"> <template #body="{ params, searchFn }">
<QItem class="q-my-sm"> <QItem class="q-my-sm">
<QItemSection> <QItemSection>
<VnInput :label="t('FI')" v-model="params.fi" is-outlined> <VnInput :label="t('FI')" v-model="params.fi" filled>
<template #prepend> <template #prepend>
<QIcon name="badge" size="xs" /> <QIcon name="badge" size="xs" />
</template> </template>
@ -50,7 +50,7 @@ const exprBuilder = (param, value) => {
</QItem> </QItem>
<QItem class="q-mb-sm"> <QItem class="q-mb-sm">
<QItemSection> <QItemSection>
<VnInput :label="t('Name')" v-model="params.name" is-outlined /> <VnInput :label="t('Name')" v-model="params.name" filled />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem class="q-mb-sm"> <QItem class="q-mb-sm">
@ -58,16 +58,15 @@ const exprBuilder = (param, value) => {
<VnInput <VnInput
:label="t('customer.summary.socialName')" :label="t('customer.summary.socialName')"
v-model="params.socialName" v-model="params.socialName"
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem class="q-mb-sm"> <QItem class="q-mb-sm">
<QItemSection> <QItemSection>
<VnSelect <VnSelect
outlined
dense dense
rounded filled
:label="t('globals.params.departmentFk')" :label="t('globals.params.departmentFk')"
v-model="params.departmentFk" v-model="params.departmentFk"
option-value="id" option-value="id"
@ -89,8 +88,7 @@ const exprBuilder = (param, value) => {
map-options map-options
hide-selected hide-selected
dense dense
outlined filled
rounded
auto-load auto-load
:input-debounce="0" :input-debounce="0"
/> />
@ -98,12 +96,12 @@ const exprBuilder = (param, value) => {
</QItem> </QItem>
<QItem class="q-mb-sm"> <QItem class="q-mb-sm">
<QItemSection> <QItemSection>
<VnInput :label="t('City')" v-model="params.city" is-outlined /> <VnInput :label="t('City')" v-model="params.city" filled />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem class="q-mb-sm"> <QItem class="q-mb-sm">
<QItemSection> <QItemSection>
<VnInput :label="t('Phone')" v-model="params.phone" is-outlined> <VnInput :label="t('Phone')" v-model="params.phone" filled>
<template #prepend> <template #prepend>
<QIcon name="phone" size="xs" /> <QIcon name="phone" size="xs" />
</template> </template>
@ -112,7 +110,7 @@ const exprBuilder = (param, value) => {
</QItem> </QItem>
<QItem class="q-mb-sm"> <QItem class="q-mb-sm">
<QItemSection> <QItemSection>
<VnInput :label="t('Email')" v-model="params.email" is-outlined> <VnInput :label="t('Email')" v-model="params.email" filled>
<template #prepend> <template #prepend>
<QIcon name="email" size="sm" /> <QIcon name="email" size="sm" />
</template> </template>
@ -132,19 +130,14 @@ const exprBuilder = (param, value) => {
map-options map-options
hide-selected hide-selected
dense dense
outlined filled
rounded
auto-load auto-load
sortBy="name ASC" sortBy="name ASC"
/></QItemSection> /></QItemSection>
</QItem> </QItem>
<QItem class="q-mb-sm"> <QItem class="q-mb-sm">
<QItemSection> <QItemSection>
<VnInput <VnInput :label="t('Postcode')" v-model="params.postcode" filled />
:label="t('Postcode')"
v-model="params.postcode"
is-outlined
/>
</QItemSection> </QItemSection>
</QItem> </QItem>
</template> </template>

View File

@ -45,8 +45,7 @@ const departments = ref();
dense dense
option-label="name" option-label="name"
option-value="id" option-value="id"
outlined filled
rounded
emit-value emit-value
hide-selected hide-selected
map-options map-options
@ -67,8 +66,7 @@ const departments = ref();
map-options map-options
option-label="name" option-label="name"
option-value="id" option-value="id"
outlined filled
rounded
use-input use-input
v-model="params.departmentFk" v-model="params.departmentFk"
@update:model-value="searchFn()" @update:model-value="searchFn()"
@ -91,8 +89,7 @@ const departments = ref();
map-options map-options
option-label="name" option-label="name"
option-value="id" option-value="id"
outlined filled
rounded
use-input use-input
v-model="params.countryFk" v-model="params.countryFk"
@update:model-value="searchFn()" @update:model-value="searchFn()"
@ -108,7 +105,7 @@ const departments = ref();
<VnInput <VnInput
:label="t('P. Method')" :label="t('P. Method')"
clearable clearable
is-outlined filled
v-model="params.paymentMethod" v-model="params.paymentMethod"
/> />
</QItemSection> </QItemSection>
@ -119,7 +116,7 @@ const departments = ref();
<VnInput <VnInput
:label="t('Balance D.')" :label="t('Balance D.')"
clearable clearable
is-outlined filled
v-model="params.balance" v-model="params.balance"
/> />
</QItemSection> </QItemSection>
@ -137,8 +134,7 @@ const departments = ref();
map-options map-options
option-label="name" option-label="name"
option-value="id" option-value="id"
outlined filled
rounded
use-input use-input
v-model="params.workerFk" v-model="params.workerFk"
@update:model-value="searchFn()" @update:model-value="searchFn()"
@ -154,7 +150,7 @@ const departments = ref();
<VnInputDate <VnInputDate
:label="t('L. O. Date')" :label="t('L. O. Date')"
clearable clearable
is-outlined filled
v-model="params.date" v-model="params.date"
/> />
</QItemSection> </QItemSection>
@ -165,7 +161,7 @@ const departments = ref();
<VnInput <VnInput
:label="t('Credit I.')" :label="t('Credit I.')"
clearable clearable
is-outlined filled
v-model="params.credit" v-model="params.credit"
/> />
</QItemSection> </QItemSection>
@ -175,7 +171,7 @@ const departments = ref();
<QItemSection> <QItemSection>
<VnInputDate <VnInputDate
:label="t('From')" :label="t('From')"
is-outlined filled
v-model="params.defaulterSinced" v-model="params.defaulterSinced"
/> />
</QItemSection> </QItemSection>

View File

@ -25,7 +25,7 @@ const props = defineProps({
<template #body="{ params }"> <template #body="{ params }">
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnInput :label="t('Order ID')" v-model="params.orderFk" is-outlined> <VnInput :label="t('Order ID')" v-model="params.orderFk" filled>
<template #prepend> <template #prepend>
<QIcon name="vn:basket" size="xs" /> <QIcon name="vn:basket" size="xs" />
</template> </template>
@ -34,11 +34,7 @@ const props = defineProps({
</QItem> </QItem>
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnInput <VnInput :label="t('Customer ID')" v-model="params.clientFk" filled>
:label="t('Customer ID')"
v-model="params.clientFk"
is-outlined
>
<template #prepend> <template #prepend>
<QIcon name="vn:client" size="xs" /> <QIcon name="vn:client" size="xs" />
</template> </template>
@ -47,19 +43,15 @@ const props = defineProps({
</QItem> </QItem>
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnInputNumber <VnInputNumber :label="t('Amount')" v-model="params.amount" filled />
:label="t('Amount')"
v-model="params.amount"
is-outlined
/>
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnInputDate v-model="params.from" :label="t('From')" is-outlined /> <VnInputDate v-model="params.from" :label="t('From')" filled />
</QItemSection> </QItemSection>
<QItemSection> <QItemSection>
<VnInputDate v-model="params.to" :label="t('To')" is-outlined /> <VnInputDate v-model="params.to" :label="t('To')" filled />
</QItemSection> </QItemSection>
</QItem> </QItem>
</template> </template>

View File

@ -3,18 +3,20 @@ import { onBeforeMount, reactive, ref } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { useRoute } from 'vue-router'; import { useRoute } from 'vue-router';
import axios from 'axios'; import axios from 'axios';
import { getClientRisk } from '../composables/getClientRisk';
import { useDialogPluginComponent } from 'quasar'; import { useDialogPluginComponent } from 'quasar';
import FormModelPopup from 'components/FormModelPopup.vue';
import { getClientRisk } from '../composables/getClientRisk';
import { usePrintService } from 'composables/usePrintService'; import { usePrintService } from 'composables/usePrintService';
import useNotify from 'src/composables/useNotify.js'; import useNotify from 'src/composables/useNotify.js';
import FormModelPopup from 'components/FormModelPopup.vue';
import FetchData from 'components/FetchData.vue'; import FetchData from 'components/FetchData.vue';
import FormModel from 'components/FormModel.vue';
import VnRow from 'components/ui/VnRow.vue'; import VnRow from 'components/ui/VnRow.vue';
import VnInputDate from 'components/common/VnInputDate.vue'; import VnInputDate from 'components/common/VnInputDate.vue';
import VnInputNumber from 'components/common/VnInputNumber.vue'; import VnInputNumber from 'components/common/VnInputNumber.vue';
import VnSelect from 'src/components/common/VnSelect.vue'; import VnSelect from 'src/components/common/VnSelect.vue';
import VnInput from 'src/components/common/VnInput.vue'; import VnInput from 'src/components/common/VnInput.vue';
import VnAccountNumber from 'src/components/common/VnAccountNumber.vue';
const { t } = useI18n(); const { t } = useI18n();
const route = useRoute(); const route = useRoute();
@ -48,7 +50,7 @@ const maxAmount = ref();
const accountingType = ref({}); const accountingType = ref({});
const isCash = ref(false); const isCash = ref(false);
const formModelRef = ref(false); const formModelRef = ref(false);
const amountToReturn = ref();
const filterBanks = { const filterBanks = {
fields: ['id', 'bank', 'accountingTypeFk'], fields: ['id', 'bank', 'accountingTypeFk'],
include: { relation: 'accountingType' }, include: { relation: 'accountingType' },
@ -90,7 +92,7 @@ function setPaymentType(data, accounting) {
let descriptions = []; let descriptions = [];
if (accountingType.value.receiptDescription) if (accountingType.value.receiptDescription)
descriptions.push(accountingType.value.receiptDescription); descriptions.push(accountingType.value.receiptDescription);
if (data.description) descriptions.push(data.description); if (data.description > 0) descriptions.push(data.description);
data.description = descriptions.join(', '); data.description = descriptions.join(', ');
} }
@ -100,7 +102,7 @@ const calculateFromAmount = (event) => {
}; };
const calculateFromDeliveredAmount = (event) => { const calculateFromDeliveredAmount = (event) => {
initialData.amountToReturn = parseFloat(event) - initialData.amountPaid; amountToReturn.value = event - initialData.amountPaid;
}; };
function onBeforeSave(data) { function onBeforeSave(data) {
@ -121,17 +123,16 @@ async function onDataSaved(formData, { id }) {
recipient: formData.email, recipient: formData.email,
}); });
if (viewReceipt.value) openReport(`Receipts/${id}/receipt-pdf`); if (viewReceipt.value) openReport(`Receipts/${id}/receipt-pdf`, {}, '_blank');
} finally { } finally {
if ($props.promise) $props.promise(); if ($props.promise) $props.promise();
if (closeButton.value) closeButton.value.click(); if (closeButton.value) closeButton.value.click();
} }
} }
async function accountShortToStandard({ target: { value } }) { async function getSupplierClientReferences(value) {
if (!value) return (initialData.description = ''); if (!value) return (initialData.description = '');
initialData.compensationAccount = value.replace('.', '0'.repeat(11 - value.length)); const params = { bankAccount: value };
const params = { bankAccount: initialData.compensationAccount };
const { data } = await axios(`Clients/getClientOrSupplierReference`, { params }); const { data } = await axios(`Clients/getClientOrSupplierReference`, { params });
if (!data.clientId) { if (!data.clientId) {
initialData.description = t('Supplier Compensation Reference', { initialData.description = t('Supplier Compensation Reference', {
@ -241,17 +242,16 @@ async function getAmountPaid() {
@update:model-value="getAmountPaid()" @update:model-value="getAmountPaid()"
/> />
</VnRow> </VnRow>
<div v-if="accountingType.code == 'compensation'">
<div v-if="data.bankFk?.accountingType?.code == 'compensation'">
<div class="text-h6"> <div class="text-h6">
{{ t('Compensation') }} {{ t('Compensation') }}
</div> </div>
<VnRow> <VnRow>
<VnInputNumber <VnAccountNumber
:label="t('Compensation account')" :label="t('Compensation account')"
clearable clearable
v-model="data.compensationAccount" v-model="data.compensationAccount"
@blur="accountShortToStandard" @blur="getSupplierClientReferences(data.compensationAccount)"
/> />
</VnRow> </VnRow>
</div> </div>
@ -261,8 +261,7 @@ async function getAmountPaid() {
clearable clearable
v-model="data.description" v-model="data.description"
/> />
<div v-if="accountingType.code == 'cash'">
<div v-if="data.bankFk?.accountingType?.code == 'cash'">
<div class="text-h6">{{ t('Cash') }}</div> <div class="text-h6">{{ t('Cash') }}</div>
<VnRow> <VnRow>
<VnInputNumber <VnInputNumber
@ -274,7 +273,7 @@ async function getAmountPaid() {
<VnInputNumber <VnInputNumber
:label="t('Amount to return')" :label="t('Amount to return')"
disable disable
v-model="data.amountToReturn" v-model="amountToReturn"
/> />
</VnRow> </VnRow>
<VnRow> <VnRow>

View File

@ -6,7 +6,7 @@ import { toDate } from 'src/filters';
import { getUrl } from 'src/composables/getUrl'; import { getUrl } from 'src/composables/getUrl';
import { useQuasar } from 'quasar'; import { useQuasar } from 'quasar';
import { usePrintService } from 'composables/usePrintService'; import { usePrintService } from 'composables/usePrintService';
import CardDescriptor from 'components/ui/CardDescriptor.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 TravelDescriptorProxy from 'src/pages/Travel/Card/TravelDescriptorProxy.vue'; import TravelDescriptorProxy from 'src/pages/Travel/Card/TravelDescriptorProxy.vue';
import axios from 'axios'; import axios from 'axios';
@ -145,7 +145,7 @@ async function deleteEntry() {
</script> </script>
<template> <template>
<CardDescriptor <EntityDescriptor
:url="`Entries/${entityId}`" :url="`Entries/${entityId}`"
:filter="entryFilter" :filter="entryFilter"
title="supplier.nickname" title="supplier.nickname"
@ -264,7 +264,7 @@ async function deleteEntry() {
</QBtn> </QBtn>
</QCardActions> </QCardActions>
</template> </template>
</CardDescriptor> </EntityDescriptor>
</template> </template>
<i18n> <i18n>
es: es:

View File

@ -101,14 +101,14 @@ const entryFilterPanel = ref();
:label="t('params.landed')" :label="t('params.landed')"
v-model="params.landed" v-model="params.landed"
@update:model-value="searchFn()" @update:model-value="searchFn()"
is-outlined filled
data-cy="landed" data-cy="landed"
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnInput v-model="params.id" label="Id" is-outlined /> <VnInput v-model="params.id" label="Id" filled />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
@ -118,8 +118,7 @@ const entryFilterPanel = ref();
@update:model-value="searchFn()" @update:model-value="searchFn()"
hide-selected hide-selected
dense dense
outlined filled
rounded
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -128,7 +127,7 @@ const entryFilterPanel = ref();
<VnInput <VnInput
v-model="params.reference" v-model="params.reference"
:label="t('entry.list.tableVisibleColumns.reference')" :label="t('entry.list.tableVisibleColumns.reference')"
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -143,8 +142,7 @@ const entryFilterPanel = ref();
:fields="['id', 'name']" :fields="['id', 'name']"
hide-selected hide-selected
dense dense
outlined filled
rounded
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -153,7 +151,7 @@ const entryFilterPanel = ref();
<VnInput <VnInput
v-model="params.evaNotes" v-model="params.evaNotes"
:label="t('params.evaNotes')" :label="t('params.evaNotes')"
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -168,8 +166,7 @@ const entryFilterPanel = ref();
sort-by="name ASC" sort-by="name ASC"
hide-selected hide-selected
dense dense
outlined filled
rounded
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -184,8 +181,7 @@ const entryFilterPanel = ref();
sort-by="name ASC" sort-by="name ASC"
hide-selected hide-selected
dense dense
outlined filled
rounded
> >
<template #option="scope"> <template #option="scope">
<QItem v-bind="scope.itemProps"> <QItem v-bind="scope.itemProps">
@ -207,7 +203,7 @@ const entryFilterPanel = ref();
<VnInput <VnInput
v-model="params.invoiceNumber" v-model="params.invoiceNumber"
:label="t('params.invoiceNumber')" :label="t('params.invoiceNumber')"
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -224,8 +220,16 @@ const entryFilterPanel = ref();
option-label="description" option-label="description"
hide-selected hide-selected
dense dense
outlined filled
rounded />
</QItemSection>
</QItem>
<QItem>
<QItemSection>
<VnInput
v-model="params.evaNotes"
:label="t('params.evaNotes')"
filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>

View File

@ -121,42 +121,49 @@ function deleteFile(dmsFk) {
hide-selected hide-selected
:is-clearable="false" :is-clearable="false"
:required="true" :required="true"
data-cy="invoiceInBasicDataSupplier"
/> />
<VnInput <VnInput
clearable clearable
clear-icon="close" clear-icon="close"
:label="t('invoiceIn.supplierRef')" :label="t('invoiceIn.supplierRef')"
v-model="data.supplierRef" v-model="data.supplierRef"
data-cy="invoiceInBasicDataSupplierRef"
/> />
</VnRow> </VnRow>
<VnRow> <VnRow>
<VnInputDate :label="t('Expedition date')" v-model="data.issued" /> <VnInputDate
:label="t('Expedition date')"
v-model="data.issued"
data-cy="invoiceInBasicDataIssued"
/>
<VnInputDate <VnInputDate
:label="t('Operation date')" :label="t('Operation date')"
v-model="data.operated" v-model="data.operated"
autofocus autofocus
data-cy="invoiceInBasicDataOperated"
/> />
</VnRow> </VnRow>
<VnRow> <VnRow>
<VnInputDate :label="t('Entry date')" v-model="data.bookEntried" /> <VnInputDate
<VnInputDate :label="t('Accounted date')" v-model="data.booked" /> :label="t('Entry date')"
v-model="data.bookEntried"
data-cy="invoiceInBasicDatabookEntried"
/>
<VnInputDate
:label="t('Accounted date')"
v-model="data.booked"
data-cy="invoiceInBasicDataBooked"
/>
</VnRow> </VnRow>
<VnRow> <VnRow>
<VnSelect <VnSelect
:label="t('Undeductible VAT')" :label="t('invoiceIn.summary.sage')"
v-model="data.deductibleExpenseFk" v-model="data.withholdingSageFk"
:options="expenses" :options="sageWithholdings"
option-value="id" option-value="id"
option-label="id" option-label="withholding"
:filter-options="['id', 'name']" />
data-cy="UnDeductibleVatSelect"
>
<template #option="scope">
<QItem v-bind="scope.itemProps">
{{ `${scope.opt.id}: ${scope.opt.name}` }}
</QItem>
</template>
</VnSelect>
<div class="row no-wrap"> <div class="row no-wrap">
<VnInput <VnInput
@ -182,6 +189,7 @@ function deleteFile(dmsFk) {
padding="xs" padding="xs"
round round
@click="downloadFile(data.dmsFk)" @click="downloadFile(data.dmsFk)"
data-cy="invoiceInBasicDataDmsDownload"
/> />
<QBtn <QBtn
:class="{ :class="{
@ -197,6 +205,7 @@ function deleteFile(dmsFk) {
documentDialogRef.dms = data.dms; documentDialogRef.dms = data.dms;
} }
" "
data-cy="invoiceInBasicDataDmsEdit"
> >
<QTooltip>{{ t('Edit document') }}</QTooltip> <QTooltip>{{ t('Edit document') }}</QTooltip>
</QBtn> </QBtn>
@ -210,6 +219,7 @@ function deleteFile(dmsFk) {
padding="xs" padding="xs"
round round
@click="deleteFile(data.dmsFk)" @click="deleteFile(data.dmsFk)"
data-cy="invoiceInBasicDataDmsDelete"
/> />
</div> </div>
<QBtn <QBtn
@ -224,7 +234,7 @@ function deleteFile(dmsFk) {
delete documentDialogRef.dms; delete documentDialogRef.dms;
} }
" "
data-cy="dms-create" data-cy="invoiceInBasicDataDmsAdd"
> >
<QTooltip>{{ t('Create document') }}</QTooltip> <QTooltip>{{ t('Create document') }}</QTooltip>
</QBtn> </QBtn>
@ -237,9 +247,9 @@ function deleteFile(dmsFk) {
:label="t('Currency')" :label="t('Currency')"
v-model="data.currencyFk" v-model="data.currencyFk"
:options="currencies" :options="currencies"
option-value="id"
option-label="code" option-label="code"
sort-by="id" sort-by="id"
data-cy="invoiceInBasicDataCurrencyFk"
/> />
<VnSelect <VnSelect
@ -249,17 +259,8 @@ function deleteFile(dmsFk) {
:label="t('Company')" :label="t('Company')"
v-model="data.companyFk" v-model="data.companyFk"
:options="companies" :options="companies"
option-value="id"
option-label="code" option-label="code"
/> data-cy="invoiceInBasicDataCompanyFk"
</VnRow>
<VnRow>
<VnSelect
:label="t('invoiceIn.summary.sage')"
v-model="data.withholdingSageFk"
:options="sageWithholdings"
option-value="id"
option-label="withholding"
/> />
</VnRow> </VnRow>
</template> </template>
@ -313,7 +314,6 @@ function deleteFile(dmsFk) {
supplierFk: Proveedor supplierFk: Proveedor
Expedition date: Fecha expedición Expedition date: Fecha expedición
Operation date: Fecha operación Operation date: Fecha operación
Undeductible VAT: Iva no deducible
Document: Documento Document: Documento
Download file: Descargar archivo Download file: Descargar archivo
Entry date: Fecha asiento Entry date: Fecha asiento

View File

@ -1,22 +1,16 @@
<script setup> <script setup>
import { ref, computed, capitalize } from 'vue'; import { ref, computed, capitalize } from 'vue';
import { useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { useArrayData } from 'src/composables/useArrayData'; import { useArrayData } from 'src/composables/useArrayData';
import CrudModel from 'src/components/CrudModel.vue'; import CrudModel from 'src/components/CrudModel.vue';
import FetchData from 'src/components/FetchData.vue'; import FetchData from 'src/components/FetchData.vue';
import VnSelect from 'src/components/common/VnSelect.vue'; import VnSelect from 'src/components/common/VnSelect.vue';
const route = useRoute();
const { t } = useI18n(); const { t } = useI18n();
const arrayData = useArrayData(); const arrayData = useArrayData();
const invoiceIn = computed(() => arrayData.store.data); const invoiceIn = computed(() => arrayData.store.data);
const invoiceInCorrectionRef = ref(); const invoiceInCorrectionRef = ref();
const filter = {
include: { relation: 'invoiceIn' },
where: { correctingFk: route.params.id },
};
const columns = computed(() => [ const columns = computed(() => [
{ {
name: 'origin', name: 'origin',
@ -92,7 +86,8 @@ const requiredFieldRule = (val) => val || t('globals.requiredField');
v-if="invoiceIn" v-if="invoiceIn"
data-key="InvoiceInCorrection" data-key="InvoiceInCorrection"
url="InvoiceInCorrections" url="InvoiceInCorrections"
:filter="filter" :user-filter="{ include: { relation: 'invoiceIn' } }"
:filter="{ where: { correctingFk: $route.params.id } }"
auto-load auto-load
primary-key="correctingFk" primary-key="correctingFk"
:default-remove="false" :default-remove="false"
@ -115,6 +110,7 @@ const requiredFieldRule = (val) => val || t('globals.requiredField');
:option-label="col.optionLabel" :option-label="col.optionLabel"
:disable="row.invoiceIn.isBooked" :disable="row.invoiceIn.isBooked"
:filter-options="['description']" :filter-options="['description']"
data-cy="invoiceInCorrective_type"
> >
<template #option="{ opt, itemProps }"> <template #option="{ opt, itemProps }">
<QItem v-bind="itemProps"> <QItem v-bind="itemProps">
@ -137,6 +133,7 @@ const requiredFieldRule = (val) => val || t('globals.requiredField');
:rules="[requiredFieldRule]" :rules="[requiredFieldRule]"
:filter-options="['code', 'description']" :filter-options="['code', 'description']"
:disable="row.invoiceIn.isBooked" :disable="row.invoiceIn.isBooked"
data-cy="invoiceInCorrective_class"
> >
<template #option="{ opt, itemProps }"> <template #option="{ opt, itemProps }">
<QItem v-bind="itemProps"> <QItem v-bind="itemProps">
@ -161,6 +158,7 @@ const requiredFieldRule = (val) => val || t('globals.requiredField');
:option-label="col.optionLabel" :option-label="col.optionLabel"
:rules="[requiredFieldRule]" :rules="[requiredFieldRule]"
:disable="row.invoiceIn.isBooked" :disable="row.invoiceIn.isBooked"
data-cy="invoiceInCorrective_reason"
/> />
</QTd> </QTd>
</template> </template>

View File

@ -5,7 +5,7 @@ import { useI18n } from 'vue-i18n';
import axios from 'axios'; import axios from 'axios';
import { toCurrency, toDate } from 'src/filters'; import { toCurrency, toDate } from 'src/filters';
import VnLv from 'src/components/ui/VnLv.vue'; import VnLv from 'src/components/ui/VnLv.vue';
import CardDescriptor from 'components/ui/CardDescriptor.vue'; import EntityDescriptor from 'components/ui/EntityDescriptor.vue';
import SupplierDescriptorProxy from 'src/pages/Supplier/Card/SupplierDescriptorProxy.vue'; import SupplierDescriptorProxy from 'src/pages/Supplier/Card/SupplierDescriptorProxy.vue';
import filter from './InvoiceInFilter.js'; import filter from './InvoiceInFilter.js';
import InvoiceInDescriptorMenu from './InvoiceInDescriptorMenu.vue'; import InvoiceInDescriptorMenu from './InvoiceInDescriptorMenu.vue';
@ -17,10 +17,6 @@ const { t } = useI18n();
const cardDescriptorRef = ref(); const cardDescriptorRef = ref();
const entityId = computed(() => $props.id || +currentRoute.value.params.id); const entityId = computed(() => $props.id || +currentRoute.value.params.id);
const totalAmount = ref(); const totalAmount = ref();
const config = ref();
const cplusRectificationTypes = ref([]);
const siiTypeInvoiceIns = ref([]);
const invoiceCorrectionTypes = ref([]);
const invoiceInCorrection = reactive({ correcting: [], corrected: null }); const invoiceInCorrection = reactive({ correcting: [], corrected: null });
const routes = reactive({ const routes = reactive({
getSupplier: (id) => { getSupplier: (id) => {
@ -30,7 +26,7 @@ const routes = reactive({
return { return {
name: 'InvoiceInList', name: 'InvoiceInList',
query: { query: {
params: JSON.stringify({ supplierFk: id }), table: JSON.stringify({ supplierFk: id }),
}, },
}; };
}, },
@ -39,7 +35,7 @@ const routes = reactive({
return { return {
name: 'InvoiceInList', name: 'InvoiceInList',
query: { query: {
params: JSON.stringify({ correctedFk: entityId.value }), table: JSON.stringify({ correctedFk: entityId.value }),
}, },
}; };
} }
@ -88,7 +84,7 @@ async function setInvoiceCorrection(id) {
} }
</script> </script>
<template> <template>
<CardDescriptor <EntityDescriptor
ref="cardDescriptorRef" ref="cardDescriptorRef"
data-key="InvoiceIn" data-key="InvoiceIn"
:url="`InvoiceIns/${entityId}`" :url="`InvoiceIns/${entityId}`"
@ -108,7 +104,7 @@ async function setInvoiceCorrection(id) {
<VnLv :label="t('invoiceIn.list.amount')" :value="toCurrency(totalAmount)" /> <VnLv :label="t('invoiceIn.list.amount')" :value="toCurrency(totalAmount)" />
<VnLv :label="t('invoiceIn.list.supplier')"> <VnLv :label="t('invoiceIn.list.supplier')">
<template #value> <template #value>
<span class="link"> <span class="link" data-cy="invoiceInDescriptor_supplier">
{{ entity?.supplier?.nickname }} {{ entity?.supplier?.nickname }}
<SupplierDescriptorProxy :id="entity?.supplierFk" /> <SupplierDescriptorProxy :id="entity?.supplierFk" />
</span> </span>
@ -163,7 +159,7 @@ async function setInvoiceCorrection(id) {
</QBtn> </QBtn>
</QCardActions> </QCardActions>
</template> </template>
</CardDescriptor> </EntityDescriptor>
</template> </template>
<style lang="scss" scoped> <style lang="scss" scoped>
.q-dialog { .q-dialog {

View File

@ -1,5 +1,5 @@
<script setup> <script setup>
import { ref, computed, toRefs, reactive } from 'vue'; import { ref, computed, toRefs, reactive, onBeforeMount } from 'vue';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { useQuasar } from 'quasar'; import { useQuasar } from 'quasar';
@ -111,10 +111,9 @@ async function cloneInvoice() {
} }
const isAgricultural = () => { const isAgricultural = () => {
if (!config.value) return false;
return ( return (
invoiceIn.value?.supplier?.sageFarmerWithholdingFk === invoiceIn.value?.supplier?.sageWithholdingFk ==
config?.value[0]?.sageWithholdingFk config.value?.sageFarmerWithholdingFk
); );
}; };
function showPdfInvoice() { function showPdfInvoice() {
@ -153,162 +152,183 @@ const createInvoiceInCorrection = async () => {
); );
push({ path: `/invoice-in/${correctingId}/summary` }); push({ path: `/invoice-in/${correctingId}/summary` });
}; };
onBeforeMount(async () => {
config.value = (
await axios.get('invoiceinConfigs/findOne', {
params: { fields: ['sageFarmerWithholdingFk'] },
})
).data;
});
</script> </script>
<template> <template>
<FetchData <template v-if="config">
url="InvoiceCorrectionTypes" <FetchData
@on-fetch="(data) => (invoiceCorrectionTypes = data)" url="InvoiceCorrectionTypes"
auto-load @on-fetch="(data) => (invoiceCorrectionTypes = data)"
/> auto-load
<FetchData />
url="CplusRectificationTypes" <FetchData
@on-fetch="(data) => (cplusRectificationTypes = data)" url="CplusRectificationTypes"
auto-load @on-fetch="(data) => (cplusRectificationTypes = data)"
/> auto-load
<FetchData />
url="SiiTypeInvoiceIns" <FetchData
:where="{ code: { like: 'R%' } }" url="SiiTypeInvoiceIns"
@on-fetch="(data) => (siiTypeInvoiceIns = data)" :where="{ code: { like: 'R%' } }"
auto-load @on-fetch="(data) => (siiTypeInvoiceIns = data)"
/> auto-load
<FetchData />
url="InvoiceInConfigs" <InvoiceInToBook>
:where="{ fields: ['sageWithholdingFk'] }" <template #content="{ book }">
auto-load <QItem
@on-fetch="(data) => (config = data)" v-if="!invoice?.isBooked && canEditProp('toBook')"
/> v-ripple
<InvoiceInToBook> clickable
<template #content="{ book }"> @click="book(entityId)"
<QItem >
v-if="!invoice?.isBooked && canEditProp('toBook')" <QItemSection>{{ t('invoiceIn.descriptorMenu.book') }}</QItemSection>
v-ripple </QItem>
clickable </template>
@click="book(entityId)" </InvoiceInToBook>
<QItem
v-if="invoice?.isBooked && canEditProp('toUnbook')"
v-ripple
clickable
@click="triggerMenu('unbook')"
>
<QItemSection>
{{ t('invoiceIn.descriptorMenu.unbook') }}
</QItemSection>
</QItem>
<QItem
v-if="canEditProp('deleteById')"
v-ripple
clickable
@click="triggerMenu('delete')"
>
<QItemSection>{{ t('invoiceIn.descriptorMenu.deleteInvoice') }}</QItemSection>
</QItem>
<QItem
v-if="canEditProp('clone')"
v-ripple
clickable
@click="triggerMenu('clone')"
>
<QItemSection>{{ t('invoiceIn.descriptorMenu.cloneInvoice') }}</QItemSection>
</QItem>
<QItem v-if="isAgricultural()" v-ripple clickable @click="triggerMenu('showPdf')">
<QItemSection>{{
t('invoiceIn.descriptorMenu.showAgriculturalPdf')
}}</QItemSection>
</QItem>
<QItem v-if="isAgricultural()" v-ripple clickable @click="triggerMenu('sendPdf')">
<QItemSection
>{{ t('invoiceIn.descriptorMenu.sendAgriculturalPdf') }}...</QItemSection
> >
<QItemSection>{{ t('invoiceIn.descriptorMenu.book') }}</QItemSection> </QItem>
</QItem> <QItem
</template> v-if="!invoiceInCorrection.corrected"
</InvoiceInToBook> v-ripple
<QItem clickable
v-if="invoice?.isBooked && canEditProp('toUnbook')" @click="triggerMenu('correct')"
v-ripple data-cy="createCorrectiveItem"
clickable
@click="triggerMenu('unbook')"
>
<QItemSection>
{{ t('invoiceIn.descriptorMenu.unbook') }}
</QItemSection>
</QItem>
<QItem
v-if="canEditProp('deleteById')"
v-ripple
clickable
@click="triggerMenu('delete')"
>
<QItemSection>{{ t('invoiceIn.descriptorMenu.deleteInvoice') }}</QItemSection>
</QItem>
<QItem v-if="canEditProp('clone')" v-ripple clickable @click="triggerMenu('clone')">
<QItemSection>{{ t('invoiceIn.descriptorMenu.cloneInvoice') }}</QItemSection>
</QItem>
<QItem v-if="isAgricultural()" v-ripple clickable @click="triggerMenu('showPdf')">
<QItemSection>{{
t('invoiceIn.descriptorMenu.showAgriculturalPdf')
}}</QItemSection>
</QItem>
<QItem v-if="isAgricultural()" v-ripple clickable @click="triggerMenu('sendPdf')">
<QItemSection
>{{ t('invoiceIn.descriptorMenu.sendAgriculturalPdf') }}...</QItemSection
> >
</QItem> <QItemSection
<QItem >{{ t('invoiceIn.descriptorMenu.createCorrective') }}...</QItemSection
v-if="!invoiceInCorrection.corrected" >
v-ripple </QItem>
clickable <QItem
@click="triggerMenu('correct')" v-if="invoice.dmsFk"
data-cy="createCorrectiveItem" v-ripple
> clickable
<QItemSection @click="downloadFile(invoice.dmsFk)"
>{{ t('invoiceIn.descriptorMenu.createCorrective') }}...</QItemSection
> >
</QItem> <QItemSection>{{ t('components.smartCard.downloadFile') }}</QItemSection>
<QItem v-if="invoice.dmsFk" v-ripple clickable @click="downloadFile(invoice.dmsFk)"> </QItem>
<QItemSection>{{ t('components.smartCard.downloadFile') }}</QItemSection> <QDialog ref="correctionDialogRef">
</QItem> <QCard data-cy="correctiveInvoiceDialog">
<QDialog ref="correctionDialogRef"> <QCardSection>
<QCard> <QItem class="q-px-none">
<QCardSection> <span class="text-primary text-h6 full-width">
<QItem class="q-px-none"> {{ t('Create rectificative invoice') }}
<span class="text-primary text-h6 full-width"> </span>
{{ t('Create rectificative invoice') }} <QBtn icon="close" flat round dense v-close-popup />
</span> </QItem>
<QBtn icon="close" flat round dense v-close-popup /> </QCardSection>
</QItem> <QCardSection>
</QCardSection> <QItem>
<QCardSection> <QItemSection>
<QItem> <QInput
<QItemSection> :label="t('Original invoice')"
<QInput v-model="entityId"
:label="t('Original invoice')" readonly
v-model="entityId" />
readonly <VnSelect
/> :label="`${useCapitalize(t('globals.class'))}`"
<VnSelect v-model="correctionFormData.invoiceClass"
:label="`${useCapitalize(t('globals.class'))}`" :options="siiTypeInvoiceIns"
v-model="correctionFormData.invoiceClass" option-value="id"
:options="siiTypeInvoiceIns" option-label="code"
option-value="id" :required="true"
option-label="code" data-cy="invoiceInDescriptorMenu_class"
:required="true" />
/> </QItemSection>
</QItemSection> <QItemSection>
<QItemSection> <VnSelect
<VnSelect :label="`${useCapitalize(t('globals.type'))}`"
:label="`${useCapitalize(t('globals.type'))}`" v-model="correctionFormData.invoiceType"
v-model="correctionFormData.invoiceType" :options="cplusRectificationTypes"
:options="cplusRectificationTypes" option-value="id"
option-value="id" option-label="description"
option-label="description" :required="true"
:required="true" data-cy="invoiceInDescriptorMenu_type"
> >
<template #option="{ itemProps, opt }"> <template #option="{ itemProps, opt }">
<QItem v-bind="itemProps"> <QItem v-bind="itemProps">
<QItemSection> <QItemSection>
<QItemLabel <QItemLabel
>{{ opt.id }} - >{{ opt.id }} -
{{ opt.description }}</QItemLabel {{ opt.description }}</QItemLabel
> >
</QItemSection> </QItemSection>
</QItem> </QItem>
<div></div> <div></div>
</template> </template>
</VnSelect> </VnSelect>
<VnSelect <VnSelect
:label="`${useCapitalize(t('globals.reason'))}`" :label="`${useCapitalize(t('globals.reason'))}`"
v-model="correctionFormData.invoiceReason" v-model="correctionFormData.invoiceReason"
:options="invoiceCorrectionTypes" :options="invoiceCorrectionTypes"
option-value="id" option-value="id"
option-label="description" option-label="description"
:required="true" :required="true"
/> data-cy="invoiceInDescriptorMenu_reason"
</QItemSection> />
</QItem> </QItemSection>
</QCardSection> </QItem>
<QCardActions class="justify-end q-mr-sm"> </QCardSection>
<QBtn flat :label="t('globals.close')" color="primary" v-close-popup /> <QCardActions class="justify-end q-mr-sm">
<QBtn <QBtn
:label="t('globals.save')" flat
color="primary" :label="t('globals.close')"
v-close-popup color="primary"
@click="createInvoiceInCorrection" v-close-popup
:disable="isNotFilled" />
/> <QBtn
</QCardActions> :label="t('globals.save')"
</QCard> color="primary"
</QDialog> v-close-popup
@click="createInvoiceInCorrection"
:disable="isNotFilled"
data-cy="saveCorrectiveInvoice"
/>
</QCardActions>
</QCard>
</QDialog>
</template>
</template> </template>
<i18n> <i18n>
en: en:
isNotLinked: The entry {bookEntry} has been deleted with {accountingEntries} entries isNotLinked: The entry {bookEntry} has been deleted with {accountingEntries} entries

View File

@ -25,7 +25,8 @@ const invoiceInFormRef = ref();
const invoiceId = +route.params.id; const invoiceId = +route.params.id;
const filter = { where: { invoiceInFk: invoiceId } }; const filter = { where: { invoiceInFk: invoiceId } };
const areRows = ref(false); const areRows = ref(false);
const totals = ref(); const totalTaxableBase = ref();
const noMatch = computed(() => totalAmount.value != totalTaxableBase.value);
const columns = computed(() => [ const columns = computed(() => [
{ {
name: 'duedate', name: 'duedate',
@ -74,9 +75,12 @@ async function insert() {
notify(t('globals.dataSaved'), 'positive'); notify(t('globals.dataSaved'), 'positive');
} }
onBeforeMount(async () => { async function setTaxableBase() {
totals.value = (await axios.get(`InvoiceIns/${invoiceId}/getTotals`)).data; const { data } = await axios.get(`InvoiceIns/${invoiceId}/getTotals`);
}); totalTaxableBase.value = data.totalTaxableBase;
}
onBeforeMount(async () => await setTaxableBase());
</script> </script>
<template> <template>
<CrudModel <CrudModel
@ -89,13 +93,14 @@ onBeforeMount(async () => {
:data-required="{ invoiceInFk: invoiceId }" :data-required="{ invoiceInFk: invoiceId }"
v-model:selected="rowsSelected" v-model:selected="rowsSelected"
@on-fetch="(data) => (areRows = !!data.length)" @on-fetch="(data) => (areRows = !!data.length)"
@save-changes="setTaxableBase"
> >
<template #body="{ rows }"> <template #body="{ rows }">
<QTable <QTable
v-model:selected="rowsSelected" v-model:selected="rowsSelected"
selection="multiple" selection="multiple"
:columns="columns" :columns
:rows="rows" :rows
row-key="$index" row-key="$index"
:grid="$q.screen.lt.sm" :grid="$q.screen.lt.sm"
> >
@ -151,7 +156,18 @@ onBeforeMount(async () => {
<QTd /> <QTd />
<QTd /> <QTd />
<QTd> <QTd>
{{ toCurrency(totalAmount) }} <QChip
dense
:color="noMatch ? 'negative' : 'transparent'"
class="q-pa-xs"
:title="
noMatch
? t('invoiceIn.noMatch', { totalTaxableBase })
: ''
"
>
{{ toCurrency(totalAmount) }}
</QChip>
</QTd> </QTd>
<QTd> <QTd>
<template v-if="isNotEuro(invoiceIn.currency.code)"> <template v-if="isNotEuro(invoiceIn.currency.code)">
@ -237,7 +253,7 @@ onBeforeMount(async () => {
if (!areRows) insert(); if (!areRows) insert();
else else
invoiceInFormRef.insert({ invoiceInFormRef.insert({
amount: (totals.totalTaxableBase - totalAmount).toFixed(2), amount: (totalTaxableBase - totalAmount).toFixed(2),
invoiceInFk: invoiceId, invoiceInFk: invoiceId,
}); });
} }
@ -249,6 +265,10 @@ onBeforeMount(async () => {
.bg { .bg {
background-color: var(--vn-light-gray); background-color: var(--vn-light-gray);
} }
.q-chip {
color: var(--vn-text-color);
}
</style> </style>
<i18n> <i18n>
es: es:

View File

@ -40,6 +40,13 @@ const vatColumns = ref([
sortable: true, sortable: true,
align: 'left', align: 'left',
}, },
{
name: 'isDeductible',
label: 'invoiceIn.isDeductible',
field: (row) => row.isDeductible,
sortable: true,
align: 'center',
},
{ {
name: 'vat', name: 'vat',
label: 'invoiceIn.summary.sageVat', label: 'invoiceIn.summary.sageVat',
@ -198,6 +205,7 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`;
color="orange-11" color="orange-11"
text-color="black" text-color="black"
@click="book(entityId)" @click="book(entityId)"
data-cy="invoiceInSummary_book"
/> />
</template> </template>
</InvoiceIntoBook> </InvoiceIntoBook>
@ -206,113 +214,109 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`;
<InvoiceInDescriptorMenu :invoice="entity" /> <InvoiceInDescriptorMenu :invoice="entity" />
</template> </template>
<template #body="{ entity }"> <template #body="{ entity }">
<!--Basic Data--> <QCard class="max-width">
<QCard class="vn-one"> <VnTitle
<QCardSection class="q-pa-none"> :url="getLink('basic-data')"
<VnTitle :text="t('globals.pageTitles.basicData')"
:url="getLink('basic-data')"
:text="t('globals.pageTitles.basicData')"
/>
</QCardSection>
<VnLv
:label="t('invoiceIn.list.supplier')"
:value="entity.supplier?.name"
>
<template #value>
<span class="link">
{{ entity.supplier?.name }}
<SupplierDescriptorProxy :id="entity.supplierFk" />
</span>
</template>
</VnLv>
<VnLv :label="t('invoiceIn.supplierRef')" :value="entity.supplierRef" />
<VnLv
:label="t('invoiceIn.summary.currency')"
:value="entity.currency?.code"
/> />
<VnLv :label="t('invoiceIn.serial')" :value="`${entity.serial}`" /> <div class="vn-card-group">
<VnLv <div class="vn-card-content">
:label="t('globals.country')" <VnLv
:value="entity.supplier?.country?.code" :label="t('invoiceIn.list.supplier')"
/> :value="entity.supplier?.name"
</QCard> >
<QCard class="vn-one"> <template #value>
<QCardSection class="q-pa-none"> <span class="link" data-cy="invoiceInSummary_supplier">
<VnTitle {{ entity.supplier?.name }}
:url="getLink('basic-data')" <SupplierDescriptorProxy :id="entity.supplierFk" />
:text="t('globals.pageTitles.basicData')" </span>
/> </template>
</QCardSection> </VnLv>
<VnLv <VnLv
:ellipsis-value="false" :label="t('invoiceIn.supplierRef')"
:label="t('invoiceIn.summary.issued')" :value="entity.supplierRef"
:value="toDate(entity.issued)" />
/> <VnLv
<VnLv :label="t('invoiceIn.summary.currency')"
:label="t('invoiceIn.summary.operated')" :value="entity.currency?.code"
:value="toDate(entity.operated)" />
/> <VnLv
<VnLv :label="t('invoiceIn.serial')"
:label="t('invoiceIn.summary.bookEntried')" :value="`${entity.serial}`"
:value="toDate(entity.bookEntried)" />
/> <VnLv
<VnLv :label="t('globals.country')"
:label="t('invoiceIn.summary.bookedDate')" :value="entity.supplier?.country?.code"
:value="toDate(entity.booked)" />
/> </div>
<VnLv :label="t('globals.isVies')" :value="entity.supplier?.isVies" /> <div class="vn-card-content">
</QCard> <VnLv
<QCard class="vn-one"> :ellipsis-value="false"
<QCardSection class="q-pa-none"> :label="t('invoiceIn.summary.issued')"
<VnTitle :value="toDate(entity.issued)"
:url="getLink('basic-data')" />
:text="t('globals.pageTitles.basicData')" <VnLv
/> :label="t('invoiceIn.summary.operated')"
</QCardSection> :value="toDate(entity.operated)"
<VnLv />
:label="t('invoiceIn.summary.sage')" <VnLv
:value="entity.sageWithholding?.withholding" :label="t('invoiceIn.summary.bookEntried')"
/> :value="toDate(entity.bookEntried)"
<VnLv />
:label="t('invoiceIn.summary.vat')" <VnLv
:value="entity.expenseDeductible?.name" :label="t('invoiceIn.summary.bookedDate')"
/> :value="toDate(entity.booked)"
<VnLv />
:label="t('invoiceIn.card.company')" <VnLv
:value="entity.company?.code" :label="t('globals.isVies')"
/> :value="entity.supplier?.isVies"
<VnLv :label="t('invoiceIn.isBooked')" :value="invoiceIn?.isBooked" /> />
</QCard> </div>
<QCard class="vn-one"> <div class="vn-card-content">
<QCardSection class="q-pa-none"> <VnLv
<VnTitle :label="t('invoiceIn.summary.sage')"
:url="getLink('basic-data')" :value="entity.sageWithholding?.withholding"
:text="t('globals.pageTitles.basicData')" />
/> <VnLv
</QCardSection> :label="t('invoiceIn.summary.vat')"
<QCardSection class="q-pa-none"> :value="entity.expenseDeductible?.name"
<VnLv />
:label="t('invoiceIn.summary.taxableBase')" <VnLv
:value="toCurrency(entity.totals.totalTaxableBase)" :label="t('invoiceIn.card.company')"
/> :value="entity.company?.code"
<VnLv label="Total" :value="toCurrency(entity.totals.totalVat)" /> />
<VnLv :label="t('invoiceIn.summary.dueTotal')"> <VnLv
<template #value> :label="t('invoiceIn.isBooked')"
<QChip :value="invoiceIn?.isBooked"
dense />
class="q-pa-xs" </div>
:color="amountsNotMatch ? 'negative' : 'transparent'" <div class="vn-card-content">
:title=" <VnLv
amountsNotMatch :label="t('invoiceIn.summary.taxableBase')"
? t('invoiceIn.summary.noMatch') :value="toCurrency(entity.totals.totalTaxableBase)"
: t('invoiceIn.summary.dueTotal') />
" <VnLv label="Total" :value="toCurrency(entity.totals.totalVat)" />
> <VnLv :label="t('invoiceIn.summary.dueTotal')">
{{ toCurrency(entity.totals.totalDueDay) }} <template #value>
</QChip> <QChip
</template> dense
</VnLv> class="q-pa-xs"
</QCardSection> :color="amountsNotMatch ? 'negative' : 'transparent'"
:title="
amountsNotMatch
? t('invoiceIn.noMatch', {
totalTaxableBase:
entity.totals.totalTaxableBase,
})
: t('invoiceIn.summary.dueTotal')
"
>
{{ toCurrency(entity.totals.totalDueDay) }}
</QChip>
</template>
</VnLv>
</div>
</div>
</QCard> </QCard>
<!--Vat--> <!--Vat-->
<QCard v-if="entity.invoiceInTax.length" class="vat"> <QCard v-if="entity.invoiceInTax.length" class="vat">
@ -334,6 +338,15 @@ const getLink = (param) => `#/invoice-in/${entityId.value}/${param}`;
</QTh> </QTh>
</QTr> </QTr>
</template> </template>
<template #body-cell-isDeductible="{ row }">
<QTd align="center">
<QCheckbox
v-model="row.isDeductible"
disable
data-cy="isDeductible_checkbox"
/>
</QTd>
</template>
<template #body-cell-vat="{ value: vatCell }"> <template #body-cell-vat="{ value: vatCell }">
<QTd :title="vatCell" shrink> <QTd :title="vatCell" shrink>
{{ vatCell }} {{ vatCell }}

View File

@ -53,6 +53,13 @@ const columns = computed(() => [
sortable: true, sortable: true,
align: 'left', align: 'left',
}, },
{
name: 'isDeductible',
label: t('invoiceIn.isDeductible'),
field: (row) => row.isDeductible,
model: 'isDeductible',
align: 'center',
},
{ {
name: 'sageiva', name: 'sageiva',
label: t('Sage iva'), label: t('Sage iva'),
@ -119,6 +126,7 @@ const filter = {
'foreignValue', 'foreignValue',
'taxTypeSageFk', 'taxTypeSageFk',
'transactionTypeSageFk', 'transactionTypeSageFk',
'isDeductible',
], ],
where: { where: {
invoiceInFk: route.params.id, invoiceInFk: route.params.id,
@ -202,6 +210,9 @@ function setCursor(ref) {
:option-label="col.optionLabel" :option-label="col.optionLabel"
:filter-options="['id', 'name']" :filter-options="['id', 'name']"
:tooltip="t('Create a new expense')" :tooltip="t('Create a new expense')"
:acls="[
{ model: 'Expense', props: '*', accessType: 'WRITE' },
]"
@keydown.tab.prevent=" @keydown.tab.prevent="
autocompleteExpense( autocompleteExpense(
$event, $event,
@ -227,6 +238,14 @@ function setCursor(ref) {
</VnSelectDialog> </VnSelectDialog>
</QTd> </QTd>
</template> </template>
<template #body-cell-isDeductible="{ row }">
<QTd align="center">
<QCheckbox
v-model="row.isDeductible"
data-cy="isDeductible_checkbox"
/>
</QTd>
</template>
<template #body-cell-taxablebase="{ row }"> <template #body-cell-taxablebase="{ row }">
<QTd shrink> <QTd shrink>
<VnInputNumber <VnInputNumber
@ -321,6 +340,7 @@ function setCursor(ref) {
</QTd> </QTd>
<QTd /> <QTd />
<QTd /> <QTd />
<QTd />
<QTd> <QTd>
{{ toCurrency(taxRateTotal) }} {{ toCurrency(taxRateTotal) }}
</QTd> </QTd>

View File

@ -7,6 +7,7 @@ import VnInputNumber from 'src/components/common/VnInputNumber.vue';
import { dateRange } from 'src/filters'; import { dateRange } from 'src/filters';
import { date } from 'quasar'; import { date } from 'quasar';
import VnSelectSupplier from 'src/components/common/VnSelectSupplier.vue'; import VnSelectSupplier from 'src/components/common/VnSelectSupplier.vue';
import VnCheckbox from 'src/components/common/VnCheckbox.vue';
defineProps({ dataKey: { type: String, required: true } }); defineProps({ dataKey: { type: String, required: true } });
const dateFormat = 'YYYY-MM-DDTHH:mm:ss.SSSZ'; const dateFormat = 'YYYY-MM-DDTHH:mm:ss.SSSZ';
@ -39,17 +40,13 @@ function handleDaysAgo(params, daysAgo) {
<VnInputDate <VnInputDate
:label="$t('globals.from')" :label="$t('globals.from')"
v-model="params.from" v-model="params.from"
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnInputDate <VnInputDate :label="$t('globals.to')" v-model="params.to" filled />
:label="$t('globals.to')"
v-model="params.to"
is-outlined
/>
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
@ -57,7 +54,7 @@ function handleDaysAgo(params, daysAgo) {
<VnInputNumber <VnInputNumber
:label="$t('globals.daysAgo')" :label="$t('globals.daysAgo')"
v-model="params.daysAgo" v-model="params.daysAgo"
is-outlined filled
:step="0" :step="0"
@update:model-value="(val) => handleDaysAgo(params, val)" @update:model-value="(val) => handleDaysAgo(params, val)"
@remove="(val) => handleDaysAgo(params, val)" @remove="(val) => handleDaysAgo(params, val)"
@ -66,12 +63,7 @@ function handleDaysAgo(params, daysAgo) {
</QItem> </QItem>
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnSelectSupplier <VnSelectSupplier v-model="params.supplierFk" dense filled />
v-model="params.supplierFk"
dense
outlined
rounded
/>
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
@ -79,7 +71,7 @@ function handleDaysAgo(params, daysAgo) {
<VnInput <VnInput
:label="getLocale('supplierRef')" :label="getLocale('supplierRef')"
v-model="params.supplierRef" v-model="params.supplierRef"
is-outlined filled
lazy-rules lazy-rules
/> />
</QItemSection> </QItemSection>
@ -89,7 +81,7 @@ function handleDaysAgo(params, daysAgo) {
<VnInput <VnInput
:label="getLocale('fi')" :label="getLocale('fi')"
v-model="params.fi" v-model="params.fi"
is-outlined filled
lazy-rules lazy-rules
/> />
</QItemSection> </QItemSection>
@ -99,7 +91,7 @@ function handleDaysAgo(params, daysAgo) {
<VnInput <VnInput
:label="getLocale('serial')" :label="getLocale('serial')"
v-model="params.serial" v-model="params.serial"
is-outlined filled
lazy-rules lazy-rules
/> />
</QItemSection> </QItemSection>
@ -109,7 +101,7 @@ function handleDaysAgo(params, daysAgo) {
<VnInput <VnInput
:label="getLocale('account')" :label="getLocale('account')"
v-model="params.account" v-model="params.account"
is-outlined filled
lazy-rules lazy-rules
/> />
</QItemSection> </QItemSection>
@ -119,7 +111,7 @@ function handleDaysAgo(params, daysAgo) {
<VnInput <VnInput
:label="getLocale('globals.params.awbCode')" :label="getLocale('globals.params.awbCode')"
v-model="params.awbCode" v-model="params.awbCode"
is-outlined filled
lazy-rules lazy-rules
/> />
</QItemSection> </QItemSection>
@ -129,7 +121,7 @@ function handleDaysAgo(params, daysAgo) {
<VnInputNumber <VnInputNumber
:label="$t('globals.amount')" :label="$t('globals.amount')"
v-model="params.amount" v-model="params.amount"
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -141,19 +133,19 @@ function handleDaysAgo(params, daysAgo) {
url="Companies" url="Companies"
option-label="code" option-label="code"
:fields="['id', 'code']" :fields="['id', 'code']"
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
<QItemSection> <QItemSection>
<QCheckbox <VnCheckbox
:label="$t('invoiceIn.isBooked')" :label="$t('invoiceIn.isBooked')"
v-model="params.isBooked" v-model="params.isBooked"
@update:model-value="searchFn()" @update:model-value="searchFn()"
toggle-indeterminate toggle-indeterminate
/> />
<QCheckbox <VnCheckbox
:label="getLocale('params.correctingFk')" :label="getLocale('params.correctingFk')"
v-model="params.correctingFk" v-model="params.correctingFk"
@update:model-value="searchFn()" @update:model-value="searchFn()"

View File

@ -119,7 +119,7 @@ const cols = computed(() => [
icon: 'preview', icon: 'preview',
type: 'submit', type: 'submit',
isPrimary: true, isPrimary: true,
action: (row) => viewSummary(row.id, InvoiceInSummary), action: (row) => viewSummary(row.id, InvoiceInSummary, 'lg-width'),
}, },
{ {
title: t('globals.download'), title: t('globals.download'),
@ -156,7 +156,7 @@ const cols = computed(() => [
:create="{ :create="{
urlCreate: 'InvoiceIns', urlCreate: 'InvoiceIns',
title: t('globals.createInvoiceIn'), title: t('globals.createInvoiceIn'),
onDataSaved: ({ id }) => tableRef.redirect(id), onDataSaved: ({ id }) => tableRef.redirect(`${id}/basic-data`),
formInitialData: { companyFk: user.companyFk, issued: Date.vnNew() }, formInitialData: { companyFk: user.companyFk, issued: Date.vnNew() },
}" }"
redirect="invoice-in" redirect="invoice-in"

View File

@ -4,7 +4,7 @@ import { useQuasar } from 'quasar';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import VnConfirm from 'src/components/ui/VnConfirm.vue'; import VnConfirm from 'src/components/ui/VnConfirm.vue';
import { useArrayData } from 'src/composables/useArrayData'; import { useArrayData } from 'src/composables/useArrayData';
import qs from 'qs';
const { notify, dialog } = useQuasar(); const { notify, dialog } = useQuasar();
const { t } = useI18n(); const { t } = useI18n();
@ -56,22 +56,21 @@ async function checkToBook(id) {
componentProps: { componentProps: {
title: t('Are you sure you want to book this invoice?'), title: t('Are you sure you want to book this invoice?'),
message: messages.reduce((acc, msg) => `${acc}<p>${msg}</p>`, ''), message: messages.reduce((acc, msg) => `${acc}<p>${msg}</p>`, ''),
promise: () => toBook(id),
}, },
}).onOk(() => toBook(id)); });
} }
async function toBook(id) { async function toBook(id) {
let type = 'positive'; let err = false;
let message = t('globals.dataSaved');
try { try {
await axios.post(`InvoiceIns/${id}/toBook`); await axios.post(`InvoiceIns/${id}/toBook`);
store.data.isBooked = true; store.data.isBooked = true;
} catch (e) { } catch (e) {
type = 'negative'; err = true;
message = t('It was not able to book the invoice'); throw e;
} finally { } finally {
notify({ type, message }); if (!err) notify({ type: 'positive', message: t('globals.dataSaved') });
} }
} }
</script> </script>

View File

@ -25,8 +25,7 @@ const { t } = useI18n();
<VnInputNumber <VnInputNumber
v-model="params.daysAgo" v-model="params.daysAgo"
:label="t('params.daysAgo')" :label="t('params.daysAgo')"
outlined filled
rounded
dense dense
/> />
</QItemSection> </QItemSection>
@ -36,8 +35,7 @@ const { t } = useI18n();
<VnInput <VnInput
v-model="params.serial" v-model="params.serial"
:label="t('params.serial')" :label="t('params.serial')"
outlined filled
rounded
dense dense
/> />
</QItemSection> </QItemSection>

View File

@ -4,6 +4,7 @@ invoiceIn:
serial: Serial serial: Serial
isBooked: Is booked isBooked: Is booked
supplierRef: Invoice nº supplierRef: Invoice nº
isDeductible: Deductible
list: list:
ref: Reference ref: Reference
supplier: Supplier supplier: Supplier
@ -57,7 +58,6 @@ invoiceIn:
bank: Bank bank: Bank
foreignValue: Foreign value foreignValue: Foreign value
dueTotal: Due day dueTotal: Due day
noMatch: Do not match
code: Code code: Code
net: Net net: Net
stems: Stems stems: Stems
@ -68,3 +68,4 @@ invoiceIn:
isBooked: Is booked isBooked: Is booked
account: Ledger account account: Ledger account
correctingFk: Rectificative correctingFk: Rectificative
noMatch: No match with the vat({totalTaxableBase})

View File

@ -4,6 +4,7 @@ invoiceIn:
serial: Serie serial: Serie
isBooked: Contabilizada isBooked: Contabilizada
supplierRef: Nº factura supplierRef: Nº factura
isDeductible: Deducible
list: list:
ref: Referencia ref: Referencia
supplier: Proveedor supplier: Proveedor
@ -66,3 +67,4 @@ invoiceIn:
isBooked: Contabilizada isBooked: Contabilizada
account: Cuenta contable account: Cuenta contable
correctingFk: Rectificativa correctingFk: Rectificativa
noMatch: No cuadra con el iva({totalTaxableBase})

View File

@ -3,7 +3,7 @@ import { ref, computed } from 'vue';
import { useRoute } from 'vue-router'; import { useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import CardDescriptor from 'components/ui/CardDescriptor.vue'; import EntityDescriptor from 'components/ui/EntityDescriptor.vue';
import CustomerDescriptorProxy from 'pages/Customer/Card/CustomerDescriptorProxy.vue'; import CustomerDescriptorProxy from 'pages/Customer/Card/CustomerDescriptorProxy.vue';
import VnLv from 'src/components/ui/VnLv.vue'; import VnLv from 'src/components/ui/VnLv.vue';
import InvoiceOutDescriptorMenu from './InvoiceOutDescriptorMenu.vue'; import InvoiceOutDescriptorMenu from './InvoiceOutDescriptorMenu.vue';
@ -34,7 +34,7 @@ function ticketFilter(invoice) {
</script> </script>
<template> <template>
<CardDescriptor <EntityDescriptor
ref="descriptor" ref="descriptor"
:url="`InvoiceOuts/${entityId}`" :url="`InvoiceOuts/${entityId}`"
:filter="filter" :filter="filter"
@ -93,5 +93,5 @@ function ticketFilter(invoice) {
</QBtn> </QBtn>
</QCardActions> </QCardActions>
</template> </template>
</CardDescriptor> </EntityDescriptor>
</template> </template>

View File

@ -33,17 +33,13 @@ const states = ref();
<VnInput <VnInput
:label="t('globals.params.clientFk')" :label="t('globals.params.clientFk')"
v-model="params.clientFk" v-model="params.clientFk"
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnInput <VnInput v-model="params.fi" :label="t('globals.params.fi')" filled />
v-model="params.fi"
:label="t('globals.params.fi')"
is-outlined
/>
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
@ -51,7 +47,7 @@ const states = ref();
<VnInputNumber <VnInputNumber
:label="t('globals.amount')" :label="t('globals.amount')"
v-model="params.amount" v-model="params.amount"
is-outlined filled
data-cy="InvoiceOutFilterAmountBtn" data-cy="InvoiceOutFilterAmountBtn"
/> />
</QItemSection> </QItemSection>
@ -62,8 +58,7 @@ const states = ref();
:label="t('invoiceOut.params.min')" :label="t('invoiceOut.params.min')"
dense dense
lazy-rules lazy-rules
outlined filled
rounded
type="number" type="number"
v-model.number="params.min" v-model.number="params.min"
/> />
@ -73,8 +68,7 @@ const states = ref();
:label="t('invoiceOut.params.max')" :label="t('invoiceOut.params.max')"
dense dense
lazy-rules lazy-rules
outlined filled
rounded
type="number" type="number"
v-model.number="params.max" v-model.number="params.max"
/> />
@ -94,7 +88,7 @@ const states = ref();
<VnInputDate <VnInputDate
v-model="params.created" v-model="params.created"
:label="t('invoiceOut.params.created')" :label="t('invoiceOut.params.created')"
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -103,15 +97,14 @@ const states = ref();
<VnInputDate <VnInputDate
v-model="params.dued" v-model="params.dued"
:label="t('invoiceOut.params.dued')" :label="t('invoiceOut.params.dued')"
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnSelect <VnSelect
outlined filled
rounded
:label="t('globals.params.departmentFk')" :label="t('globals.params.departmentFk')"
v-model="params.departmentFk" v-model="params.departmentFk"
option-value="id" option-value="id"

View File

@ -26,7 +26,7 @@ const serialTypesOptions = ref([]);
const handleInvoiceOutSerialsFetch = (data) => { const handleInvoiceOutSerialsFetch = (data) => {
serialTypesOptions.value = Array.from( serialTypesOptions.value = Array.from(
new Set(data.map((item) => item.type).filter((type) => type)) new Set(data.map((item) => item.type).filter((type) => type)),
); );
}; };
@ -99,8 +99,7 @@ onMounted(async () => {
option-label="name" option-label="name"
hide-selected hide-selected
dense dense
outlined filled
rounded
data-cy="InvoiceOutGlobalClientSelect" data-cy="InvoiceOutGlobalClientSelect"
> >
<template #option="scope"> <template #option="scope">
@ -124,19 +123,18 @@ onMounted(async () => {
option-label="type" option-label="type"
hide-selected hide-selected
dense dense
outlined filled
rounded
data-cy="InvoiceOutGlobalSerialSelect" data-cy="InvoiceOutGlobalSerialSelect"
/> />
<VnInputDate <VnInputDate
v-model="formData.invoiceDate" v-model="formData.invoiceDate"
:label="t('invoiceDate')" :label="t('invoiceDate')"
is-outlined filled
/> />
<VnInputDate <VnInputDate
v-model="formData.maxShipped" v-model="formData.maxShipped"
:label="t('maxShipped')" :label="t('maxShipped')"
is-outlined filled
data-cy="InvoiceOutGlobalMaxShippedDate" data-cy="InvoiceOutGlobalMaxShippedDate"
/> />
<VnSelect <VnSelect
@ -145,8 +143,7 @@ onMounted(async () => {
:options="companiesOptions" :options="companiesOptions"
option-label="code" option-label="code"
dense dense
outlined filled
rounded
data-cy="InvoiceOutGlobalCompanySelect" data-cy="InvoiceOutGlobalCompanySelect"
/> />
<VnSelect <VnSelect
@ -154,8 +151,7 @@ onMounted(async () => {
v-model="formData.printer" v-model="formData.printer"
:options="printersOptions" :options="printersOptions"
dense dense
outlined filled
rounded
data-cy="InvoiceOutGlobalPrinterSelect" data-cy="InvoiceOutGlobalPrinterSelect"
/> />
</div> </div>
@ -166,7 +162,7 @@ onMounted(async () => {
color="primary" color="primary"
class="q-mt-md full-width" class="q-mt-md full-width"
unelevated unelevated
rounded filled
dense dense
/> />
<QBtn <QBtn
@ -175,7 +171,7 @@ onMounted(async () => {
color="primary" color="primary"
class="q-mt-md full-width" class="q-mt-md full-width"
unelevated unelevated
rounded filled
dense dense
@click="getStatus = 'stopping'" @click="getStatus = 'stopping'"
/> />

View File

@ -35,17 +35,13 @@ const props = defineProps({
<VnInputDate <VnInputDate
v-model="params.from" v-model="params.from"
:label="t('globals.from')" :label="t('globals.from')"
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnInputDate <VnInputDate v-model="params.to" :label="t('globals.to')" filled />
v-model="params.to"
:label="t('globals.to')"
is-outlined
/>
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
@ -57,8 +53,7 @@ const props = defineProps({
option-label="code" option-label="code"
option-value="code" option-value="code"
dense dense
outlined filled
rounded
@update:model-value="searchFn()" @update:model-value="searchFn()"
> >
<template #option="scope"> <template #option="scope">
@ -84,9 +79,8 @@ const props = defineProps({
v-model="params.country" v-model="params.country"
option-label="name" option-label="name"
option-value="name" option-value="name"
outlined
dense dense
rounded filled
@update:model-value="searchFn()" @update:model-value="searchFn()"
> >
<template #option="scope"> <template #option="scope">
@ -110,9 +104,8 @@ const props = defineProps({
url="Clients" url="Clients"
:label="t('globals.client')" :label="t('globals.client')"
v-model="params.clientId" v-model="params.clientId"
outlined
dense dense
rounded filled
@update:model-value="searchFn()" @update:model-value="searchFn()"
/> />
</QItemSection> </QItemSection>
@ -122,7 +115,7 @@ const props = defineProps({
<VnInputNumber <VnInputNumber
v-model="params.amount" v-model="params.amount"
:label="t('globals.amount')" :label="t('globals.amount')"
is-outlined filled
:positive="false" :positive="false"
/> />
</QItemSection> </QItemSection>
@ -130,9 +123,8 @@ const props = defineProps({
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnSelect <VnSelect
outlined
dense dense
rounded filled
:label="t('globals.params.departmentFk')" :label="t('globals.params.departmentFk')"
v-model="params.departmentFk" v-model="params.departmentFk"
option-value="id" option-value="id"

View File

@ -3,7 +3,7 @@ import { computed, ref, onMounted } from 'vue';
import { useRoute } from 'vue-router'; import { useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import CardDescriptor from 'src/components/ui/CardDescriptor.vue'; import EntityDescriptor from 'src/components/ui/EntityDescriptor.vue';
import VnLv from 'src/components/ui/VnLv.vue'; import VnLv from 'src/components/ui/VnLv.vue';
import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue'; import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue';
import ItemDescriptorImage from 'src/pages/Item/Card/ItemDescriptorImage.vue'; import ItemDescriptorImage from 'src/pages/Item/Card/ItemDescriptorImage.vue';
@ -90,7 +90,7 @@ const updateStock = async () => {
</script> </script>
<template> <template>
<CardDescriptor <EntityDescriptor
data-key="Item" data-key="Item"
:summary="$props.summary" :summary="$props.summary"
:url="`Items/${entityId}/getCard`" :url="`Items/${entityId}/getCard`"
@ -162,7 +162,7 @@ const updateStock = async () => {
</QBtn> </QBtn>
</QCardActions> </QCardActions>
</template> </template>
</CardDescriptor> </EntityDescriptor>
</template> </template>
<i18n> <i18n>

View File

@ -13,7 +13,6 @@ const props = defineProps({
required: true, required: true,
}, },
}); });
</script> </script>
<template> <template>
@ -28,8 +27,7 @@ const props = defineProps({
:fields="['id', 'nickname']" :fields="['id', 'nickname']"
option-label="nickname" option-label="nickname"
dense dense
outlined filled
rounded
use-input use-input
@update:model-value="searchFn()" @update:model-value="searchFn()"
sort-by="nickname ASC" sort-by="nickname ASC"
@ -46,8 +44,7 @@ const props = defineProps({
:label="t('params.warehouseFk')" :label="t('params.warehouseFk')"
v-model="params.warehouseFk" v-model="params.warehouseFk"
dense dense
outlined filled
rounded
use-input use-input
@update:model-value="searchFn()" @update:model-value="searchFn()"
/> />
@ -58,7 +55,7 @@ const props = defineProps({
<VnInputDate <VnInputDate
:label="t('params.started')" :label="t('params.started')"
v-model="params.started" v-model="params.started"
is-outlined filled
@update:model-value="searchFn()" @update:model-value="searchFn()"
/> />
</QItemSection> </QItemSection>
@ -68,7 +65,7 @@ const props = defineProps({
<VnInputDate <VnInputDate
:label="t('params.ended')" :label="t('params.ended')"
v-model="params.ended" v-model="params.ended"
is-outlined filled
@update:model-value="searchFn()" @update:model-value="searchFn()"
/> />
</QItemSection> </QItemSection>

View File

@ -177,11 +177,7 @@ onMounted(async () => {
<template #body="{ params, searchFn }"> <template #body="{ params, searchFn }">
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnInput <VnInput v-model="params.search" :label="t('params.search')" filled />
v-model="params.search"
:label="t('params.search')"
is-outlined
/>
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
@ -197,8 +193,7 @@ onMounted(async () => {
option-label="name" option-label="name"
hide-selected hide-selected
dense dense
outlined filled
rounded
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -213,8 +208,7 @@ onMounted(async () => {
option-label="name" option-label="name"
hide-selected hide-selected
dense dense
outlined filled
rounded
> >
<template #option="scope"> <template #option="scope">
<QItem v-bind="scope.itemProps"> <QItem v-bind="scope.itemProps">
@ -240,8 +234,7 @@ onMounted(async () => {
option-label="nickname" option-label="nickname"
hide-selected hide-selected
dense dense
outlined filled
rounded
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -252,8 +245,7 @@ onMounted(async () => {
@update:model-value="searchFn()" @update:model-value="searchFn()"
hide-selected hide-selected
dense dense
outlined filled
rounded
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -282,8 +274,7 @@ onMounted(async () => {
:options="tagOptions" :options="tagOptions"
option-label="name" option-label="name"
dense dense
outlined filled
rounded
:emit-value="false" :emit-value="false"
use-input use-input
:is-clearable="false" :is-clearable="false"
@ -299,8 +290,7 @@ onMounted(async () => {
option-value="value" option-value="value"
option-label="value" option-label="value"
dense dense
outlined filled
rounded
emit-value emit-value
use-input use-input
:disable="!tag" :disable="!tag"
@ -312,7 +302,7 @@ onMounted(async () => {
v-model="tag.value" v-model="tag.value"
:label="t('params.value')" :label="t('params.value')"
:disable="!tag" :disable="!tag"
is-outlined filled
:is-clearable="false" :is-clearable="false"
@keydown.enter.prevent="applyTags(params, searchFn)" @keydown.enter.prevent="applyTags(params, searchFn)"
/> />
@ -351,8 +341,7 @@ onMounted(async () => {
option-label="label" option-label="label"
option-value="label" option-value="label"
dense dense
outlined filled
rounded
:emit-value="false" :emit-value="false"
use-input use-input
:is-clearable="false" :is-clearable="false"
@ -377,7 +366,7 @@ onMounted(async () => {
v-model="fieldFilter.value" v-model="fieldFilter.value"
:label="t('params.value')" :label="t('params.value')"
:disable="!fieldFilter.selectedField" :disable="!fieldFilter.selectedField"
is-outlined filled
@keydown.enter="applyFieldFilters(params, searchFn)" @keydown.enter="applyFieldFilters(params, searchFn)"
/> />
</QItemSection> </QItemSection>

View File

@ -87,11 +87,7 @@ onMounted(async () => {
<template #body="{ params, searchFn }"> <template #body="{ params, searchFn }">
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnInput <VnInput v-model="params.search" :label="t('params.search')" filled />
v-model="params.search"
:label="t('params.search')"
is-outlined
/>
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
@ -99,7 +95,7 @@ onMounted(async () => {
<VnInput <VnInput
v-model="params.ticketFk" v-model="params.ticketFk"
:label="t('params.ticketFk')" :label="t('params.ticketFk')"
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -114,8 +110,7 @@ onMounted(async () => {
option-label="nickname" option-label="nickname"
hide-selected hide-selected
dense dense
outlined filled
rounded
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -124,7 +119,7 @@ onMounted(async () => {
<VnInput <VnInput
v-model="params.clientFk" v-model="params.clientFk"
:label="t('params.clientFk')" :label="t('params.clientFk')"
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -139,8 +134,7 @@ onMounted(async () => {
option-label="name" option-label="name"
hide-selected hide-selected
dense dense
outlined filled
rounded
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -153,25 +147,16 @@ onMounted(async () => {
:params="{ departmentCodes: ['VT'] }" :params="{ departmentCodes: ['VT'] }"
hide-selected hide-selected
dense dense
outlined filled
rounded
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnInputDate <VnInputDate v-model="params.from" :label="t('params.from')" filled />
v-model="params.from"
:label="t('params.from')"
is-outlined
/>
</QItemSection> </QItemSection>
<QItemSection> <QItemSection>
<VnInputDate <VnInputDate v-model="params.to" :label="t('params.to')" filled />
v-model="params.to"
:label="t('params.to')"
is-outlined
/>
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
@ -180,7 +165,7 @@ onMounted(async () => {
:label="t('params.daysOnward')" :label="t('params.daysOnward')"
v-model="params.daysOnward" v-model="params.daysOnward"
lazy-rules lazy-rules
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -195,8 +180,7 @@ onMounted(async () => {
option-label="name" option-label="name"
hide-selected hide-selected
dense dense
outlined filled
rounded
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>

View File

@ -2,7 +2,7 @@
import { computed } from 'vue'; import { computed } from 'vue';
import { useRoute } from 'vue-router'; import { useRoute } from 'vue-router';
import CardDescriptor from 'components/ui/CardDescriptor.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 WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue'; import WorkerDescriptorProxy from 'src/pages/Worker/Card/WorkerDescriptorProxy.vue';
import filter from './ItemTypeFilter.js'; import filter from './ItemTypeFilter.js';
@ -25,7 +25,7 @@ const entityId = computed(() => {
}); });
</script> </script>
<template> <template>
<CardDescriptor <EntityDescriptor
:url="`ItemTypes/${entityId}`" :url="`ItemTypes/${entityId}`"
:filter="filter" :filter="filter"
title="code" title="code"
@ -46,5 +46,5 @@ const entityId = computed(() => {
:value="entity.category?.name" :value="entity.category?.name"
/> />
</template> </template>
</CardDescriptor> </EntityDescriptor>
</template> </template>

View File

@ -77,7 +77,7 @@ const getLocale = (label) => {
<VnInput <VnInput
:label="t('globals.params.clientFk')" :label="t('globals.params.clientFk')"
v-model="params.clientFk" v-model="params.clientFk"
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -86,7 +86,7 @@ const getLocale = (label) => {
<VnInput <VnInput
:label="t('params.orderFk')" :label="t('params.orderFk')"
v-model="params.orderFk" v-model="params.orderFk"
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
@ -95,7 +95,7 @@ const getLocale = (label) => {
<VnInputNumber <VnInputNumber
:label="t('params.scopeDays')" :label="t('params.scopeDays')"
v-model="params.scopeDays" v-model="params.scopeDays"
is-outlined filled
@update:model-value="(val) => handleScopeDays(params, val)" @update:model-value="(val) => handleScopeDays(params, val)"
@remove="(val) => handleScopeDays(params, val)" @remove="(val) => handleScopeDays(params, val)"
/> />
@ -106,66 +106,54 @@ const getLocale = (label) => {
<VnInput <VnInput
:label="t('params.nickname')" :label="t('params.nickname')"
v-model="params.nickname" v-model="params.nickname"
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnSelect <VnSelect
outlined
dense dense
rounded filled
:label="t('globals.params.departmentFk')" :label="t('globals.params.departmentFk')"
v-model="params.departmentFk" v-model="params.departmentFk"
option-value="id"
option-label="name"
url="Departments" url="Departments"
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnInput <VnInput :label="t('params.refFk')" v-model="params.refFk" filled />
:label="t('params.refFk')"
v-model="params.refFk"
is-outlined
/>
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnSelect <VnSelect
outlined
dense dense
rounded filled
:label="t('params.agencyModeFk')" :label="t('params.agencyModeFk')"
v-model="params.agencyModeFk" v-model="params.agencyModeFk"
url="AgencyModes/isActive" url="AgencyModes/isActive"
is-outlined
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnSelect <VnSelect
outlined
dense dense
rounded filled
:label="t('globals.params.stateFk')" :label="t('globals.params.stateFk')"
v-model="params.stateFk" v-model="params.stateFk"
url="States" url="States"
is-outlined
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnSelect <VnSelect
outlined
dense dense
rounded filled
:label="t('params.groupedStates')" :label="t('params.groupedStates')"
v-model="params.alertLevel" v-model="params.alertLevel"
:options="groupedStates" :options="groupedStates"
@ -176,9 +164,8 @@ const getLocale = (label) => {
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnSelect <VnSelect
outlined
dense dense
rounded filled
:label="t('globals.params.warehouseFk')" :label="t('globals.params.warehouseFk')"
v-model="params.warehouseFk" v-model="params.warehouseFk"
:options="warehouses" :options="warehouses"
@ -188,9 +175,8 @@ const getLocale = (label) => {
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnSelect <VnSelect
outlined
dense dense
rounded filled
:label="t('globals.params.countryFk')" :label="t('globals.params.countryFk')"
v-model="params.countryFk" v-model="params.countryFk"
url="Countries" url="Countries"
@ -200,9 +186,8 @@ const getLocale = (label) => {
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnSelect <VnSelect
outlined
dense dense
rounded filled
:label="t('globals.params.provinceFk')" :label="t('globals.params.provinceFk')"
v-model="params.provinceFk" v-model="params.provinceFk"
url="Provinces" url="Provinces"
@ -212,7 +197,6 @@ const getLocale = (label) => {
<QItem> <QItem>
<QItemSection> <QItemSection>
<VnSelect <VnSelect
outlined
dense dense
rounded rounded
:label="t('globals.params.packing')" :label="t('globals.params.packing')"

View File

@ -57,9 +57,8 @@ const getSelectedTagValues = async (tag) => {
option-value="id" option-value="id"
option-label="name" option-label="name"
dense dense
outlined
class="q-mb-md" class="q-mb-md"
rounded filled
:emit-value="false" :emit-value="false"
use-input use-input
@update:model-value="getSelectedTagValues" @update:model-value="getSelectedTagValues"
@ -79,8 +78,7 @@ const getSelectedTagValues = async (tag) => {
option-value="value" option-value="value"
option-label="value" option-label="value"
dense dense
outlined filled
rounded
emit-value emit-value
use-input use-input
:disable="!value || !selectedTag" :disable="!value || !selectedTag"
@ -92,16 +90,14 @@ const getSelectedTagValues = async (tag) => {
v-model="value.value" v-model="value.value"
:label="t('components.itemsFilterPanel.value')" :label="t('components.itemsFilterPanel.value')"
:disable="!value" :disable="!value"
is-outlined
class="col" class="col"
data-cy="catalogFilterValueDialogValueInput" data-cy="catalogFilterValueDialogValueInput"
/> />
<QBtn <QBtn
icon="delete" icon="delete"
size="md" size="md"
outlined
dense dense
rounded filled
flat flat
class="filter-icon col-2" class="filter-icon col-2"
@click="tagValues.splice(index, 1)" @click="tagValues.splice(index, 1)"

View File

@ -6,9 +6,11 @@ import filter from './OrderFilter.js';
<template> <template>
<VnCard <VnCard
data-key="Order" :data-key="$attrs['data-key'] ?? 'Order'"
url="Orders" url="Orders"
:filter="filter" :filter="filter"
:descriptor="OrderDescriptor" :descriptor="OrderDescriptor"
v-bind="$attrs"
v-on="$attrs"
/> />
</template> </template>

View File

@ -221,8 +221,7 @@ function addOrder(value, field, params) {
option-value="id" option-value="id"
option-label="name" option-label="name"
dense dense
outlined filled
rounded
emit-value emit-value
use-input use-input
sort-by="name ASC" sort-by="name ASC"
@ -251,8 +250,7 @@ function addOrder(value, field, params) {
v-model="orderBySelected" v-model="orderBySelected"
:options="orderByList" :options="orderByList"
dense dense
outlined filled
rounded
@update:model-value="(value) => addOrder(value, 'field', params)" @update:model-value="(value) => addOrder(value, 'field', params)"
/> />
</QItemSection> </QItemSection>
@ -264,8 +262,7 @@ function addOrder(value, field, params) {
v-model="orderWaySelected" v-model="orderWaySelected"
:options="orderWayList" :options="orderWayList"
dense dense
outlined filled
rounded
@update:model-value="(value) => addOrder(value, 'way', params)" @update:model-value="(value) => addOrder(value, 'way', params)"
/> />
</QItemSection> </QItemSection>
@ -275,8 +272,7 @@ function addOrder(value, field, params) {
<VnInput <VnInput
:label="t('components.itemsFilterPanel.value')" :label="t('components.itemsFilterPanel.value')"
dense dense
outlined filled
rounded
:is-clearable="false" :is-clearable="false"
v-model="searchByTag" v-model="searchByTag"
@keyup.enter="(val) => onSearchByTag(val, params)" @keyup.enter="(val) => onSearchByTag(val, params)"

View File

@ -4,10 +4,10 @@ import { useRoute } from 'vue-router';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { toCurrency, toDate } from 'src/filters'; import { toCurrency, toDate } from 'src/filters';
import { useState } from 'src/composables/useState'; import { useState } from 'src/composables/useState';
import filter from './OrderFilter.js';
import CardDescriptor from 'components/ui/CardDescriptor.vue';
import VnLv from 'src/components/ui/VnLv.vue'; import VnLv from 'src/components/ui/VnLv.vue';
import FetchData from 'components/FetchData.vue'; import FetchData from 'components/FetchData.vue';
import OrderCard from './OrderCard.vue';
import CardDescriptor from 'src/components/ui/CardDescriptor.vue';
import DepartmentDescriptorProxy from 'src/pages/Worker/Department/Card/DepartmentDescriptorProxy.vue'; import DepartmentDescriptorProxy from 'src/pages/Worker/Department/Card/DepartmentDescriptorProxy.vue';
const DEFAULT_ITEMS = 0; const DEFAULT_ITEMS = 0;
@ -24,11 +24,14 @@ const route = useRoute();
const state = useState(); const state = useState();
const { t } = useI18n(); const { t } = useI18n();
const getTotalRef = ref(); const getTotalRef = ref();
const total = ref(0);
const entityId = computed(() => { const entityId = computed(() => {
return $props.id || route.params.id; return $props.id || route.params.id;
}); });
const orderTotal = computed(() => state.get('orderTotal') ?? 0);
const setData = (entity) => { const setData = (entity) => {
if (!entity) return; if (!entity) return;
getTotalRef.value && getTotalRef.value.fetch(); getTotalRef.value && getTotalRef.value.fetch();
@ -38,9 +41,6 @@ const setData = (entity) => {
const getConfirmationValue = (isConfirmed) => { const getConfirmationValue = (isConfirmed) => {
return t(isConfirmed ? 'globals.confirmed' : 'order.summary.notConfirmed'); return t(isConfirmed ? 'globals.confirmed' : 'order.summary.notConfirmed');
}; };
const orderTotal = computed(() => state.get('orderTotal') ?? 0);
const total = ref(0);
</script> </script>
<template> <template>
@ -54,12 +54,12 @@ const total = ref(0);
" "
/> />
<CardDescriptor <CardDescriptor
ref="descriptor" v-bind="$attrs"
:url="`Orders/${entityId}`" :id="entityId"
:filter="filter" :card="OrderCard"
title="client.name" title="client.name"
@on-fetch="setData" @on-fetch="setData"
data-key="Order" module="Order"
> >
<template #body="{ entity }"> <template #body="{ entity }">
<VnLv <VnLv

View File

@ -12,6 +12,11 @@ const $props = defineProps({
<template> <template>
<QPopupProxy> <QPopupProxy>
<OrderDescriptor v-if="$props.id" :id="$props.id" :summary="OrderSummary" /> <OrderDescriptor
v-if="$props.id"
:id="$props.id"
:summary="OrderSummary"
data-key="OrderDescriptor"
/>
</QPopupProxy> </QPopupProxy>
</template> </template>

View File

@ -49,8 +49,7 @@ const sourceList = ref([]);
v-model="params.clientFk" v-model="params.clientFk"
lazy-rules lazy-rules
dense dense
outlined filled
rounded
/> />
<VnSelect <VnSelect
:label="t('agency')" :label="t('agency')"
@ -58,13 +57,11 @@ const sourceList = ref([]);
:options="agencyList" :options="agencyList"
:input-debounce="0" :input-debounce="0"
dense dense
outlined filled
rounded
/> />
<VnSelect <VnSelect
outlined
dense dense
rounded filled
:label="t('globals.params.departmentFk')" :label="t('globals.params.departmentFk')"
v-model="params.departmentFk" v-model="params.departmentFk"
option-value="id" option-value="id"
@ -75,21 +72,14 @@ const sourceList = ref([]);
v-model="params.from" v-model="params.from"
:label="t('fromLanded')" :label="t('fromLanded')"
dense dense
outlined filled
rounded
/>
<VnInputDate
v-model="params.to"
:label="t('toLanded')"
dense
outlined
rounded
/> />
<VnInputDate v-model="params.to" :label="t('toLanded')" dense filled />
<VnInput <VnInput
:label="t('orderId')" :label="t('orderId')"
v-model="params.orderFk" v-model="params.orderFk"
lazy-rules lazy-rules
is-outlined filled
/> />
<VnSelect <VnSelect
:label="t('application')" :label="t('application')"
@ -98,8 +88,7 @@ const sourceList = ref([]);
option-label="value" option-label="value"
option-value="value" option-value="value"
dense dense
outlined filled
rounded
:input-debounce="0" :input-debounce="0"
/> />
<QCheckbox <QCheckbox

View File

@ -71,180 +71,174 @@ async function handleConfirm() {
</script> </script>
<template> <template>
<div class="q-pa-md"> <CardSummary
<CardSummary ref="summary"
ref="summary" :url="`Orders/${entityId}/summary`"
:url="`Orders/${entityId}/summary`" data-key="OrderSummary"
data-key="OrderSummary" >
> <template #header="{ entity }">
<template #header="{ entity }"> {{ t('order.summary.basket') }} #{{ entity?.id }} -
{{ t('order.summary.basket') }} #{{ entity?.id }} - {{ entity?.client?.name }} ({{ entity?.clientFk }})
{{ entity?.client?.name }} ({{ entity?.clientFk }}) </template>
</template> <template #header-right>
<template #header-right> <QBtn
<QBtn flat
flat text-color="white"
text-color="white" :disabled="isConfirmed"
:disabled="isConfirmed" :label="t('order.summary.confirm')"
:label="t('order.summary.confirm')" @click="handleConfirm()"
@click="handleConfirm()" >
> <QTooltip>{{ t('order.summary.confirmLines') }}</QTooltip>
<QTooltip>{{ t('order.summary.confirmLines') }}</QTooltip> </QBtn>
</QBtn> </template>
</template> <template #menu="{ entity }">
<template #menu="{ entity }"> <OrderDescriptorMenu :order="entity" />
<OrderDescriptorMenu :order="entity" /> </template>
</template> <template #body="{ entity }">
<template #body="{ entity }"> <QCard class="vn-two">
<QCard class="vn-one"> <VnTitle
<VnTitle :url="`#/order/${entity.id}/basic-data`"
:url="`#/order/${entity.id}/basic-data`" :text="t('globals.pageTitles.basicData')"
:text="t('globals.pageTitles.basicData')" />
/> <div class="vn-card-group">
<VnLv label="ID" :value="entity.id" /> <div class="vn-card-content">
<VnLv :label="t('globals.alias')" dash> <VnLv label="ID" :value="entity.id" />
<template #value> <VnLv :label="t('globals.alias')" dash>
<span class="link"> <template #value>
{{ dashIfEmpty(entity?.address?.nickname) }} <span class="link">
<CustomerDescriptorProxy :id="entity?.clientFk" /> {{ dashIfEmpty(entity?.address?.nickname) }}
</span> <CustomerDescriptorProxy :id="entity?.clientFk" />
</template> </span>
</VnLv> </template>
<VnLv </VnLv>
:label="t('globals.company')" <VnLv
:value="entity?.address?.companyFk" :label="t('globals.company')"
/> :value="entity?.address?.companyFk"
<VnLv />
:label="t('globals.confirmed')" <VnLv
:value="Boolean(entity?.isConfirmed)" :label="t('globals.confirmed')"
/> :value="Boolean(entity?.isConfirmed)"
</QCard> />
<QCard class="vn-one"> </div>
<VnTitle <div class="vn-card-content">
:url="`#/order/${entity.id}/basic-data`" <VnLv
:text="t('globals.pageTitles.basicData')" :label="t('order.summary.created')"
/> :value="toDateHourMinSec(entity?.created)"
<VnLv />
:label="t('order.summary.created')" <VnLv
:value="toDateHourMinSec(entity?.created)" :label="t('globals.confirmed')"
/> :value="toDateHourMinSec(entity?.confirmed)"
<VnLv />
:label="t('globals.confirmed')" <VnLv
:value="toDateHourMinSec(entity?.confirmed)" :label="t('globals.landed')"
/> :value="toDateHourMinSec(entity?.landed)"
<VnLv />
:label="t('globals.landed')" <VnLv :label="t('globals.phone')">
:value="toDateHourMinSec(entity?.landed)" <template #value>
/> {{ dashIfEmpty(entity?.address?.phone) }}
<VnLv :label="t('globals.phone')"> <a
<template #value> v-if="entity?.address?.phone"
{{ dashIfEmpty(entity?.address?.phone) }} :href="`tel:${entity?.address?.phone}`"
<a class="text-primary"
v-if="entity?.address?.phone" >
:href="`tel:${entity?.address?.phone}`" <QIcon name="phone" />
class="text-primary" </a>
> </template>
<QIcon name="phone" /> </VnLv>
</a> <VnLv
</template> :label="t('order.summary.createdFrom')"
</VnLv> :value="entity?.sourceApp"
<VnLv />
:label="t('order.summary.createdFrom')" <VnLv
:value="entity?.sourceApp" :label="t('order.summary.address')"
/> :value="`${entity?.address?.street} - ${entity?.address?.city} (${entity?.address?.province?.name})`"
<VnLv class="order-summary-address"
:label="t('order.summary.address')" />
:value="`${entity?.address?.street} - ${entity?.address?.city} (${entity?.address?.province?.name})`" </div>
class="order-summary-address" </div>
/> </QCard>
</QCard> <QCard class="vn-one">
<QCard class="vn-one"> <VnTitle :text="t('globals.pageTitles.notes')" />
<VnTitle :text="t('globals.pageTitles.notes')" /> <p v-if="entity?.note" class="no-margin">
<p v-if="entity?.note" class="no-margin"> {{ entity?.note }}
{{ entity?.note }} </p>
</p> </QCard>
</QCard> <QCard class="vn-one">
<QCard class="vn-one"> <VnTitle :text="t('order.summary.total')" />
<VnTitle :text="t('order.summary.total')" /> <VnLv>
<VnLv> <template #label>
<template #label> <span class="text-h6">{{ t('globals.subtotal') }}</span>
<span class="text-h6">{{ t('globals.subtotal') }}</span> </template>
</template> <template #value>
<template #value> <span class="text-h6">{{ toCurrency(entity?.subTotal) }}</span>
<span class="text-h6">{{ </template>
toCurrency(entity?.subTotal) </VnLv>
}}</span> <VnLv>
</template> <template #label>
</VnLv> <span class="text-h6">{{ t('globals.vat') }}</span>
<VnLv> </template>
<template #label> <template #value>
<span class="text-h6">{{ t('globals.vat') }}</span> <span class="text-h6">{{ toCurrency(entity?.VAT) }}</span>
</template> </template>
<template #value> </VnLv>
<span class="text-h6">{{ toCurrency(entity?.VAT) }}</span> <VnLv>
</template> <template #label>
</VnLv> <span class="text-h6">{{ t('order.summary.total') }}</span>
<VnLv> </template>
<template #label> <template #value>
<span class="text-h6">{{ t('order.summary.total') }}</span> <span class="text-h6">{{ toCurrency(entity?.total) }}</span>
</template> </template>
<template #value> </VnLv>
<span class="text-h6">{{ toCurrency(entity?.total) }}</span> </QCard>
</template> <QCard>
</VnLv> <VnTitle :text="t('globals.details')" />
</QCard> <QTable :columns="detailsColumns" :rows="entity?.rows" flat>
<QCard> <template #header="props">
<VnTitle :text="t('globals.details')" /> <QTr :props="props">
<QTable :columns="detailsColumns" :rows="entity?.rows" flat> <QTh auto-width>{{ t('globals.item') }}</QTh>
<template #header="props"> <QTh>{{ t('globals.description') }}</QTh>
<QTr :props="props"> <QTh auto-width>{{ t('globals.quantity') }}</QTh>
<QTh auto-width>{{ t('globals.item') }}</QTh> <QTh auto-width>{{ t('globals.price') }}</QTh>
<QTh>{{ t('globals.description') }}</QTh> <QTh auto-width>{{ t('order.summary.amount') }}</QTh>
<QTh auto-width>{{ t('globals.quantity') }}</QTh> </QTr>
<QTh auto-width>{{ t('globals.price') }}</QTh> </template>
<QTh auto-width>{{ t('order.summary.amount') }}</QTh> <template #body="props">
</QTr> <QTr :props="props">
</template> <QTd key="item" :props="props" class="item">
<template #body="props"> <span class="link">
<QTr :props="props"> {{ props.row.item?.id }}
<QTd key="item" :props="props" class="item"> <ItemDescriptorProxy :id="props.row.item?.id" />
<span class="link"> </span>
{{ props.row.item?.id }} </QTd>
<ItemDescriptorProxy :id="props.row.item?.id" /> <QTd key="description" :props="props">
</span> <div class="description">
</QTd> <div class="name">
<QTd key="description" :props="props"> {{ props.row.item.name }}
<div class="description"> <span
<div class="name"> v-if="props.row.item.subName"
{{ props.row.item.name }} class="subName"
<span >
v-if="props.row.item.subName" {{ props.row.item.subName }}
class="subName" </span>
>
{{ props.row.item.subName }}
</span>
</div>
</div> </div>
<FetchedTags :item="props.row.item" :columns="3" /> </div>
</QTd> <FetchedTags :item="props.row.item" :columns="3" />
<QTd key="quantity" :props="props"> </QTd>
{{ props.row.quantity }} <QTd key="quantity" :props="props">
</QTd> {{ props.row.quantity }}
<QTd key="price" :props="props"> </QTd>
{{ toCurrency(props.row.price) }} <QTd key="price" :props="props">
</QTd> {{ toCurrency(props.row.price) }}
<QTd key="amount" :props="props"> </QTd>
{{ <QTd key="amount" :props="props">
toCurrency(props.row?.quantity * props.row?.price) {{ toCurrency(props.row?.quantity * props.row?.price) }}
}} </QTd>
</QTd> </QTr>
</QTr> </template>
</template> </QTable>
</QTable> </QCard>
</QCard> </template>
</template> </CardSummary>
</CardSummary>
</div>
</template> </template>
<style lang="scss"> <style lang="scss">
.cardSummary .summaryBody .vn-label-value.order-summary-address { .cardSummary .summaryBody .vn-label-value.order-summary-address {

View File

@ -141,7 +141,7 @@ const columns = computed(() => [
{ {
title: t('globals.pageTitles.summary'), title: t('globals.pageTitles.summary'),
icon: 'preview', icon: 'preview',
action: (row) => viewSummary(row.id, OrderSummary), action: (row) => viewSummary(row.id, OrderSummary, 'lg-width'),
isPrimary: true, isPrimary: true,
}, },
], ],

View File

@ -3,5 +3,5 @@ import AgencyDescriptor from 'pages/Route/Agency/Card/AgencyDescriptor.vue';
import VnCard from 'src/components/common/VnCard.vue'; import VnCard from 'src/components/common/VnCard.vue';
</script> </script>
<template> <template>
<VnCard data-key="Agency" url="Agencies" :descriptor="AgencyDescriptor" /> <VnCard data-key="Agency" url="Agencies" :descriptor="AgencyDescriptor" :filter="{ where: { id: $route.params.id } }" />
</template> </template>

View File

@ -3,7 +3,7 @@ import { computed } from 'vue';
import { useI18n } from 'vue-i18n'; import { useI18n } from 'vue-i18n';
import { useRoute } from 'vue-router'; import { useRoute } from 'vue-router';
import { useArrayData } from 'src/composables/useArrayData'; import { useArrayData } from 'src/composables/useArrayData';
import CardDescriptor from 'components/ui/CardDescriptor.vue'; import EntityDescriptor from 'components/ui/EntityDescriptor.vue';
import VnLv from 'components/ui/VnLv.vue'; import VnLv from 'components/ui/VnLv.vue';
const props = defineProps({ const props = defineProps({
@ -21,7 +21,7 @@ const { store } = useArrayData();
const card = computed(() => store.data); const card = computed(() => store.data);
</script> </script>
<template> <template>
<CardDescriptor <EntityDescriptor
data-key="Agency" data-key="Agency"
:url="`Agencies/${entityId}`" :url="`Agencies/${entityId}`"
:title="card?.name" :title="card?.name"
@ -31,5 +31,5 @@ const card = computed(() => store.data);
<template #body="{ entity: agency }"> <template #body="{ entity: agency }">
<VnLv :label="t('globals.name')" :value="agency.name" /> <VnLv :label="t('globals.name')" :value="agency.name" />
</template> </template>
</CardDescriptor> </EntityDescriptor>
</template> </template>

View File

@ -71,7 +71,7 @@ const exprBuilder = (param, value) => {
<QList dense> <QList dense>
<QItem class="q-my-sm"> <QItem class="q-my-sm">
<QItemSection> <QItemSection>
<VnInput v-model="params.routeFk" :label="t('ID')" is-outlined /> <VnInput v-model="params.routeFk" :label="t('ID')" filled />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem class="q-my-sm" v-if="agencyList"> <QItem class="q-my-sm" v-if="agencyList">
@ -83,8 +83,7 @@ const exprBuilder = (param, value) => {
option-value="id" option-value="id"
option-label="name" option-label="name"
dense dense
outlined filled
rounded
emit-value emit-value
map-options map-options
use-input use-input
@ -102,8 +101,7 @@ const exprBuilder = (param, value) => {
option-value="id" option-value="id"
option-label="name" option-label="name"
dense dense
outlined filled
rounded
emit-value emit-value
map-options map-options
use-input use-input
@ -123,8 +121,7 @@ const exprBuilder = (param, value) => {
option-value="name" option-value="name"
option-label="name" option-label="name"
dense dense
outlined filled
rounded
emit-value emit-value
map-options map-options
use-input use-input
@ -135,20 +132,12 @@ const exprBuilder = (param, value) => {
</QItem> </QItem>
<QItem class="q-my-sm"> <QItem class="q-my-sm">
<QItemSection> <QItemSection>
<VnInputDate <VnInputDate v-model="params.dated" :label="t('Date')" filled />
v-model="params.dated"
:label="t('Date')"
is-outlined
/>
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem class="q-my-sm"> <QItem class="q-my-sm">
<QItemSection> <QItemSection>
<VnInputDate <VnInputDate v-model="params.from" :label="t('From')" filled />
v-model="params.from"
:label="t('From')"
is-outlined
/>
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem class="q-my-sm"> <QItem class="q-my-sm">
@ -156,7 +145,7 @@ const exprBuilder = (param, value) => {
<VnInputDate <VnInputDate
v-model="params.to" v-model="params.to"
:label="t('To')" :label="t('To')"
is-outlined filled
is-clearable is-clearable
/> />
</QItemSection> </QItemSection>
@ -166,23 +155,23 @@ const exprBuilder = (param, value) => {
<VnInput <VnInput
v-model="params.packages" v-model="params.packages"
:label="t('Packages')" :label="t('Packages')"
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem class="q-my-sm"> <QItem class="q-my-sm">
<QItemSection> <QItemSection>
<VnInput v-model="params.m3" :label="t('m3')" is-outlined /> <VnInput v-model="params.m3" :label="t('m3')" filled />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem class="q-my-sm"> <QItem class="q-my-sm">
<QItemSection> <QItemSection>
<VnInput v-model="params.kmTotal" :label="t('Km')" is-outlined /> <VnInput v-model="params.kmTotal" :label="t('Km')" filled />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem class="q-my-sm"> <QItem class="q-my-sm">
<QItemSection> <QItemSection>
<VnInput v-model="params.price" :label="t('Price')" is-outlined /> <VnInput v-model="params.price" :label="t('Price')" filled />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem class="q-my-sm"> <QItem class="q-my-sm">
@ -190,7 +179,7 @@ const exprBuilder = (param, value) => {
<VnInput <VnInput
v-model="params.invoiceInFk" v-model="params.invoiceInFk"
:label="t('Received')" :label="t('Received')"
is-outlined filled
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>

View File

@ -1,7 +1,7 @@
<script setup> <script setup>
import { ref, computed, onMounted } from 'vue'; import { ref, computed, onMounted } from 'vue';
import { useRoute } from 'vue-router'; import { useRoute } from 'vue-router';
import CardDescriptor from 'components/ui/CardDescriptor.vue'; import EntityDescriptor from 'components/ui/EntityDescriptor.vue';
import useCardDescription from 'composables/useCardDescription'; import useCardDescription from 'composables/useCardDescription';
import VnLv from 'components/ui/VnLv.vue'; import VnLv from 'components/ui/VnLv.vue';
import { dashIfEmpty, toDate } from 'src/filters'; import { dashIfEmpty, toDate } from 'src/filters';
@ -41,13 +41,12 @@ const getZone = async () => {
zone.value = zoneData.name; zone.value = zoneData.name;
}; };
const data = ref(useCardDescription()); const data = ref(useCardDescription());
const setData = (entity) => (data.value = useCardDescription(entity.code, entity.id));
onMounted(async () => { onMounted(async () => {
getZone(); getZone();
}); });
</script> </script>
<template> <template>
<CardDescriptor <EntityDescriptor
:url="`Routes/${entityId}`" :url="`Routes/${entityId}`"
:filter="filter" :filter="filter"
:title="null" :title="null"
@ -69,7 +68,7 @@ onMounted(async () => {
<template #menu="{ entity }"> <template #menu="{ entity }">
<RouteDescriptorMenu :route="entity" /> <RouteDescriptorMenu :route="entity" />
</template> </template>
</CardDescriptor> </EntityDescriptor>
</template> </template>
<i18n> <i18n>
es: es:

View File

@ -36,8 +36,7 @@ const emit = defineEmits(['search']);
:label="t('globals.worker')" :label="t('globals.worker')"
v-model="params.workerFk" v-model="params.workerFk"
dense dense
outlined filled
rounded
:input-debounce="0" :input-debounce="0"
/> />
</QItemSection> </QItemSection>
@ -52,8 +51,7 @@ const emit = defineEmits(['search']);
option-value="id" option-value="id"
option-label="name" option-label="name"
dense dense
outlined filled
rounded
:input-debounce="0" :input-debounce="0"
/> />
</QItemSection> </QItemSection>
@ -63,7 +61,7 @@ const emit = defineEmits(['search']);
<VnInputDate <VnInputDate
v-model="params.from" v-model="params.from"
:label="t('globals.from')" :label="t('globals.from')"
is-outlined filled
:disable="Boolean(params.scopeDays)" :disable="Boolean(params.scopeDays)"
@update:model-value="params.scopeDays = null" @update:model-value="params.scopeDays = null"
/> />
@ -74,7 +72,7 @@ const emit = defineEmits(['search']);
<VnInputDate <VnInputDate
v-model="params.to" v-model="params.to"
:label="t('globals.to')" :label="t('globals.to')"
is-outlined filled
:disable="Boolean(params.scopeDays)" :disable="Boolean(params.scopeDays)"
@update:model-value="params.scopeDays = null" @update:model-value="params.scopeDays = null"
/> />
@ -86,7 +84,7 @@ const emit = defineEmits(['search']);
v-model="params.scopeDays" v-model="params.scopeDays"
type="number" type="number"
:label="t('globals.daysOnward')" :label="t('globals.daysOnward')"
is-outlined filled
clearable clearable
:disable="Boolean(params.from || params.to)" :disable="Boolean(params.from || params.to)"
@update:model-value=" @update:model-value="
@ -107,15 +105,14 @@ const emit = defineEmits(['search']);
option-label="numberPlate" option-label="numberPlate"
option-filter-value="numberPlate" option-filter-value="numberPlate"
dense dense
outlined filled
rounded
:input-debounce="0" :input-debounce="0"
/> />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem class="q-my-sm"> <QItem class="q-my-sm">
<QItemSection> <QItemSection>
<VnInput v-model="params.m3" label="m³" is-outlined clearable /> <VnInput v-model="params.m3" label="m³" filled clearable />
</QItemSection> </QItemSection>
</QItem> </QItem>
<QItem class="q-my-sm"> <QItem class="q-my-sm">
@ -127,8 +124,7 @@ const emit = defineEmits(['search']);
option-value="id" option-value="id"
option-label="name" option-label="name"
dense dense
outlined filled
rounded
:input-debounce="0" :input-debounce="0"
/> />
</QItemSection> </QItemSection>
@ -138,7 +134,7 @@ const emit = defineEmits(['search']);
<VnInput <VnInput
v-model="params.description" v-model="params.description"
:label="t('globals.description')" :label="t('globals.description')"
is-outlined filled
clearable clearable
/> />
</QItemSection> </QItemSection>

View File

@ -138,74 +138,79 @@ const ticketColumns = ref([
:url="`#/${route.meta.moduleName.toLowerCase()}/${entityId}/basic-data`" :url="`#/${route.meta.moduleName.toLowerCase()}/${entityId}/basic-data`"
:text="t('globals.pageTitles.basicData')" :text="t('globals.pageTitles.basicData')"
/> />
</QCard> <div class="vn-card-group">
<div class="vn-card-content">
<QCard class="vn-one"> <VnLv
<VnLv :label="t('route.summary.date')"
:label="t('route.summary.date')" :value="toDate(entity?.route.dated)"
:value="toDate(entity?.route.dated)" />
/> <VnLv
<VnLv :label="t('route.summary.agency')"
:label="t('route.summary.agency')" :value="entity?.route?.agencyMode?.name"
:value="entity?.route?.agencyMode?.name" />
/> <VnLv
<VnLv :label="t('route.summary.vehicle')"
:label="t('route.summary.vehicle')" :value="entity.route?.vehicle?.numberPlate"
:value="entity.route?.vehicle?.numberPlate" />
/> <VnLv :label="t('route.summary.driver')">
<VnLv :label="t('route.summary.driver')"> <template #value>
<template #value> <span class="link">
<span class="link"> {{
{{ dashIfEmpty(entity?.route?.worker?.user?.name) }} dashIfEmpty(entity?.route?.worker?.user?.name)
<WorkerDescriptorProxy :id="entity.route?.workerFk" /> }}
</span> <WorkerDescriptorProxy
</template> :id="entity.route?.workerFk"
</VnLv> />
<VnLv </span>
:label="t('route.summary.cost')" </template>
:value="toCurrency(entity.route?.cost)" </VnLv>
/> <VnLv
<VnLv :label="t('route.summary.cost')"
:label="t('route.summary.volume')" :value="toCurrency(entity.route?.cost)"
:value="`${dashIfEmpty(entity?.route?.m3)} / ${dashIfEmpty( />
entity?.route?.vehicle?.m3, <VnLv
)} `" :label="t('route.summary.volume')"
/> :value="`${dashIfEmpty(entity?.route?.m3)} / ${dashIfEmpty(
<VnLv entity?.route?.vehicle?.m3,
:label="t('route.summary.packages')" )} `"
:value="getTotalPackages(entity.tickets)" />
/> <VnLv
<QCheckbox :label="t('route.summary.packages')"
:label=" :value="getTotalPackages(entity.tickets)"
entity.route.isOk />
? t('route.summary.closed') <QCheckbox
: t('route.summary.open') :label="
" entity.route.isOk
v-model="entity.route.isOk" ? t('route.summary.closed')
:disable="true" : t('route.summary.open')
/> "
</QCard> v-model="entity.route.isOk"
<QCard class="vn-one"> :disable="true"
<VnLv />
:label="t('route.summary.started')" </div>
:value="toHour(entity?.route.started)" <div class="vn-card-content">
/> <VnLv
<VnLv :label="t('route.summary.started')"
:label="t('route.summary.finished')" :value="toHour(entity?.route.started)"
:value="toHour(entity?.route.finished)" />
/> <VnLv
<VnLv :label="t('route.summary.finished')"
:label="t('route.summary.kmStart')" :value="toHour(entity?.route.finished)"
:value="dashIfEmpty(entity?.route?.kmStart)" />
/> <VnLv
<VnLv :label="t('route.summary.kmStart')"
:label="t('route.summary.kmEnd')" :value="dashIfEmpty(entity?.route?.kmStart)"
:value="dashIfEmpty(entity?.route?.kmEnd)" />
/> <VnLv
<VnLv :label="t('route.summary.kmEnd')"
:label="t('globals.description')" :value="dashIfEmpty(entity?.route?.kmEnd)"
:value="dashIfEmpty(entity?.route?.description)" />
/> <VnLv
:label="t('globals.description')"
:value="dashIfEmpty(entity?.route?.description)"
/>
</div>
</div>
</QCard> </QCard>
<QCard class="vn-max"> <QCard class="vn-max">
<VnTitle <VnTitle

Some files were not shown because too many files have changed in this diff Show More