#6896 fix Order module problems #817
|
@ -6,8 +6,8 @@ import axios from 'axios';
|
||||||
import FetchData from 'components/FetchData.vue';
|
import FetchData from 'components/FetchData.vue';
|
||||||
import VnFilterPanel from 'src/components/ui/VnFilterPanel.vue';
|
import VnFilterPanel from 'src/components/ui/VnFilterPanel.vue';
|
||||||
import VnSelect from 'components/common/VnSelect.vue';
|
import VnSelect from 'components/common/VnSelect.vue';
|
||||||
// import VnInput from 'src/components/common/VnInput.vue';
|
|
||||||
import getParamWhere from 'src/filters/getParamWhere';
|
import getParamWhere from 'src/filters/getParamWhere';
|
||||||
|
import VnFilterPanelChip from 'src/components/ui/VnFilterPanelChip.vue';
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
|
||||||
|
@ -49,6 +49,7 @@ const orderWaySelected = ref('ASC');
|
||||||
|
|
||||||
const routeQuery = JSON.parse(route?.query.params ?? '{}');
|
const routeQuery = JSON.parse(route?.query.params ?? '{}');
|
||||||
const paramsSearch = ref({});
|
const paramsSearch = ref({});
|
||||||
jon marked this conversation as resolved
Outdated
|
|||||||
|
const tagData = ref([]);
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
jon marked this conversation as resolved
Outdated
jsegarra
commented
si solo lo usas una vez porque no eliminas esta variable y lo pones en la siguiente linea? si tampoco haces ninguna validación si solo lo usas una vez porque no eliminas esta variable y lo pones en la siguiente linea? si tampoco haces ninguna validación
|
|||||||
paramsSearch.value = JSON.parse(routeQuery.filter ?? '{}')?.where ?? {};
|
paramsSearch.value = JSON.parse(routeQuery.filter ?? '{}')?.where ?? {};
|
||||||
|
@ -120,32 +121,6 @@ const selectedType = computed(() => {
|
||||||
return (typeList.value || []).find((type) => type?.id === selectedTypeFk.value);
|
return (typeList.value || []).find((type) => type?.id === selectedTypeFk.value);
|
||||||
});
|
});
|
||||||
|
|
||||||
// const applyTagFilter = (params, search) => {
|
|
||||||
|
|
||||||
// if (params.tagGroups) params.tagGroups = null;
|
|
||||||
// if (!tagValues.value?.length) {
|
|
||||||
// params.tagGroups = null;
|
|
||||||
// search();
|
|
||||||
// return;
|
|
||||||
// }
|
|
||||||
// if (!params.tagGroups) {
|
|
||||||
// params.tagGroups = [];
|
|
||||||
// }
|
|
||||||
// params.tagGroups.push(
|
|
||||||
// JSON.stringify({
|
|
||||||
// values: tagValues.value.filter((obj) => Object.keys(obj).length > 0),
|
|
||||||
// tagSelection: {
|
|
||||||
// ...selectedTag.value,
|
|
||||||
// orgShowField: selectedTag?.value?.name,
|
|
||||||
// },
|
|
||||||
// tagFk: selectedTag?.value?.tagFk,
|
|
||||||
// })
|
|
||||||
// );
|
|
||||||
// search();
|
|
||||||
// selectedTag.value = null;
|
|
||||||
// tagValues.value = [{}];
|
|
||||||
// };
|
|
||||||
|
|
||||||
const applyTagFilter = (params, search) => {
|
const applyTagFilter = (params, search) => {
|
||||||
if (!tagValues.value?.length) {
|
if (!tagValues.value?.length) {
|
||||||
params.tagGroups = null;
|
params.tagGroups = null;
|
||||||
|
@ -153,27 +128,46 @@ const applyTagFilter = (params, search) => {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!params.tagGroups) {
|
if (!params.tagGroups || typeof params.tagGroups === 'string') {
|
||||||
params.tagGroups = [];
|
params.tagGroups = [];
|
||||||
} else if (typeof params.tagGroups === 'string') {
|
|
||||||
params.tagGroups = [params.tagGroups];
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const newTagGroup = JSON.stringify({
|
params.tagGroups.push(
|
||||||
|
JSON.stringify({
|
||||||
values: tagValues.value.filter((obj) => Object.keys(obj).length > 0),
|
values: tagValues.value.filter((obj) => Object.keys(obj).length > 0),
|
||||||
tagSelection: {
|
tagSelection: {
|
||||||
...selectedTag.value,
|
...selectedTag.value,
|
||||||
orgShowField: selectedTag?.value?.name,
|
orgShowField: selectedTag?.value?.name,
|
||||||
},
|
},
|
||||||
tagFk: selectedTag?.value?.tagFk,
|
tagFk: selectedTag?.value?.tagFk,
|
||||||
});
|
})
|
||||||
params.tagGroups.push(newTagGroup);
|
);
|
||||||
|
|
||||||
|
tagData.value.push(JSON.parse(params.tagGroups[params.tagGroups.length - 1]));
|
||||||
search();
|
search();
|
||||||
selectedTag.value = null;
|
selectedTag.value = null;
|
||||||
tagValues.value = [{}];
|
tagValues.value = [{}];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const removeTagChip = (selection, params, search) => {
|
||||||
|
if (typeof params.tagGroups === 'string') {
|
||||||
|
try {
|
||||||
|
params.tagGroups = JSON.parse(params.tagGroups);
|
||||||
|
} catch (error) {
|
||||||
|
console.error('Error parsing tagGroups:', error);
|
||||||
|
params.tagGroups = [];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
console.log('params.tagGroups: ', params.tagGroups);
|
||||||
|
console.log('selection: ', selection);
|
||||||
|
|
||||||
|
if (Array.isArray(params.tagGroups)) {
|
||||||
|
params.tagGroups = params.tagGroups.filter((value) => value !== selection);
|
||||||
|
}
|
||||||
|
|
||||||
|
search();
|
||||||
|
};
|
||||||
|
|
||||||
const setCategoryList = (data) => {
|
const setCategoryList = (data) => {
|
||||||
categoryList.value = (data || [])
|
categoryList.value = (data || [])
|
||||||
.filter((category) => category.display)
|
.filter((category) => category.display)
|
||||||
|
@ -198,22 +192,6 @@ function addOrder(value, field, params) {
|
||||||
params.orderBy = JSON.stringify(orderBy);
|
params.orderBy = JSON.stringify(orderBy);
|
||||||
vnFilterPanelRef.value.search();
|
vnFilterPanelRef.value.search();
|
||||||
}
|
}
|
||||||
|
|
||||||
const data = ref([]);
|
|
||||||
|
|
||||||
function getTagData(value) {
|
|
||||||
if (Array.isArray(value) && value.length >= 1) {
|
|
||||||
const parsedTags = value.map((obj) => JSON.parse(obj));
|
|
||||||
|
|
||||||
if (parsedTags.length === 1) {
|
|
||||||
data.value = parsedTags[0];
|
|
||||||
} else {
|
|
||||||
data.value = parsedTags;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
data.value = JSON.parse(value);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -224,29 +202,37 @@ function getTagData(value) {
|
||||||
v-model="paramsSearch"
|
v-model="paramsSearch"
|
||||||
:redirect="false"
|
:redirect="false"
|
||||||
:hidden-tags="['orderFk', 'orderBy', 'filter', 'search', 'or', 'and']"
|
:hidden-tags="['orderFk', 'orderBy', 'filter', 'search', 'or', 'and']"
|
||||||
|
:custom-tags="['tagGroups']"
|
||||||
:unremovable-params="['orderFk', 'orderBy']"
|
:unremovable-params="['orderFk', 'orderBy']"
|
||||||
:disable-submit-event="true"
|
:disable-submit-event="true"
|
||||||
>
|
>
|
||||||
<template #tags="{ tag, formatFn }">
|
<template #tags="{ tag, formatFn }">
|
||||||
{{ console.log('tag.label: ', tag.label) }}
|
|
||||||
<strong v-if="tag.label === 'categoryFk'">
|
<strong v-if="tag.label === 'categoryFk'">
|
||||||
{{ t(selectedCategory?.name || '') }}
|
{{ t(selectedCategory?.name || '') }}
|
||||||
</strong>
|
</strong>
|
||||||
<strong v-else-if="tag.label === 'typeFk'">
|
<strong v-else-if="tag.label === 'typeFk'">
|
||||||
{{ t(selectedType?.name || '') }}
|
{{ t(selectedType?.name || '') }}
|
||||||
</strong>
|
</strong>
|
||||||
<div v-else-if="tag.label === 'tagGroups'" class="q-gutter-x-xs">
|
|
||||||
{{ getTagData(tag.value) }}
|
|
||||||
<strong> {{ data.tagSelection?.name }}: </strong>
|
|
||||||
<span>
|
|
||||||
{{ console.log('data', data.values) }}
|
|
||||||
</span>
|
|
||||||
</div>
|
|
||||||
<div v-else class="q-gutter-x-xs">
|
<div v-else class="q-gutter-x-xs">
|
||||||
<strong>{{ t(`params.${tag.label}`) }}: </strong>
|
<strong>{{ t(`params.${tag.label}`) }}: </strong>
|
||||||
<span>{{ formatFn(tag.value) }}</span>
|
<span>{{ formatFn(tag.value) }}</span>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
<template #customTags="{ tags: customTags, params, searchFn }">
|
||||||
|
<template v-for="tag in customTags" :key="tag.label">
|
||||||
|
<template v-if="tag.label === 'tagGroups'">
|
||||||
|
<VnFilterPanelChip
|
||||||
|
v-for="chip in tagData"
|
||||||
|
:key="chip"
|
||||||
|
removable
|
||||||
|
@remove="removeTagChip(chip, params, searchFn)"
|
||||||
|
>
|
||||||
|
<strong>{{ chip.tagSelection?.name }}: </strong>
|
||||||
|
<span>{{ chip.values[0].value }}</span>
|
||||||
|
</VnFilterPanelChip>
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
|
</template>
|
||||||
<template #body="{ params, searchFn }">
|
<template #body="{ params, searchFn }">
|
||||||
<QItem class="category-filter q-mt-md">
|
<QItem class="category-filter q-mt-md">
|
||||||
<div
|
<div
|
||||||
|
@ -410,6 +396,7 @@ function getTagData(value) {
|
||||||
icon="add_circle"
|
icon="add_circle"
|
||||||
shortcut="+"
|
shortcut="+"
|
||||||
flat
|
flat
|
||||||
|
size="md"
|
||||||
class="filter-icon"
|
class="filter-icon"
|
||||||
@click="tagValues.push({})"
|
@click="tagValues.push({})"
|
||||||
/>
|
/>
|
||||||
|
|
Loading…
Reference in New Issue
puede confundirse con la variable de la 189