This commit is contained in:
parent
1eedb6f79b
commit
36d166ab44
|
@ -1,15 +1,16 @@
|
|||
<script setup>
|
||||
import { ref } from 'vue';
|
||||
import { onMounted, ref } from 'vue';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
import axios from 'axios';
|
||||
import { useDialogPluginComponent } from 'quasar';
|
||||
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||
import FetchData from 'components/FetchData.vue';
|
||||
import VnPaginate from 'src/components/ui/VnPaginate.vue';
|
||||
|
||||
const editableStates = ref([]);
|
||||
const { t } = useI18n();
|
||||
const showChangeStateDialog = ref(false);
|
||||
const newState = ref(null);
|
||||
const resultSplit = ref([]);
|
||||
const { dialogRef, onDialogHide } = useDialogPluginComponent();
|
||||
const $props = defineProps({
|
||||
tickets: {
|
||||
|
@ -17,6 +18,11 @@ const $props = defineProps({
|
|||
default: () => [],
|
||||
},
|
||||
});
|
||||
const ticketsSelected = ref([]);
|
||||
onMounted(() => {
|
||||
ticketsSelected.value = [...new Set($props.tickets.map(({ ticketFk }) => ticketFk))];
|
||||
});
|
||||
|
||||
const updateState = async () => {
|
||||
try {
|
||||
showChangeStateDialog.value = true;
|
||||
|
@ -33,15 +39,47 @@ const updateState = async () => {
|
|||
dialogRef.value.hide({ type: 'refresh', refresh: true });
|
||||
}
|
||||
};
|
||||
const step = ref(1);
|
||||
|
||||
const labelStepperBtn = (step) => {
|
||||
switch (step) {
|
||||
case 1:
|
||||
return 'Split';
|
||||
|
||||
case 2:
|
||||
return 'Finish';
|
||||
|
||||
default:
|
||||
return 'Continue';
|
||||
}
|
||||
};
|
||||
const clickStepperBtn = () => {
|
||||
switch (stepperRef.value.modelValue) {
|
||||
case 1:
|
||||
split();
|
||||
default:
|
||||
stepperRef.value.next();
|
||||
break;
|
||||
}
|
||||
};
|
||||
const statusStepperBtn = () => {
|
||||
switch (stepperRef.value.modelValue) {
|
||||
case 1:
|
||||
return ticketsSelected.value.length < 1;
|
||||
default:
|
||||
return true;
|
||||
}
|
||||
};
|
||||
|
||||
const split = async (data = ticketsSelected.value) => {
|
||||
await axios.post(`Tickets/split`, data);
|
||||
resultSplit.value = data;
|
||||
};
|
||||
const stepperRef = ref(null);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<QDialog ref="dialogRef" @hide="onDialogHide" v-model="showChangeStateDialog">
|
||||
<FetchData
|
||||
url="States/editableStates"
|
||||
@on-fetch="(data) => (editableStates = data)"
|
||||
auto-load
|
||||
/>
|
||||
<QCard class="q-pa-sm">
|
||||
<QCardSection class="row items-center q-pb-none">
|
||||
<QAvatar
|
||||
|
@ -52,22 +90,74 @@ const updateState = async () => {
|
|||
v-if="icon"
|
||||
/>
|
||||
<span class="text-h6 text-grey">{{
|
||||
t('negative.detail.modal.changeState.title')
|
||||
t('negative.detail.split.title')
|
||||
}}</span>
|
||||
<QSpace />
|
||||
<QBtn icon="close" flat round dense v-close-popup />
|
||||
</QCardSection>
|
||||
<QCardSection class="row items-center justify-center column items-stretch">
|
||||
<span>{{ t('negative.detail.modal.changeState.title') }}</span>
|
||||
<VnSelect
|
||||
:label="t('negative.detail.modal.changeState.placeholder')"
|
||||
v-model="newState"
|
||||
:options="editableStates"
|
||||
option-label="name"
|
||||
option-value="code"
|
||||
/>
|
||||
{{ tickets }}
|
||||
<QStepper v-model="step" ref="stepperRef" color="primary" animated>
|
||||
<QStep :name="1" title="Confirm tickets to split" icon="settings">
|
||||
{{ ticketsSelected }}
|
||||
<div>
|
||||
<QCheckbox
|
||||
class="q-pa-md"
|
||||
v-for="(ticket, index) in tickets"
|
||||
:key="index"
|
||||
v-model="ticketsSelected"
|
||||
:label="` Ticket: ${ticket.ticketFk}`"
|
||||
:val="ticket.ticketFk"
|
||||
>
|
||||
</QCheckbox>
|
||||
</div>
|
||||
</QStep>
|
||||
<QStep
|
||||
:name="2"
|
||||
title="Handle tickets splitted"
|
||||
icon="settings"
|
||||
:done="step > 2"
|
||||
><VnPaginate data-key="splitLack" :data="tickets">
|
||||
<template #body="{ rows }">
|
||||
<QTable :rows="rows" :columns="columns">
|
||||
<template #header="props">
|
||||
<QTr :props="props">
|
||||
<QTh
|
||||
v-for="col in props.cols"
|
||||
:key="col.name"
|
||||
:props="props"
|
||||
>
|
||||
{{ t(col.label) }}
|
||||
</QTh>
|
||||
</QTr>
|
||||
</template>
|
||||
<template #body="props">
|
||||
<QTr :props="props"></QTr
|
||||
></template> </QTable
|
||||
></template> </VnPaginate
|
||||
></QStep>
|
||||
<template #navigation>
|
||||
<QStepperNavigation>
|
||||
<QBtn
|
||||
@click="clickStepperBtn"
|
||||
color="primary"
|
||||
:label="labelStepperBtn(step)"
|
||||
:disabled="statusStepperBtn()"
|
||||
/>
|
||||
<QBtn
|
||||
v-if="step > 1"
|
||||
flat
|
||||
color="primary"
|
||||
@click="stepperRef.previous()"
|
||||
label="Back"
|
||||
class="q-ml-sm"
|
||||
/>
|
||||
</QStepperNavigation>
|
||||
</template>
|
||||
</QStepper>
|
||||
</QCardSection>
|
||||
<QCardActions align="right">
|
||||
<QBtn :label="t('globals.next')" color="primary" flat v-close-popup />
|
||||
<QBtn :label="t('globals.cancel')" color="primary" flat v-close-popup />
|
||||
<QBtn
|
||||
:label="t('globals.confirm')"
|
||||
|
|
|
@ -71,10 +71,11 @@ const getInputEvents = (colField, props) => ({
|
|||
const saveChange = async (field, { rowIndex, row }) => {
|
||||
try {
|
||||
switch (field) {
|
||||
case 'split':
|
||||
await split({ simple: true }, [row]);
|
||||
// case 'split':
|
||||
// showSplitDialog.value =true
|
||||
// // await split({ simple: true }, [row]);
|
||||
|
||||
break;
|
||||
// break;
|
||||
case 'code':
|
||||
await axios.post(`Tickets/state`, {
|
||||
ticketFk: row.ticketFk,
|
||||
|
@ -262,18 +263,22 @@ const itemLackForm = ref();
|
|||
// );
|
||||
// };
|
||||
|
||||
const split = async ({ simple }, data = []) => {
|
||||
openConfirmationModal(t('Confirm split selected'), t('splitQuestion'), null, () => {
|
||||
const body = simple ? data : selectedRows.value;
|
||||
axios.post(`Tickets/split`, body).then((data) => {
|
||||
resultSplit.value = data;
|
||||
});
|
||||
});
|
||||
};
|
||||
// const split = async ({ simple }, data = []) => {
|
||||
// openConfirmationModal(
|
||||
// t('negative.modalSplit.title'),
|
||||
// t('splitQuestion'),
|
||||
// () => {
|
||||
// const body = simple ? data : selectedRows.value;
|
||||
// axios.post(`Tickets/split`, body).then((data) => {
|
||||
// resultSplit.value = data;
|
||||
// });
|
||||
// }
|
||||
// );
|
||||
// };
|
||||
const reload = async () => {
|
||||
itemLackForm.value.fetch();
|
||||
};
|
||||
defineExpose({ split, reload });
|
||||
defineExpose({ reload });
|
||||
|
||||
function getIcon(key, prop) {
|
||||
const ticket = resultSplit.value.find((val) => val.ticketFk === key);
|
||||
|
@ -355,7 +360,7 @@ const handleRows = (rows) => {
|
|||
</QBtn>
|
||||
<QBtn
|
||||
color="primary"
|
||||
@click="split"
|
||||
@click="showSplitDialog = true"
|
||||
:disable="selectedRows.length < 1"
|
||||
icon="call_split"
|
||||
>
|
||||
|
@ -496,9 +501,8 @@ const handleRows = (rows) => {
|
|||
ref="splitDialogRef"
|
||||
@hide="onDialogHide"
|
||||
v-model="showSplitDialog"
|
||||
:tickets="resultSplit"
|
||||
:tickets="selectedRows"
|
||||
></HandleSplited>
|
||||
{{ item }}
|
||||
<ItemProposal
|
||||
ref="proposalDialogRef"
|
||||
@hide="onDialogHide"
|
||||
|
|
|
@ -1,65 +0,0 @@
|
|||
<script setup>
|
||||
import { toRefs, ref } from 'vue';
|
||||
import TicketLackDetail from './TicketLackDetail.vue';
|
||||
import { useSession } from 'src/composables/useSession';
|
||||
import { useI18n } from 'vue-i18n';
|
||||
|
||||
const { t } = useI18n();
|
||||
const $props = defineProps({
|
||||
ticket: {
|
||||
type: Object,
|
||||
required: false,
|
||||
default: () => {},
|
||||
},
|
||||
id: {
|
||||
type: Number,
|
||||
default: 0,
|
||||
},
|
||||
});
|
||||
const { ticket } = toRefs($props);
|
||||
const session = useSession();
|
||||
|
||||
const token = session.getTokenMultimedia();
|
||||
const ticketRef = ref(null);
|
||||
const hasRowsSelected = ref(false);
|
||||
|
||||
async function splitSelected() {
|
||||
ticketRef.value.split({ all: true });
|
||||
}
|
||||
</script>
|
||||
<template>
|
||||
<QCard class="q-pa-sm">
|
||||
<QCardSection class="row items-center q-pb-none">
|
||||
<QImg
|
||||
:src="`/api/Images/catalog/50x50/${ticket.itemFk}/download?access_token=${token}`"
|
||||
spinner-color="primary"
|
||||
:ratio="1"
|
||||
height="50px"
|
||||
width="50px"
|
||||
class="image remove-bg"
|
||||
/>
|
||||
|
||||
<span class="text-h6 text-grey">{{ ticket.longName }}</span>
|
||||
<QSpace />
|
||||
<QBtn
|
||||
round
|
||||
color="primary"
|
||||
@click="splitSelected()"
|
||||
:disabled="!hasRowsSelected"
|
||||
>
|
||||
<QIcon name="call_split"></QIcon>
|
||||
<QTooltip>
|
||||
{{ t('global.split') }}
|
||||
</QTooltip>
|
||||
</QBtn>
|
||||
<QBtn icon="close" flat round dense v-close-popup />
|
||||
</QCardSection>
|
||||
<QCardSection class="row items-center">
|
||||
<TicketLackDetail
|
||||
ref="ticketRef"
|
||||
:id="ticket.itemFk"
|
||||
@selection="(rows) => (hasRowsSelected = rows.length > 0)"
|
||||
/> </QCardSection
|
||||
></QCard>
|
||||
</template>
|
||||
<i18n> </i18n>
|
|
@ -25,6 +25,9 @@ negative:
|
|||
modalOrigin:
|
||||
title: 'Update negatives'
|
||||
question: 'Select a state to update'
|
||||
modalSplit:
|
||||
title: Confirm split selected
|
||||
question: 'Select a state to update'
|
||||
detail:
|
||||
itemFk: 'Article'
|
||||
ticketFk: 'Id_Ticket'
|
||||
|
@ -50,5 +53,5 @@ negative:
|
|||
title: Update tickets quantity
|
||||
placeholder: New quantity
|
||||
split:
|
||||
splitQuestion: Are you sure you want to split all tickets?
|
||||
title: Are you sure you want to split all tickets?
|
||||
confirmSplitSelected: Confirm split selected
|
||||
|
|
Loading…
Reference in New Issue