Merge branch 'dev' into Fix-TicketSummaryAddress
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
gitea/salix-front/pipeline/pr-dev This commit looks good
Details
This commit is contained in:
commit
4ecce6af0a
|
@ -11,6 +11,7 @@ import { useStateStore } from 'stores/useStateStore';
|
||||||
import { dashIfEmpty } from 'src/filters';
|
import { dashIfEmpty } from 'src/filters';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import VnTable from 'src/components/VnTable/VnTable.vue';
|
import VnTable from 'src/components/VnTable/VnTable.vue';
|
||||||
|
import RightMenu from 'src/components/common/RightMenu.vue';
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const stateStore = useStateStore();
|
const stateStore = useStateStore();
|
||||||
|
@ -23,7 +24,7 @@ watch(
|
||||||
async () => {
|
async () => {
|
||||||
await nextTick();
|
await nextTick();
|
||||||
salesRef.value?.fetch();
|
salesRef.value?.fetch();
|
||||||
}
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
const salesFilter = computed(() => ({
|
const salesFilter = computed(() => ({
|
||||||
|
@ -100,10 +101,8 @@ onMounted(() => (stateStore.rightDrawer = true));
|
||||||
@on-fetch="(data) => applyVolumes(data)"
|
@on-fetch="(data) => applyVolumes(data)"
|
||||||
auto-load
|
auto-load
|
||||||
/>
|
/>
|
||||||
<Teleport
|
<RightMenu>
|
||||||
to="#right-panel"
|
<template #right-panel>
|
||||||
v-if="stateStore.isHeaderMounted() && packingTypeVolume.length"
|
|
||||||
>
|
|
||||||
<QCard
|
<QCard
|
||||||
v-for="(packingType, index) in packingTypeVolume"
|
v-for="(packingType, index) in packingTypeVolume"
|
||||||
:key="index"
|
:key="index"
|
||||||
|
@ -122,7 +121,8 @@ onMounted(() => (stateStore.rightDrawer = true));
|
||||||
<span> {{ t('volume.volume') }}: {{ packingType.volume }} </span>
|
<span> {{ t('volume.volume') }}: {{ packingType.volume }} </span>
|
||||||
</QCardSection>
|
</QCardSection>
|
||||||
</QCard>
|
</QCard>
|
||||||
</Teleport>
|
</template>
|
||||||
|
</RightMenu>
|
||||||
<VnTable
|
<VnTable
|
||||||
ref="tableRef"
|
ref="tableRef"
|
||||||
data-key="TicketVolume"
|
data-key="TicketVolume"
|
||||||
|
|
Loading…
Reference in New Issue