Merge branch 'dev' into Fix-TicketSummaryAddress
gitea/salix-front/pipeline/pr-dev This commit looks good Details

This commit is contained in:
Jon Elias 2025-01-28 07:13:25 +00:00
commit 4ecce6af0a
1 changed files with 24 additions and 24 deletions

View File

@ -11,6 +11,7 @@ import { useStateStore } from 'stores/useStateStore';
import { dashIfEmpty } from 'src/filters';
import axios from 'axios';
import VnTable from 'src/components/VnTable/VnTable.vue';
import RightMenu from 'src/components/common/RightMenu.vue';
const route = useRoute();
const stateStore = useStateStore();
@ -23,7 +24,7 @@ watch(
async () => {
await nextTick();
salesRef.value?.fetch();
}
},
);
const salesFilter = computed(() => ({
@ -100,10 +101,8 @@ onMounted(() => (stateStore.rightDrawer = true));
@on-fetch="(data) => applyVolumes(data)"
auto-load
/>
<Teleport
to="#right-panel"
v-if="stateStore.isHeaderMounted() && packingTypeVolume.length"
>
<RightMenu>
<template #right-panel>
<QCard
v-for="(packingType, index) in packingTypeVolume"
:key="index"
@ -122,7 +121,8 @@ onMounted(() => (stateStore.rightDrawer = true));
<span> {{ t('volume.volume') }}: {{ packingType.volume }} </span>
</QCardSection>
</QCard>
</Teleport>
</template>
</RightMenu>
<VnTable
ref="tableRef"
data-key="TicketVolume"