Item Fixed prices #307
|
@ -20,6 +20,10 @@ const props = defineProps({
|
||||||
type: Array,
|
type: Array,
|
||||||
default: () => [],
|
default: () => [],
|
||||||
},
|
},
|
||||||
|
exprBuilder: {
|
||||||
|
type: Function,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const itemCategories = ref([]);
|
const itemCategories = ref([]);
|
||||||
|
@ -156,8 +160,6 @@ const removeTag = (index, params, search) => {
|
||||||
:data-key="props.dataKey"
|
:data-key="props.dataKey"
|
||||||
:expr-builder="exprBuilder"
|
:expr-builder="exprBuilder"
|
||||||
:custom-tags="customTags"
|
:custom-tags="customTags"
|
||||||
@init="onFilterInit"
|
|
||||||
@remove="clearFilter"
|
|
||||||
>
|
>
|
||||||
<template #tags="{ tag, formatFn }">
|
<template #tags="{ tag, formatFn }">
|
||||||
<strong v-if="tag.label === 'categoryFk'">
|
<strong v-if="tag.label === 'categoryFk'">
|
||||||
|
|
|
@ -156,9 +156,10 @@ export function useArrayData(key, userOptions) {
|
||||||
delete store.userParams[param];
|
delete store.userParams[param];
|
||||||
delete params[param];
|
delete params[param];
|
||||||
if (store.filter?.where) {
|
if (store.filter?.where) {
|
||||||
delete store.filter.where[
|
const key = Object.keys(
|
||||||
Object.keys(exprBuilder ? exprBuilder(param) : param)[0]
|
exprBuilder && exprBuilder(param) ? exprBuilder(param) : param
|
||||||
];
|
);
|
||||||
|
if (key[0]) delete store.filter.where[key[0]];
|
||||||
if (Object.keys(store.filter.where).length === 0) {
|
if (Object.keys(store.filter.where).length === 0) {
|
||||||
delete store.filter.where;
|
delete store.filter.where;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1140,13 +1140,21 @@ components:
|
||||||
typeFk: Type
|
typeFk: Type
|
||||||
tag: Tag
|
tag: Tag
|
||||||
value: Value
|
value: Value
|
||||||
|
# ItemFixedPriceFilter
|
||||||
buyerFk: Buyer
|
buyerFk: Buyer
|
||||||
warehouseFk: Almacén
|
warehouseFk: Almacén
|
||||||
started: Desde
|
started: Desde
|
||||||
ended: Hasta
|
ended: Hasta
|
||||||
mine: Para mi
|
mine: Para mi
|
||||||
hasMinPrice: Precio mínimo
|
hasMinPrice: Precio mínimo
|
||||||
|
# LatestBuysFilter
|
||||||
|
salesPersonFk: Buyer
|
||||||
|
supplierFk: Supplier
|
||||||
|
from: From
|
||||||
|
to: To
|
||||||
|
active: Is active
|
||||||
|
visible: Is visible
|
||||||
|
floramondo: Is floramondo
|
||||||
userPanel:
|
userPanel:
|
||||||
copyToken: Token copied to clipboard
|
copyToken: Token copied to clipboard
|
||||||
settings: Settings
|
settings: Settings
|
||||||
|
|
|
@ -1137,13 +1137,21 @@ components:
|
||||||
typeFk: Tipo
|
typeFk: Tipo
|
||||||
tag: Etiqueta
|
tag: Etiqueta
|
||||||
value: Valor
|
value: Valor
|
||||||
|
# ItemFixedPriceFilter
|
||||||
buyerFk: Comprador
|
buyerFk: Comprador
|
||||||
warehouseFk: Warehouse
|
warehouseFk: Warehouse
|
||||||
started: From
|
started: From
|
||||||
ended: To
|
ended: To
|
||||||
mine: For me
|
mine: For me
|
||||||
hasMinPrice: Minimum price
|
hasMinPrice: Minimum price
|
||||||
|
# LatestBuysFilter
|
||||||
|
salesPersonFk: Comprador
|
||||||
|
supplierFk: Proveedor
|
||||||
|
from: Desde
|
||||||
|
to: Hasta
|
||||||
|
active: Activo
|
||||||
|
visible: Visible
|
||||||
|
floramondo: Floramondo
|
||||||
userPanel:
|
userPanel:
|
||||||
copyToken: Token copiado al portapapeles
|
copyToken: Token copiado al portapapeles
|
||||||
settings: Configuración
|
settings: Configuración
|
||||||
|
|
|
@ -650,7 +650,7 @@ onUnmounted(() => (stateStore.rightDrawer = false));
|
||||||
</QToolbar>
|
</QToolbar>
|
||||||
<QDrawer v-model="stateStore.rightDrawer" side="right" :width="256" show-if-above>
|
<QDrawer v-model="stateStore.rightDrawer" side="right" :width="256" show-if-above>
|
||||||
<QScrollArea class="fit text-grey-8">
|
<QScrollArea class="fit text-grey-8">
|
||||||
<EntryLatestBuysFilter data-key="EntryLatestBuys" :tags="tags" />
|
<EntryLatestBuysFilter data-key="EntryLatestBuys" />
|
||||||
</QScrollArea>
|
</QScrollArea>
|
||||||
</QDrawer>
|
</QDrawer>
|
||||||
<QPage class="column items-center q-pa-md">
|
<QPage class="column items-center q-pa-md">
|
||||||
|
|
|
@ -1,141 +1,26 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { computed, ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
import VnInput from 'components/common/VnInput.vue';
|
|
||||||
import FetchData from 'components/FetchData.vue';
|
import FetchData from 'components/FetchData.vue';
|
||||||
import VnInputDate from 'src/components/common/VnInputDate.vue';
|
import VnInputDate from 'src/components/common/VnInputDate.vue';
|
||||||
import VnFilterPanel from 'src/components/ui/VnFilterPanel.vue';
|
|
||||||
import VnSelectFilter from 'components/common/VnSelectFilter.vue';
|
import VnSelectFilter from 'components/common/VnSelectFilter.vue';
|
||||||
import VnFilterPanelChip from 'components/ui/VnFilterPanelChip.vue';
|
import ItemsFilterPanel from 'src/components/ItemsFilterPanel.vue';
|
||||||
|
|
||||||
import axios from 'axios';
|
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
const props = defineProps({
|
|
||||||
|
defineProps({
|
||||||
dataKey: {
|
dataKey: {
|
||||||
type: String,
|
type: String,
|
||||||
required: true,
|
required: true,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
const itemCategories = ref([]);
|
|
||||||
const selectedCategoryFk = ref(null);
|
|
||||||
const selectedTypeFk = ref(null);
|
|
||||||
const itemTypesOptions = ref([]);
|
|
||||||
const itemTypeWorkersOptions = ref([]);
|
const itemTypeWorkersOptions = ref([]);
|
||||||
const suppliersOptions = ref([]);
|
const suppliersOptions = ref([]);
|
||||||
const tagOptions = ref([]);
|
|
||||||
const tagValues = ref([]);
|
|
||||||
|
|
||||||
const categoryList = computed(() => {
|
|
||||||
return (itemCategories.value || [])
|
|
||||||
.filter((category) => category.display)
|
|
||||||
.map((category) => ({
|
|
||||||
...category,
|
|
||||||
icon: `vn:${(category.icon || '').split('-')[1]}`,
|
|
||||||
}));
|
|
||||||
});
|
|
||||||
|
|
||||||
const selectedCategory = computed(() =>
|
|
||||||
(itemCategories.value || []).find(
|
|
||||||
(category) => category?.id === selectedCategoryFk.value
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
const selectedType = computed(() => {
|
|
||||||
return (itemTypesOptions.value || []).find(
|
|
||||||
(type) => type?.id === selectedTypeFk.value
|
|
||||||
);
|
|
||||||
});
|
|
||||||
|
|
||||||
const selectCategory = async (params, categoryId, search) => {
|
|
||||||
if (params.categoryFk === categoryId) {
|
|
||||||
resetCategory(params);
|
|
||||||
search();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
selectedCategoryFk.value = categoryId;
|
|
||||||
params.categoryFk = categoryId;
|
|
||||||
await fetchItemTypes(categoryId);
|
|
||||||
search();
|
|
||||||
};
|
|
||||||
|
|
||||||
const resetCategory = (params) => {
|
|
||||||
selectedCategoryFk.value = null;
|
|
||||||
itemTypesOptions.value = null;
|
|
||||||
if (params) {
|
|
||||||
params.categoryFk = null;
|
|
||||||
params.typeFk = null;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const applyTags = (params, search) => {
|
|
||||||
params.tags = tagValues.value
|
|
||||||
.filter((tag) => tag.selectedTag && tag.value)
|
|
||||||
.map((tag) => ({
|
|
||||||
tagFk: tag.selectedTag.id,
|
|
||||||
tagName: tag.selectedTag.name,
|
|
||||||
value: tag.value,
|
|
||||||
}));
|
|
||||||
search();
|
|
||||||
};
|
|
||||||
|
|
||||||
const fetchItemTypes = async (id) => {
|
|
||||||
try {
|
|
||||||
const filter = {
|
|
||||||
fields: ['id', 'name', 'categoryFk'],
|
|
||||||
where: { categoryFk: id },
|
|
||||||
include: 'category',
|
|
||||||
order: 'name ASC',
|
|
||||||
};
|
|
||||||
const { data } = await axios.get('ItemTypes', {
|
|
||||||
params: { filter: JSON.stringify(filter) },
|
|
||||||
});
|
|
||||||
itemTypesOptions.value = data;
|
|
||||||
} catch (err) {
|
|
||||||
console.error('Error fetching item types', err);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const getCategoryClass = (category, params) => {
|
|
||||||
if (category.id === params?.categoryFk) {
|
|
||||||
return 'active';
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const getSelectedTagValues = async (tag) => {
|
|
||||||
try {
|
|
||||||
tag.value = null;
|
|
||||||
const filter = {
|
|
||||||
fields: ['value'],
|
|
||||||
order: 'value ASC',
|
|
||||||
limit: 30,
|
|
||||||
};
|
|
||||||
|
|
||||||
const params = { filter: JSON.stringify(filter) };
|
|
||||||
const { data } = await axios.get(`Tags/${tag.selectedTag.id}/filterValue`, {
|
|
||||||
params,
|
|
||||||
});
|
|
||||||
tag.valueOptions = data;
|
|
||||||
} catch (err) {
|
|
||||||
console.error('Error getting selected tag values');
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const removeTag = (index, params, search) => {
|
|
||||||
(tagValues.value || []).splice(index, 1);
|
|
||||||
applyTags(params, search);
|
|
||||||
};
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<FetchData
|
|
||||||
url="ItemCategories"
|
|
||||||
limit="30"
|
|
||||||
auto-load
|
|
||||||
@on-fetch="(data) => (itemCategories = data)"
|
|
||||||
/>
|
|
||||||
<FetchData
|
<FetchData
|
||||||
url="TicketRequests/getItemTypeWorker"
|
url="TicketRequests/getItemTypeWorker"
|
||||||
limit="30"
|
limit="30"
|
||||||
|
@ -150,102 +35,12 @@ const removeTag = (index, params, search) => {
|
||||||
:filter="{ fields: ['id', 'name', 'nickname'], order: 'name ASC', limit: 30 }"
|
:filter="{ fields: ['id', 'name', 'nickname'], order: 'name ASC', limit: 30 }"
|
||||||
@on-fetch="(data) => (suppliersOptions = data)"
|
@on-fetch="(data) => (suppliersOptions = data)"
|
||||||
/>
|
/>
|
||||||
<FetchData
|
<ItemsFilterPanel :data-key="dataKey" :custom-tags="['tags']">
|
||||||
url="Tags"
|
|
||||||
:filter="{ fields: ['id', 'name', 'isFree'] }"
|
|
||||||
auto-load
|
|
||||||
limit="30"
|
|
||||||
@on-fetch="(data) => (tagOptions = data)"
|
|
||||||
/>
|
|
||||||
<VnFilterPanel
|
|
||||||
:data-key="props.dataKey"
|
|
||||||
:expr-builder="exprBuilder"
|
|
||||||
:custom-tags="['tags']"
|
|
||||||
@init="onFilterInit"
|
|
||||||
@remove="clearFilter"
|
|
||||||
>
|
|
||||||
<template #tags="{ tag, formatFn }">
|
|
||||||
<strong v-if="tag.label === 'categoryFk'">
|
|
||||||
{{ t(selectedCategory?.name || '') }}
|
|
||||||
</strong>
|
|
||||||
<strong v-else-if="tag.label === 'typeFk'">
|
|
||||||
{{ t(selectedType?.name || '') }}
|
|
||||||
</strong>
|
|
||||||
<div v-else class="q-gutter-x-xs">
|
|
||||||
<strong>{{ t(`params.${tag.label}`) }}: </strong>
|
|
||||||
<span>{{ formatFn(tag.value) }}</span>
|
|
||||||
</div>
|
|
||||||
</template>
|
|
||||||
<template #customTags="{ tags: customTags, params }">
|
|
||||||
<template v-for="tag in customTags" :key="tag.label">
|
|
||||||
<VnFilterPanelChip
|
|
||||||
v-for="chip in tag.value"
|
|
||||||
:key="chip"
|
|
||||||
removable
|
|
||||||
@remove="removeTagChip(chip, params, searchFn)"
|
|
||||||
>
|
|
||||||
<div class="q-gutter-x-xs">
|
|
||||||
<strong>{{ chip.tagName }}: </strong>
|
|
||||||
<span>"{{ chip.value }}"</span>
|
|
||||||
</div>
|
|
||||||
</VnFilterPanelChip>
|
|
||||||
</template>
|
|
||||||
</template>
|
|
||||||
<template #body="{ params, searchFn }">
|
<template #body="{ params, searchFn }">
|
||||||
<QItem class="category-filter q-mt-md">
|
|
||||||
<QBtn
|
|
||||||
dense
|
|
||||||
flat
|
|
||||||
round
|
|
||||||
v-for="category in categoryList"
|
|
||||||
:key="category.name"
|
|
||||||
:class="['category', getCategoryClass(category, params)]"
|
|
||||||
:icon="category.icon"
|
|
||||||
@click="selectCategory(params, category.id, searchFn)"
|
|
||||||
>
|
|
||||||
<QTooltip>
|
|
||||||
{{ t(category.name) }}
|
|
||||||
</QTooltip>
|
|
||||||
</QBtn>
|
|
||||||
</QItem>
|
|
||||||
<QItem class="q-my-md">
|
<QItem class="q-my-md">
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
<VnSelectFilter
|
<VnSelectFilter
|
||||||
:label="t('params.typeFk')"
|
:label="t('components.itemsFilterPanel.salesPersonFk')"
|
||||||
v-model="params.typeFk"
|
|
||||||
:options="itemTypesOptions"
|
|
||||||
option-value="id"
|
|
||||||
option-label="name"
|
|
||||||
dense
|
|
||||||
outlined
|
|
||||||
rounded
|
|
||||||
use-input
|
|
||||||
:disable="!selectedCategoryFk"
|
|
||||||
@update:model-value="
|
|
||||||
(value) => {
|
|
||||||
selectedTypeFk = value;
|
|
||||||
searchFn();
|
|
||||||
}
|
|
||||||
"
|
|
||||||
>
|
|
||||||
<template #option="{ itemProps, opt }">
|
|
||||||
<QItem v-bind="itemProps">
|
|
||||||
<QItemSection>
|
|
||||||
<QItemLabel>{{ opt.name }}</QItemLabel>
|
|
||||||
<QItemLabel caption>
|
|
||||||
{{ opt.categoryName }}
|
|
||||||
</QItemLabel>
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
</template>
|
|
||||||
</VnSelectFilter>
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
<QSeparator />
|
|
||||||
<QItem class="q-my-md">
|
|
||||||
<QItemSection>
|
|
||||||
<VnSelectFilter
|
|
||||||
:label="t('params.salesPersonFk')"
|
|
||||||
v-model="params.salesPersonFk"
|
v-model="params.salesPersonFk"
|
||||||
:options="itemTypeWorkersOptions"
|
:options="itemTypeWorkersOptions"
|
||||||
option-value="id"
|
option-value="id"
|
||||||
|
@ -261,7 +56,7 @@ const removeTag = (index, params, search) => {
|
||||||
<QItem class="q-my-md">
|
<QItem class="q-my-md">
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
<VnSelectFilter
|
<VnSelectFilter
|
||||||
:label="t('params.supplier')"
|
:label="t('components.itemsFilterPanel.supplierFk')"
|
||||||
v-model="params.supplierFk"
|
v-model="params.supplierFk"
|
||||||
:options="suppliersOptions"
|
:options="suppliersOptions"
|
||||||
option-value="id"
|
option-value="id"
|
||||||
|
@ -288,7 +83,7 @@ const removeTag = (index, params, search) => {
|
||||||
<QItem class="q-my-md">
|
<QItem class="q-my-md">
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
<VnInputDate
|
<VnInputDate
|
||||||
:label="t('params.from')"
|
:label="t('components.itemsFilterPanel.from')"
|
||||||
v-model="params.from"
|
v-model="params.from"
|
||||||
is-outlined
|
is-outlined
|
||||||
@update:model-value="searchFn()"
|
@update:model-value="searchFn()"
|
||||||
|
@ -298,7 +93,7 @@ const removeTag = (index, params, search) => {
|
||||||
<QItem class="q-my-md">
|
<QItem class="q-my-md">
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
<VnInputDate
|
<VnInputDate
|
||||||
:label="t('params.to')"
|
:label="t('components.itemsFilterPanel.to')"
|
||||||
v-model="params.to"
|
v-model="params.to"
|
||||||
is-outlined
|
is-outlined
|
||||||
@update:model-value="searchFn()"
|
@update:model-value="searchFn()"
|
||||||
|
@ -308,7 +103,7 @@ const removeTag = (index, params, search) => {
|
||||||
<QItem>
|
<QItem>
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
<QCheckbox
|
<QCheckbox
|
||||||
:label="t('params.active')"
|
:label="t('components.itemsFilterPanel.active')"
|
||||||
v-model="params.active"
|
v-model="params.active"
|
||||||
toggle-indeterminate
|
toggle-indeterminate
|
||||||
@update:model-value="searchFn()"
|
@update:model-value="searchFn()"
|
||||||
|
@ -316,7 +111,7 @@ const removeTag = (index, params, search) => {
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
<QCheckbox
|
<QCheckbox
|
||||||
:label="t('params.visible')"
|
:label="t('components.itemsFilterPanel.visible')"
|
||||||
v-model="params.visible"
|
v-model="params.visible"
|
||||||
toggle-indeterminate
|
toggle-indeterminate
|
||||||
@update:model-value="searchFn()"
|
@update:model-value="searchFn()"
|
||||||
|
@ -326,149 +121,13 @@ const removeTag = (index, params, search) => {
|
||||||
<QItem>
|
<QItem>
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
<QCheckbox
|
<QCheckbox
|
||||||
:label="t('params.floramondo')"
|
:label="t('components.itemsFilterPanel.floramondo')"
|
||||||
v-model="params.floramondo"
|
v-model="params.floramondo"
|
||||||
toggle-indeterminate
|
toggle-indeterminate
|
||||||
@update:model-value="searchFn()"
|
@update:model-value="searchFn()"
|
||||||
/>
|
/>
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
|
|
||||||
<QItem
|
|
||||||
v-for="(value, index) in tagValues"
|
|
||||||
:key="value"
|
|
||||||
class="q-mt-md filter-value"
|
|
||||||
>
|
|
||||||
<QItemSection class="col">
|
|
||||||
<VnSelectFilter
|
|
||||||
:label="t('params.tag')"
|
|
||||||
v-model="value.selectedTag"
|
|
||||||
:options="tagOptions"
|
|
||||||
option-label="name"
|
|
||||||
dense
|
|
||||||
outlined
|
|
||||||
rounded
|
|
||||||
:emit-value="false"
|
|
||||||
use-input
|
|
||||||
:is-clearable="false"
|
|
||||||
@update:model-value="getSelectedTagValues(value)"
|
|
||||||
/>
|
|
||||||
</QItemSection>
|
|
||||||
<QItemSection class="col">
|
|
||||||
<VnSelectFilter
|
|
||||||
v-if="!value?.selectedTag?.isFree && value.valueOptions"
|
|
||||||
:label="t('params.value')"
|
|
||||||
v-model="value.value"
|
|
||||||
:options="value.valueOptions || []"
|
|
||||||
option-value="value"
|
|
||||||
option-label="value"
|
|
||||||
dense
|
|
||||||
outlined
|
|
||||||
rounded
|
|
||||||
emit-value
|
|
||||||
use-input
|
|
||||||
:disable="!value"
|
|
||||||
:is-clearable="false"
|
|
||||||
class="filter-input"
|
|
||||||
@update:model-value="applyTags(params, searchFn)"
|
|
||||||
/>
|
|
||||||
<VnInput
|
|
||||||
v-else
|
|
||||||
v-model="value.value"
|
|
||||||
:label="t('params.value')"
|
|
||||||
:disable="!value"
|
|
||||||
is-outlined
|
|
||||||
class="filter-input"
|
|
||||||
:is-clearable="false"
|
|
||||||
@keyup.enter="applyTags(params, searchFn)"
|
|
||||||
/>
|
|
||||||
</QItemSection>
|
|
||||||
<QIcon
|
|
||||||
name="delete"
|
|
||||||
class="filter-icon"
|
|
||||||
@click="removeTag(index, params, searchFn)"
|
|
||||||
/>
|
|
||||||
</QItem>
|
|
||||||
<QItem class="q-mt-lg">
|
|
||||||
<QIcon
|
|
||||||
name="add_circle"
|
|
||||||
class="filter-icon"
|
|
||||||
@click="tagValues.push({})"
|
|
||||||
/>
|
|
||||||
</QItem>
|
|
||||||
</template>
|
</template>
|
||||||
</VnFilterPanel>
|
</ItemsFilterPanel>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
.category-filter {
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
justify-content: center;
|
|
||||||
gap: 12px;
|
|
||||||
|
|
||||||
.category {
|
|
||||||
padding: 8px;
|
|
||||||
width: 60px;
|
|
||||||
height: 60px;
|
|
||||||
font-size: 1.4rem;
|
|
||||||
background-color: var(--vn-accent-color);
|
|
||||||
|
|
||||||
&.active {
|
|
||||||
background-color: $primary;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.filter-icon {
|
|
||||||
font-size: 24px;
|
|
||||||
color: $primary;
|
|
||||||
padding: 0 4px;
|
|
||||||
cursor: pointer;
|
|
||||||
}
|
|
||||||
|
|
||||||
.filter-input {
|
|
||||||
flex-shrink: 1;
|
|
||||||
min-width: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.filter-value {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
||||||
<i18n>
|
|
||||||
en:
|
|
||||||
params:
|
|
||||||
supplier: Supplier
|
|
||||||
from: From
|
|
||||||
to: To
|
|
||||||
active: Is active
|
|
||||||
visible: Is visible
|
|
||||||
floramondo: Is floramondo
|
|
||||||
salesPersonFk: Buyer
|
|
||||||
categoryFk: Category
|
|
||||||
typeFk: Type
|
|
||||||
tag: Tag
|
|
||||||
value: Value
|
|
||||||
es:
|
|
||||||
params:
|
|
||||||
supplier: Proveedor
|
|
||||||
from: Desde
|
|
||||||
to: Hasta
|
|
||||||
active: Activo
|
|
||||||
visible: Visible
|
|
||||||
floramondo: Floramondo
|
|
||||||
salesPersonFk: Comprador
|
|
||||||
categoryFk: Categoría
|
|
||||||
typeFk: Tipo
|
|
||||||
tag: Etiqueta
|
|
||||||
value: Valor
|
|
||||||
Plant: Planta
|
|
||||||
Flower: Flor
|
|
||||||
Handmade: Confección
|
|
||||||
Green: Verde
|
|
||||||
Accessories: Complemento
|
|
||||||
Fruit: Fruta
|
|
||||||
</i18n>
|
|
||||||
|
|
|
@ -51,7 +51,6 @@ const exprBuilder = (param, value) => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const params = reactive({});
|
const params = reactive({});
|
||||||
|
|
||||||
const arrayData = useArrayData('ItemFixedPrices', {
|
const arrayData = useArrayData('ItemFixedPrices', {
|
||||||
url: 'FixedPrices/filter',
|
url: 'FixedPrices/filter',
|
||||||
userParams: params,
|
userParams: params,
|
||||||
|
|
Loading…
Reference in New Issue