forked from verdnatura/salix-front
Fix shelving pages
This commit is contained in:
parent
0dbb23075b
commit
4fd2b05137
|
@ -84,7 +84,7 @@ onUnmounted(() => {
|
||||||
const isLoading = ref(false);
|
const isLoading = ref(false);
|
||||||
// Si elegimos observar los cambios del form significa que inicialmente las actions estaran deshabilitadas
|
// Si elegimos observar los cambios del form significa que inicialmente las actions estaran deshabilitadas
|
||||||
const hasChanges = ref(!$props.observeFormChanges);
|
const hasChanges = ref(!$props.observeFormChanges);
|
||||||
const originalData = ref();
|
const originalData = ref({...$props.formInitialData});
|
||||||
const formData = computed(() => state.get($props.model));
|
const formData = computed(() => state.get($props.model));
|
||||||
const formUrl = computed(() => $props.url);
|
const formUrl = computed(() => $props.url);
|
||||||
|
|
||||||
|
@ -141,7 +141,9 @@ function reset() {
|
||||||
originalData.value = JSON.parse(JSON.stringify(originalData.value));
|
originalData.value = JSON.parse(JSON.stringify(originalData.value));
|
||||||
|
|
||||||
emit('onFetch', state.get($props.model));
|
emit('onFetch', state.get($props.model));
|
||||||
|
if ($props.observeFormChanges) {
|
||||||
hasChanges.value = false;
|
hasChanges.value = false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// eslint-disable-next-line vue/no-dupe-keys
|
// eslint-disable-next-line vue/no-dupe-keys
|
||||||
|
@ -166,7 +168,7 @@ watch(formUrl, async () => {
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<QBanner v-if="hasChanges" class="text-white bg-warning">
|
<QBanner v-if="$props.observeFormChanges && hasChanges" class="text-white bg-warning">
|
||||||
<QIcon name="warning" size="md" class="q-mr-md" />
|
<QIcon name="warning" size="md" class="q-mr-md" />
|
||||||
<span>{{ t('globals.changesToSave') }}</span>
|
<span>{{ t('globals.changesToSave') }}</span>
|
||||||
</QBanner>
|
</QBanner>
|
||||||
|
|
|
@ -453,6 +453,7 @@ export default {
|
||||||
list: {
|
list: {
|
||||||
parking: 'Parking',
|
parking: 'Parking',
|
||||||
priority: 'Priority',
|
priority: 'Priority',
|
||||||
|
newShelving: 'New Shelving'
|
||||||
},
|
},
|
||||||
summary: {
|
summary: {
|
||||||
code: 'Code',
|
code: 'Code',
|
||||||
|
|
|
@ -455,6 +455,7 @@ export default {
|
||||||
list: {
|
list: {
|
||||||
parking: 'Parking',
|
parking: 'Parking',
|
||||||
priority: 'Prioridad',
|
priority: 'Prioridad',
|
||||||
|
newShelving: 'Nuevo Carro'
|
||||||
},
|
},
|
||||||
summary: {
|
summary: {
|
||||||
code: 'Código',
|
code: 'Código',
|
||||||
|
|
|
@ -15,14 +15,7 @@ const stateStore = useStateStore();
|
||||||
</QDrawer>
|
</QDrawer>
|
||||||
<QPageContainer>
|
<QPageContainer>
|
||||||
<QPage>
|
<QPage>
|
||||||
<QToolbar class="bg-vn-dark justify-end">
|
|
||||||
<div id="st-data"></div>
|
|
||||||
<QSpace />
|
|
||||||
<div id="st-actions"></div>
|
|
||||||
</QToolbar>
|
|
||||||
<div class="q-pa-md">
|
|
||||||
<RouterView></RouterView>
|
<RouterView></RouterView>
|
||||||
</div>
|
|
||||||
</QPage>
|
</QPage>
|
||||||
</QPageContainer>
|
</QPageContainer>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,30 +1,23 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import { useRoute } from 'vue-router';
|
||||||
import VnRow from 'components/ui/VnRow.vue';
|
import VnRow from 'components/ui/VnRow.vue';
|
||||||
import FetchData from 'components/FetchData.vue';
|
import FetchData from 'components/FetchData.vue';
|
||||||
import { computed, ref } from 'vue';
|
import FormModel from 'components/FormModel.vue';
|
||||||
|
|
||||||
const props = defineProps({
|
|
||||||
data: {
|
|
||||||
type: Object,
|
|
||||||
default: () => ({}),
|
|
||||||
},
|
|
||||||
filter: {
|
|
||||||
type: Function,
|
|
||||||
default: () => {},
|
|
||||||
},
|
|
||||||
validate: {
|
|
||||||
type: Function,
|
|
||||||
default: () => {},
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
const data = computed(() => props.data);
|
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
const route = useRoute();
|
||||||
|
const shelvingId = route.params?.id || null;
|
||||||
|
const isNew = Boolean(!shelvingId);
|
||||||
|
const defaultInitialData = {
|
||||||
|
parkingFk: null,
|
||||||
|
priority: 0,
|
||||||
|
code: null,
|
||||||
|
isRecyclable: false,
|
||||||
|
}
|
||||||
|
|
||||||
const parkingFilter = { fields: ['id', 'code'] };
|
const parkingFilter = { fields: ['id', 'code'] };
|
||||||
|
|
||||||
const parkingList = ref([]);
|
const parkingList = ref([]);
|
||||||
const parkingListCopy = ref([]);
|
const parkingListCopy = ref([]);
|
||||||
|
|
||||||
|
@ -47,20 +40,51 @@ const parkingSelectFilter = {
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const shelvingFilter = {
|
||||||
|
include: [
|
||||||
|
{
|
||||||
|
relation: 'worker',
|
||||||
|
scope: {
|
||||||
|
fields: ['id'],
|
||||||
|
include: {
|
||||||
|
relation: 'user',
|
||||||
|
scope: { fields: ['nickname'] },
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{ relation: 'parking' },
|
||||||
|
],
|
||||||
|
};
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
|
<QToolbar class="bg-vn-dark justify-end">
|
||||||
|
<div id="st-data"></div>
|
||||||
|
<QSpace />
|
||||||
|
<div id="st-actions"></div>
|
||||||
|
</QToolbar>
|
||||||
<FetchData
|
<FetchData
|
||||||
url="Parkings"
|
url="Parkings"
|
||||||
:filter="parkingFilter"
|
:filter="parkingFilter"
|
||||||
@on-fetch="setParkingList"
|
@on-fetch="setParkingList"
|
||||||
auto-load
|
auto-load
|
||||||
/>
|
/>
|
||||||
|
<FormModel
|
||||||
|
:url="isNew ? null : `Shelvings/${shelvingId}`"
|
||||||
|
:url-create="isNew ? 'Shelvings' : null"
|
||||||
|
:observe-form-changes="!isNew"
|
||||||
|
:filter="shelvingFilter"
|
||||||
|
model="shelving"
|
||||||
|
:auto-load="!isNew"
|
||||||
|
:form-initial-data="defaultInitialData"
|
||||||
|
>
|
||||||
|
<template #form="{ data, validate, filter }">
|
||||||
<VnRow class="row q-gutter-md q-mb-md">
|
<VnRow class="row q-gutter-md q-mb-md">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<QInput
|
<QInput
|
||||||
v-model="data.code"
|
v-model="data.code"
|
||||||
:label="t('shelving.basicData.code')"
|
:label="t('shelving.basicData.code')"
|
||||||
:rules="props.validate('Shelving.code')"
|
:rules="validate('Shelving.code')"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
|
@ -74,9 +98,9 @@ const parkingSelectFilter = {
|
||||||
map-options
|
map-options
|
||||||
use-input
|
use-input
|
||||||
@filter="
|
@filter="
|
||||||
(value, update) => props.filter(value, update, parkingSelectFilter)
|
(value, update) => filter(value, update, parkingSelectFilter)
|
||||||
"
|
"
|
||||||
:rules="props.validate('Shelving.parkingFk')"
|
:rules="validate('Shelving.parkingFk')"
|
||||||
:input-debounce="0"
|
:input-debounce="0"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
@ -86,15 +110,17 @@ const parkingSelectFilter = {
|
||||||
<QInput
|
<QInput
|
||||||
v-model="data.priority"
|
v-model="data.priority"
|
||||||
:label="t('shelving.basicData.priority')"
|
:label="t('shelving.basicData.priority')"
|
||||||
:rules="props.validate('Shelving.priority')"
|
:rules="validate('Shelving.priority')"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<QCheckbox
|
<QCheckbox
|
||||||
v-model="data.isRecyclable"
|
v-model="data.isRecyclable"
|
||||||
:label="t('shelving.basicData.recyclable')"
|
:label="t('shelving.basicData.recyclable')"
|
||||||
:rules="props.validate('Shelving.isRecyclable')"
|
:rules="validate('Shelving.isRecyclable')"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</VnRow>
|
</VnRow>
|
||||||
|
</template>
|
||||||
|
</FormModel>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import {computed, onMounted, onUnmounted} from 'vue';
|
import { computed, onMounted, onUnmounted } from 'vue';
|
||||||
import {useRoute, useRouter} from 'vue-router';
|
import { useRoute, useRouter } from 'vue-router';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useStateStore } from 'stores/useStateStore';
|
||||||
import CardSummary from 'components/ui/CardSummary.vue';
|
import CardSummary from 'components/ui/CardSummary.vue';
|
||||||
import VnLv from 'components/ui/VnLv.vue';
|
import VnLv from 'components/ui/VnLv.vue';
|
||||||
import ShelvingFilter from 'pages/Shelving/Card/ShelvingFilter.vue';
|
import ShelvingFilter from 'pages/Shelving/Card/ShelvingFilter.vue';
|
||||||
import { useStateStore } from 'stores/useStateStore';
|
|
||||||
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
id: {
|
id: {
|
||||||
|
@ -17,10 +17,16 @@ const route = useRoute();
|
||||||
const stateStore = useStateStore();
|
const stateStore = useStateStore();
|
||||||
const router = useRouter();
|
const router = useRouter();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
onMounted(() => (stateStore.rightDrawer = false));
|
|
||||||
onUnmounted(() => (stateStore.rightDrawer = false));
|
|
||||||
|
|
||||||
const entityId = computed(() => $props.id || route.params.id);
|
const entityId = computed(() => $props.id || route.params.id);
|
||||||
|
const isDialog = Boolean($props.id);
|
||||||
|
const hideRightDrawer = () => {
|
||||||
|
if (!isDialog) {
|
||||||
|
stateStore.rightDrawer = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
onMounted(hideRightDrawer);
|
||||||
|
onUnmounted(hideRightDrawer);
|
||||||
const filter = {
|
const filter = {
|
||||||
include: [
|
include: [
|
||||||
{
|
{
|
||||||
|
@ -39,7 +45,7 @@ const filter = {
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<template v-if="stateStore.isHeaderMounted()">
|
<template v-if="!isDialog && stateStore.isHeaderMounted()">
|
||||||
<Teleport to="#actions-append">
|
<Teleport to="#actions-append">
|
||||||
<div class="row q-gutter-x-sm">
|
<div class="row q-gutter-x-sm">
|
||||||
<QBtn
|
<QBtn
|
||||||
|
@ -56,6 +62,7 @@ const filter = {
|
||||||
</div>
|
</div>
|
||||||
</Teleport>
|
</Teleport>
|
||||||
</template>
|
</template>
|
||||||
|
<div class="q-pa-md">
|
||||||
<CardSummary ref="summary" :url="`Shelvings/${entityId}`" :filter="filter">
|
<CardSummary ref="summary" :url="`Shelvings/${entityId}`" :filter="filter">
|
||||||
<template #header="{ entity }">
|
<template #header="{ entity }">
|
||||||
<div>{{ entity.code }}</div>
|
<div>{{ entity.code }}</div>
|
||||||
|
@ -70,7 +77,10 @@ const filter = {
|
||||||
:label="t('shelving.summary.parking')"
|
:label="t('shelving.summary.parking')"
|
||||||
:value="entity.parking?.code"
|
:value="entity.parking?.code"
|
||||||
/>
|
/>
|
||||||
<VnLv :label="t('shelving.summary.priority')" :value="entity.priority" />
|
<VnLv
|
||||||
|
:label="t('shelving.summary.priority')"
|
||||||
|
:value="entity.priority"
|
||||||
|
/>
|
||||||
<VnLv
|
<VnLv
|
||||||
:label="t('shelving.summary.worker')"
|
:label="t('shelving.summary.worker')"
|
||||||
:value="entity.worker?.user?.nickname"
|
:value="entity.worker?.user?.nickname"
|
||||||
|
@ -82,7 +92,14 @@ const filter = {
|
||||||
</QCard>
|
</QCard>
|
||||||
</template>
|
</template>
|
||||||
</CardSummary>
|
</CardSummary>
|
||||||
<QDrawer v-model="stateStore.rightDrawer" side="right" :width="256" show-if-above>
|
</div>
|
||||||
|
<QDrawer
|
||||||
|
v-if="!isDialog"
|
||||||
|
v-model="stateStore.rightDrawer"
|
||||||
|
side="right"
|
||||||
|
:width="256"
|
||||||
|
show-if-above
|
||||||
|
>
|
||||||
<QScrollArea class="fit text-grey-8">
|
<QScrollArea class="fit text-grey-8">
|
||||||
<ShelvingFilter
|
<ShelvingFilter
|
||||||
data-key="ShelvingList"
|
data-key="ShelvingList"
|
||||||
|
|
|
@ -1,38 +0,0 @@
|
||||||
<script setup>
|
|
||||||
import { useRoute } from 'vue-router';
|
|
||||||
import FormModel from 'components/FormModel.vue';
|
|
||||||
import ShelvingForm from "pages/Shelving/Card/ShelvingForm.vue";
|
|
||||||
|
|
||||||
const route = useRoute();
|
|
||||||
|
|
||||||
const shelvingId = route.params?.id || null;
|
|
||||||
|
|
||||||
const shelvingFilter = {
|
|
||||||
include: [
|
|
||||||
{
|
|
||||||
relation: 'worker',
|
|
||||||
scope: {
|
|
||||||
fields: ['id'],
|
|
||||||
include: {
|
|
||||||
relation: 'user',
|
|
||||||
scope: { fields: ['nickname'] },
|
|
||||||
},
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{ relation: 'parking' },
|
|
||||||
],
|
|
||||||
};
|
|
||||||
</script>
|
|
||||||
<template>
|
|
||||||
<FormModel
|
|
||||||
:url="`Shelvings/${shelvingId}`"
|
|
||||||
:url-update="`Shelvings/${shelvingId}`"
|
|
||||||
:filter="shelvingFilter"
|
|
||||||
model="shelving"
|
|
||||||
auto-load
|
|
||||||
>
|
|
||||||
<template #form="{ data, validate, filter }">
|
|
||||||
<ShelvingForm :data="data" :validate="validate" :filter="filter" />
|
|
||||||
</template>
|
|
||||||
</FormModel>
|
|
||||||
</template>
|
|
|
@ -1,69 +0,0 @@
|
||||||
<script setup>
|
|
||||||
import ShelvingForm from 'pages/Shelving/Card/ShelvingForm.vue';
|
|
||||||
import { useI18n } from 'vue-i18n';
|
|
||||||
import { useValidator } from 'composables/useValidator';
|
|
||||||
import { ref } from 'vue';
|
|
||||||
import axios from 'axios';
|
|
||||||
import {useRouter} from "vue-router";
|
|
||||||
|
|
||||||
const { t } = useI18n();
|
|
||||||
const { validate } = useValidator();
|
|
||||||
|
|
||||||
const isLoading = ref(false);
|
|
||||||
const formData = ref({});
|
|
||||||
const router = useRouter();
|
|
||||||
|
|
||||||
async function save() {
|
|
||||||
isLoading.value = true;
|
|
||||||
try {
|
|
||||||
await axios.patch('Shelvings', formData.value);
|
|
||||||
} catch (e) { /* empty */ }
|
|
||||||
isLoading.value = false;
|
|
||||||
}
|
|
||||||
|
|
||||||
function filter(value, update, filterOptions) {
|
|
||||||
update(
|
|
||||||
() => {
|
|
||||||
const { options, filterFn } = filterOptions;
|
|
||||||
|
|
||||||
options.value = filterFn(options, value);
|
|
||||||
},
|
|
||||||
(ref) => {
|
|
||||||
ref.setOptionIndex(-1);
|
|
||||||
ref.moveOptionSelection(1, true);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
<template>
|
|
||||||
<div class="column items-center">
|
|
||||||
<QForm v-if="formData" @submit.prevent class="q-pa-md" id="formModel">
|
|
||||||
<QCard>
|
|
||||||
<ShelvingForm :data="formData" :validate="validate" :filter="filter" />
|
|
||||||
</QCard>
|
|
||||||
<QBtn
|
|
||||||
:label="t('globals.create')"
|
|
||||||
type="submit"
|
|
||||||
color="primary"
|
|
||||||
class="q-mt-md"
|
|
||||||
@click="save()"
|
|
||||||
/>
|
|
||||||
<QBtn :label="t('globals.cancel')" class="q-mt-md q-ml-md" flat @click.stop="router.push({ name: 'ShelvingList' })" />
|
|
||||||
</QForm>
|
|
||||||
</div>
|
|
||||||
<QInnerLoading
|
|
||||||
:showing="isLoading"
|
|
||||||
:label="t('globals.pleaseWait')"
|
|
||||||
color="primary"
|
|
||||||
/>
|
|
||||||
</template>
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
#formModel {
|
|
||||||
max-width: 800px;
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
.q-card {
|
|
||||||
padding: 32px;
|
|
||||||
}
|
|
||||||
</style>
|
|
|
@ -123,7 +123,7 @@ function exprBuilder(param, value) {
|
||||||
<RouterLink :to="{ name: 'ShelvingCreate' }">
|
<RouterLink :to="{ name: 'ShelvingCreate' }">
|
||||||
<QBtn fab icon="add" color="primary" />
|
<QBtn fab icon="add" color="primary" />
|
||||||
<QTooltip>
|
<QTooltip>
|
||||||
{{ t('supplier.list.newSupplier') }}
|
{{ t('shelving.list.newShelving') }}
|
||||||
</QTooltip>
|
</QTooltip>
|
||||||
</RouterLink>
|
</RouterLink>
|
||||||
</QPageSticky>
|
</QPageSticky>
|
||||||
|
|
|
@ -35,7 +35,7 @@ export default {
|
||||||
meta: {
|
meta: {
|
||||||
title: 'create',
|
title: 'create',
|
||||||
},
|
},
|
||||||
component: () => import('src/pages/Shelving/ShelvingCreate.vue'),
|
component: () => import('src/pages/Shelving/Card/ShelvingForm.vue'),
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -62,7 +62,7 @@ export default {
|
||||||
icon: 'vn:settings',
|
icon: 'vn:settings',
|
||||||
roles: ['salesPerson'],
|
roles: ['salesPerson'],
|
||||||
},
|
},
|
||||||
component: () => import('pages/Shelving/ShelvingBasicData.vue'),
|
component: () => import('pages/Shelving/Card/ShelvingForm.vue'),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'ShelvingLog',
|
name: 'ShelvingLog',
|
||||||
|
|
Loading…
Reference in New Issue