#6321 - Improve Tickets negatives #1388
|
@ -771,7 +771,7 @@ const rowCtrlClickFunction = computed(() => {
|
||||||
:data-col-field="col?.name"
|
:data-col-field="col?.name"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="no-padding no-margin peter"
|
class="no-padding no-margin"
|
||||||
style="
|
style="
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
|
|
@ -10,6 +10,10 @@ import { useClipboard } from 'src/composables/useClipboard';
|
||||||
import VnMoreOptions from './VnMoreOptions.vue';
|
import VnMoreOptions from './VnMoreOptions.vue';
|
||||||
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
|
id: {
|
||||||
|
type: Number,
|
||||||
|
default: null,
|
||||||
|
},
|
||||||
url: {
|
url: {
|
||||||
type: String,
|
type: String,
|
||||||
default: '',
|
default: '',
|
||||||
|
@ -67,7 +71,8 @@ onBeforeMount(async () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
// It enables to load data only once if the module is the same as the dataKey
|
// It enables to load data only once if the module is the same as the dataKey
|
||||||
if (!isSameDataKey.value || !route.params.id) await getData();
|
if (!isSameDataKey.value || !route.params.id || $props.id !== route.params.id)
|
||||||
|
await getData();
|
||||||
watch(
|
watch(
|
||||||
() => [$props.url, $props.filter],
|
() => [$props.url, $props.filter],
|
||||||
async () => {
|
async () => {
|
||||||
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
export function showResultsAsTable() {
|
||||||
|
const quasar = useQuasar();
|
||||||
|
const { t } = useI18n();
|
||||||
|
function openTable(dialog, results, tag, action, title) {
|
||||||
|
quasar.notify({
|
||||||
|
message: t('bulkEdit.completed'),
|
||||||
|
color: 'positive',
|
||||||
|
actions: [
|
||||||
|
{
|
||||||
|
label: t('bulkEdit.openTable'),
|
||||||
|
color: 'white',
|
||||||
|
handler: () => {
|
||||||
|
quasar.dialog({
|
||||||
|
component: dialog,
|
||||||
|
componentProps: {
|
||||||
|
title,
|
||||||
|
results,
|
||||||
|
tag,
|
||||||
|
action,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return { openTable };
|
||||||
|
}
|
|
@ -913,3 +913,8 @@ months:
|
||||||
oct: October
|
oct: October
|
||||||
nov: November
|
nov: November
|
||||||
dec: December
|
dec: December
|
||||||
|
bulkEdit:
|
||||||
|
completed: Bulk edit completed
|
||||||
|
failed: Bulk edit failed
|
||||||
|
edit: Bulk edit
|
||||||
|
inProgress: Bulk edit in progress
|
||||||
|
|
|
@ -1000,3 +1000,9 @@ months:
|
||||||
oct: Octubre
|
oct: Octubre
|
||||||
nov: Noviembre
|
nov: Noviembre
|
||||||
dec: Diciembre
|
dec: Diciembre
|
||||||
|
bulkEdit:
|
||||||
|
completed: Edición masiva completada
|
||||||
|
failed: Edición masiva fallida
|
||||||
|
edit: Edición masiva
|
||||||
|
inProgress: Edición masiva en progreso
|
||||||
|
openTable: Abrir resultados
|
||||||
|
|
|
@ -11,7 +11,7 @@ const $props = defineProps({
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<QPopupProxy>
|
<QPopupProxy data-cy="customerDescriptorProxy">
|
||||||
<CustomerDescriptor v-if="$props.id" :id="$props.id" :summary="CustomerSummary" />
|
<CustomerDescriptor v-if="$props.id" :id="$props.id" :summary="CustomerSummary" />
|
||||||
</QPopupProxy>
|
</QPopupProxy>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -22,7 +22,7 @@ const $props = defineProps({
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<QPopupProxy style="max-width: 10px">
|
<QPopupProxy style="max-width: 10px" data-cy="itemDescriptorProxy">
|
||||||
<ItemDescriptor
|
<ItemDescriptor
|
||||||
v-if="$props.id"
|
v-if="$props.id"
|
||||||
:id="$props.id"
|
:id="$props.id"
|
||||||
|
|
|
@ -6,9 +6,10 @@ import { toCurrency } from 'filters/index';
|
||||||
import VnStockValueDisplay from 'src/components/ui/VnStockValueDisplay.vue';
|
import VnStockValueDisplay from 'src/components/ui/VnStockValueDisplay.vue';
|
||||||
import VnTable from 'src/components/VnTable/VnTable.vue';
|
import VnTable from 'src/components/VnTable/VnTable.vue';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import notifyResults from 'src/utils/notifyResults';
|
import { showResultsAsTable } from 'src/composables/showResultsTable';
|
||||||
import FetchData from 'components/FetchData.vue';
|
import FetchData from 'components/FetchData.vue';
|
||||||
|
const { openTable } = showResultsAsTable();
|
||||||
|
import HandleSplitDialog from 'src/pages/Ticket/Negative/components/HandleSplitDialog.vue';
|
||||||
const MATCH = 'match';
|
const MATCH = 'match';
|
||||||
|
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
@ -32,7 +33,10 @@ const $props = defineProps({
|
||||||
const proposalSelected = ref([]);
|
const proposalSelected = ref([]);
|
||||||
const ticketConfig = ref({});
|
const ticketConfig = ref({});
|
||||||
const proposalTableRef = ref(null);
|
const proposalTableRef = ref(null);
|
||||||
|
const isLoading = ref(true);
|
||||||
|
const filterTicketConfig = {
|
||||||
|
fields: ['lackAlertPrice'],
|
||||||
|
};
|
||||||
const sale = computed(() => $props.sales[0]);
|
const sale = computed(() => $props.sales[0]);
|
||||||
const saleFk = computed(() => sale.value.saleFk);
|
const saleFk = computed(() => sale.value.saleFk);
|
||||||
const filter = computed(() => ({
|
const filter = computed(() => ({
|
||||||
|
@ -77,7 +81,7 @@ const columns = computed(() => [
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'center',
|
||||||
sortable: true,
|
sortable: true,
|
||||||
label: t('proposal.longName'),
|
label: t('proposal.longName'),
|
||||||
name: 'longName',
|
name: 'longName',
|
||||||
|
@ -85,7 +89,7 @@ const columns = computed(() => [
|
||||||
columnClass: 'expand',
|
columnClass: 'expand',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'center',
|
||||||
sortable: true,
|
sortable: true,
|
||||||
label: t('item.list.color'),
|
label: t('item.list.color'),
|
||||||
name: 'tag5',
|
name: 'tag5',
|
||||||
|
@ -93,7 +97,7 @@ const columns = computed(() => [
|
||||||
columnClass: 'expand',
|
columnClass: 'expand',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'center',
|
||||||
sortable: true,
|
sortable: true,
|
||||||
label: t('item.list.stems'),
|
label: t('item.list.stems'),
|
||||||
name: 'tag6',
|
name: 'tag6',
|
||||||
|
@ -101,7 +105,7 @@ const columns = computed(() => [
|
||||||
columnClass: 'expand',
|
columnClass: 'expand',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
align: 'left',
|
align: 'center',
|
||||||
sortable: true,
|
sortable: true,
|
||||||
label: t('item.list.producer'),
|
label: t('item.list.producer'),
|
||||||
name: 'tag7',
|
name: 'tag7',
|
||||||
|
@ -197,9 +201,10 @@ const isSelectionAvailable = (itemProposal) => {
|
||||||
|
|
||||||
async function change({ itemFk: substitutionFk }) {
|
async function change({ itemFk: substitutionFk }) {
|
||||||
try {
|
try {
|
||||||
const promises = $props.sales.map(({ saleFk, quantity }) => {
|
const promises = $props.sales.map(({ saleFk, quantity, ticketFk }) => {
|
||||||
const params = {
|
const params = {
|
||||||
saleFk,
|
saleFk,
|
||||||
|
ticketFk,
|
||||||
substitutionFk,
|
substitutionFk,
|
||||||
quantity,
|
quantity,
|
||||||
};
|
};
|
||||||
|
@ -207,10 +212,9 @@ async function change({ itemFk: substitutionFk }) {
|
||||||
});
|
});
|
||||||
const results = await Promise.allSettled(promises);
|
const results = await Promise.allSettled(promises);
|
||||||
|
|
||||||
notifyResults(results, 'saleFk');
|
openTable(HandleSplitDialog, results, 'ticketFk', 'changeItem');
|
||||||
emit('itemReplaced', {
|
emit('itemReplaced', {
|
||||||
type: 'refresh',
|
type: 'refresh',
|
||||||
quantity: quantity.value,
|
|
||||||
itemProposal: proposalSelected.value[0],
|
itemProposal: proposalSelected.value[0],
|
||||||
});
|
});
|
||||||
proposalSelected.value = [];
|
proposalSelected.value = [];
|
||||||
|
@ -221,18 +225,20 @@ async function change({ itemFk: substitutionFk }) {
|
||||||
|
|
||||||
async function handleTicketConfig(data) {
|
async function handleTicketConfig(data) {
|
||||||
ticketConfig.value = data[0];
|
ticketConfig.value = data[0];
|
||||||
|
isLoading.value = false;
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<FetchData
|
<FetchData
|
||||||
url="TicketConfigs"
|
url="TicketConfigs"
|
||||||
:filter="{ fields: ['lackAlertPrice'] }"
|
:filter="filterTicketConfig"
|
||||||
@on-fetch="handleTicketConfig"
|
|
||||||
auto-load
|
auto-load
|
||||||
/>
|
@on-fetch="handleTicketConfig"
|
||||||
|
></FetchData>
|
||||||
|
<QSpinner v-if="isLoading" color="primary" size="md"></QSpinner>
|
||||||
|
|
||||||
<VnTable
|
<VnTable
|
||||||
v-if="ticketConfig"
|
v-else
|
||||||
auto-load
|
auto-load
|
||||||
data-cy="proposalTable"
|
data-cy="proposalTable"
|
||||||
ref="proposalTableRef"
|
ref="proposalTableRef"
|
||||||
|
@ -242,7 +248,7 @@ async function handleTicketConfig(data) {
|
||||||
:columns="columns"
|
:columns="columns"
|
||||||
class="full-width q-mt-md"
|
class="full-width q-mt-md"
|
||||||
row-key="id"
|
row-key="id"
|
||||||
:row-click="change"
|
redirect="false"
|
||||||
:is-editable="false"
|
:is-editable="false"
|
||||||
:right-search="false"
|
:right-search="false"
|
||||||
:without-header="true"
|
:without-header="true"
|
||||||
|
@ -260,10 +266,10 @@ async function handleTicketConfig(data) {
|
||||||
<QTooltip> {{ statusConditionalValue(row) }}% </QTooltip>
|
<QTooltip> {{ statusConditionalValue(row) }}% </QTooltip>
|
||||||
</div>
|
</div>
|
||||||
<div style="flex: 2 0 100%; align-content: center">
|
<div style="flex: 2 0 100%; align-content: center">
|
||||||
<div>
|
<span class="link" @click.stop>
|
||||||
<span class="link">{{ row.longName }}</span>
|
{{ row.longName }}
|
||||||
<ItemDescriptorProxy :id="row.id" />
|
<ItemDescriptorProxy :id="row.itemFk" />
|
||||||
</div>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
</QTd>
|
</QTd>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -19,16 +19,18 @@ const $props = defineProps({
|
||||||
default: () => [],
|
default: () => [],
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
const { dialogRef } = useDialogPluginComponent();
|
const { dialogRef, onDialogHide, onDialogOK, onDialogCancel } =
|
||||||
const emit = defineEmits([
|
useDialogPluginComponent();
|
||||||
'onDialogClosed',
|
const emit = defineEmits(['onDialogClosed', ...useDialogPluginComponent.emits]);
|
||||||
'itemReplaced',
|
|
||||||
...useDialogPluginComponent.emits,
|
|
||||||
]);
|
|
||||||
defineExpose({ show: () => dialogRef.value.show(), hide: () => dialogRef.value.hide() });
|
defineExpose({ show: () => dialogRef.value.show(), hide: () => dialogRef.value.hide() });
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<QDialog ref="dialogRef" transition-show="scale" transition-hide="scale">
|
<QDialog
|
||||||
|
ref="dialogRef"
|
||||||
|
transition-show="scale"
|
||||||
|
transition-hide="scale"
|
||||||
|
@hide="onDialogHide"
|
||||||
|
>
|
||||||
<QCard class="dialog-width">
|
<QCard class="dialog-width">
|
||||||
<QCardSection class="row items-center q-pb-none">
|
<QCardSection class="row items-center q-pb-none">
|
||||||
<span class="text-h6 text-grey">{{ $t('Item proposal') }}</span>
|
<span class="text-h6 text-grey">{{ $t('Item proposal') }}</span>
|
||||||
|
@ -39,8 +41,8 @@ defineExpose({ show: () => dialogRef.value.show(), hide: () => dialogRef.value.h
|
||||||
<ItemProposal
|
<ItemProposal
|
||||||
v-bind="$props"
|
v-bind="$props"
|
||||||
@item-replaced="
|
@item-replaced="
|
||||||
(data) => {
|
() => {
|
||||||
emit('itemReplaced', data);
|
emit('onDialogClosed', true);
|
||||||
dialogRef.hide();
|
dialogRef.hide();
|
||||||
}
|
}
|
||||||
"
|
"
|
||||||
|
|
|
@ -44,6 +44,7 @@ function ticketFilter(ticket) {
|
||||||
@on-fetch="(data) => ([problems] = data)"
|
@on-fetch="(data) => ([problems] = data)"
|
||||||
/>
|
/>
|
||||||
<CardDescriptor
|
<CardDescriptor
|
||||||
|
:id="entityId"
|
||||||
:url="`Tickets/${entityId}`"
|
:url="`Tickets/${entityId}`"
|
||||||
:filter="filter"
|
:filter="filter"
|
||||||
data-key="Ticket"
|
data-key="Ticket"
|
||||||
|
|
|
@ -10,7 +10,7 @@ const $props = defineProps({
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<template>
|
<template>
|
||||||
<QPopupProxy>
|
<QPopupProxy data-cy="ticketDescriptorProxy">
|
||||||
<TicketDescriptor v-if="$props.id" :id="$props.id" :summary="TicketSummary" />
|
<TicketDescriptor v-if="$props.id" :id="$props.id" :summary="TicketSummary" />
|
||||||
</QPopupProxy>
|
</QPopupProxy>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
|
|
||||||
import VnInputDate from 'src/components/common/VnInputDate.vue';
|
import VnInputDate from 'src/components/common/VnInputDate.vue';
|
||||||
import split from './components/split';
|
import { splitTicket } from './components/split';
|
||||||
const emit = defineEmits(['ticketTransfered']);
|
const emit = defineEmits(['ticketTransfered']);
|
||||||
|
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
|
@ -12,6 +12,8 @@ const $props = defineProps({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const { split } = splitTicket();
|
||||||
|
|
||||||
const splitDate = ref(Date.vnNew());
|
const splitDate = ref(Date.vnNew());
|
||||||
|
|
||||||
const splitSelectedRows = async () => {
|
const splitSelectedRows = async () => {
|
||||||
|
|
|
@ -6,7 +6,6 @@ import { useI18n } from 'vue-i18n';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import { dashIfEmpty, toDate, toCurrency } from 'src/filters';
|
import { dashIfEmpty, toDate, toCurrency } from 'src/filters';
|
||||||
import CardSummary from 'components/ui/CardSummary.vue';
|
import CardSummary from 'components/ui/CardSummary.vue';
|
||||||
import FetchedTags from 'components/ui/FetchedTags.vue';
|
|
||||||
import InvoiceOutDescriptorProxy from 'pages/InvoiceOut/Card/InvoiceOutDescriptorProxy.vue';
|
import InvoiceOutDescriptorProxy from 'pages/InvoiceOut/Card/InvoiceOutDescriptorProxy.vue';
|
||||||
import VnLv from 'src/components/ui/VnLv.vue';
|
import VnLv from 'src/components/ui/VnLv.vue';
|
||||||
import VnLinkPhone from 'src/components/ui/VnLinkPhone.vue';
|
import VnLinkPhone from 'src/components/ui/VnLinkPhone.vue';
|
||||||
|
@ -20,8 +19,7 @@ import ZoneDescriptorProxy from 'src/pages/Zone/Card/ZoneDescriptorProxy.vue';
|
||||||
import VnSelect from 'src/components/common/VnSelect.vue';
|
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||||
import VnToSummary from 'src/components/ui/VnToSummary.vue';
|
import VnToSummary from 'src/components/ui/VnToSummary.vue';
|
||||||
import TicketDescriptorMenu from './TicketDescriptorMenu.vue';
|
import TicketDescriptorMenu from './TicketDescriptorMenu.vue';
|
||||||
import TicketProblems from 'src/components/TicketProblems.vue';
|
import TicketSaleTable from './components/TicketSaleTable.vue';
|
||||||
|
|
||||||
const route = useRoute();
|
const route = useRoute();
|
||||||
const { notify } = useNotify();
|
const { notify } = useNotify();
|
||||||
const { t } = useI18n();
|
const { t } = useI18n();
|
||||||
|
@ -300,95 +298,7 @@ onMounted(async () => {
|
||||||
:url="toTicketUrl('sale')"
|
:url="toTicketUrl('sale')"
|
||||||
:text="t('ticket.summary.saleLines')"
|
:text="t('ticket.summary.saleLines')"
|
||||||
/>
|
/>
|
||||||
<QTable :rows="entity.sales" style="text-align: center">
|
<TicketSaleTable :ticket="ticket" :sales="entity.sales" />
|
||||||
<template #body-cell="{ value }">
|
|
||||||
<QTd>{{ value }}</QTd>
|
|
||||||
</template>
|
|
||||||
<template #header="props">
|
|
||||||
<QTr class="tr-header" :props="props">
|
|
||||||
<QTh auto-width></QTh>
|
|
||||||
<QTh auto-width>{{ t('globals.item') }}</QTh>
|
|
||||||
<QTh auto-width>{{ t('globals.visible') }}</QTh>
|
|
||||||
<QTh auto-width>{{ t('ticket.summary.available') }}</QTh>
|
|
||||||
<QTh auto-width>{{ t('globals.quantity') }}</QTh>
|
|
||||||
<QTh auto-width>{{ t('globals.description') }}</QTh>
|
|
||||||
<QTh auto-width>{{ t('globals.price') }}</QTh>
|
|
||||||
<QTh auto-width>{{ t('ticket.summary.discount') }}</QTh>
|
|
||||||
<QTh auto-width>{{ t('globals.amount') }}</QTh>
|
|
||||||
<QTh auto-width>{{ t('ticket.summary.packing') }}</QTh>
|
|
||||||
</QTr>
|
|
||||||
</template>
|
|
||||||
<template #body="props">
|
|
||||||
<QTr :props="props">
|
|
||||||
<QTd class="q-gutter-x-xs">
|
|
||||||
<TicketProblems :row="props.row" />
|
|
||||||
</QTd>
|
|
||||||
<QTd>
|
|
||||||
<QBtn class="link" flat>
|
|
||||||
{{ props.row.itemFk }}
|
|
||||||
<ItemDescriptorProxy
|
|
||||||
:id="props.row.itemFk"
|
|
||||||
:sale-fk="props.row.id"
|
|
||||||
:warehouse-fk="ticket.warehouseFk"
|
|
||||||
/>
|
|
||||||
</QBtn>
|
|
||||||
</QTd>
|
|
||||||
<QTd>
|
|
||||||
<QChip
|
|
||||||
v-if="props.row.visible < 0"
|
|
||||||
dense
|
|
||||||
rounded
|
|
||||||
:color="'negative'"
|
|
||||||
text-color="white"
|
|
||||||
>
|
|
||||||
{{ props.row.visible }}
|
|
||||||
</QChip>
|
|
||||||
<span v-else>
|
|
||||||
{{ props.row.visible }}
|
|
||||||
</span>
|
|
||||||
</QTd>
|
|
||||||
<QTd>
|
|
||||||
<QChip
|
|
||||||
v-if="props.row.available < 0"
|
|
||||||
dense
|
|
||||||
rounded
|
|
||||||
:color="'negative'"
|
|
||||||
text-color="white"
|
|
||||||
>
|
|
||||||
{{ props.row.available }}
|
|
||||||
</QChip>
|
|
||||||
<span v-else>
|
|
||||||
{{ props.row.available }}
|
|
||||||
</span>
|
|
||||||
</QTd>
|
|
||||||
<QTd>{{ props.row.quantity }}</QTd>
|
|
||||||
<QTd class="description-cell">
|
|
||||||
<div class="row full-width justify-between">
|
|
||||||
{{ props.row.concept }}
|
|
||||||
<div v-if="props.row.item.subName" class="subName">
|
|
||||||
{{ props.row.item.subName.toUpperCase() }}
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<FetchedTags
|
|
||||||
class="fetched-tags"
|
|
||||||
:item="props.row.item"
|
|
||||||
></FetchedTags>
|
|
||||||
</QTd>
|
|
||||||
<QTd>{{ props.row.price }} €</QTd>
|
|
||||||
<QTd>{{ props.row.discount }} %</QTd>
|
|
||||||
<QTd
|
|
||||||
>{{
|
|
||||||
toCurrency(
|
|
||||||
props.row.quantity *
|
|
||||||
props.row.price *
|
|
||||||
((100 - props.row.discount) / 100),
|
|
||||||
)
|
|
||||||
}}
|
|
||||||
</QTd>
|
|
||||||
<QTd>{{ dashIfEmpty(props.row.item.itemPackingTypeFk) }}</QTd>
|
|
||||||
</QTr>
|
|
||||||
</template>
|
|
||||||
</QTable>
|
|
||||||
</QCard>
|
</QCard>
|
||||||
<QCard class="vn-max" v-if="ticket.packagings.length != 0">
|
<QCard class="vn-max" v-if="ticket.packagings.length != 0">
|
||||||
<VnTitle :url="toTicketUrl('package')" :text="t('globals.packages')" />
|
<VnTitle :url="toTicketUrl('package')" :text="t('globals.packages')" />
|
||||||
|
|
|
@ -0,0 +1,112 @@
|
||||||
|
<script setup>
|
||||||
|
import TicketProblems from 'src/components/TicketProblems.vue';
|
||||||
|
import FetchedTags from 'src/components/ui/FetchedTags.vue';
|
||||||
|
import { dashIfEmpty, toDate, toCurrency } from 'src/filters';
|
||||||
|
import ItemDescriptorProxy from 'src/pages/Item/Card/ItemDescriptorProxy.vue';
|
||||||
|
import { ref } from 'vue';
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
sales: {
|
||||||
|
type: Array,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
ticket: {
|
||||||
|
type: Object,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const sales = ref(props?.sales);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<QTable v-if="sales" :rows="sales" style="text-align: center">
|
||||||
|
<template #body-cell="{ value }">
|
||||||
|
<QTd>{{ value }}</QTd>
|
||||||
|
</template>
|
||||||
|
<template #header="props">
|
||||||
|
<QTr class="tr-header" :props="props">
|
||||||
|
<QTh auto-width></QTh>
|
||||||
|
<QTh auto-width>{{ $t('globals.item') }}</QTh>
|
||||||
|
<QTh auto-width>{{ $t('globals.visible') }}</QTh>
|
||||||
|
<QTh auto-width>{{ $t('ticket.summary.available') }}</QTh>
|
||||||
|
<QTh auto-width>{{ $t('globals.quantity') }}</QTh>
|
||||||
|
<QTh auto-width>{{ $t('globals.description') }}</QTh>
|
||||||
|
<QTh auto-width>{{ $t('globals.price') }}</QTh>
|
||||||
|
<QTh auto-width>{{ $t('ticket.summary.discount') }}</QTh>
|
||||||
|
<QTh auto-width>{{ $t('globals.amount') }}</QTh>
|
||||||
|
<QTh auto-width>{{ $t('ticket.summary.packing') }}</QTh>
|
||||||
|
</QTr>
|
||||||
|
</template>
|
||||||
|
<template #body="props">
|
||||||
|
<QTr :props="props">
|
||||||
|
<QTd class="q-gutter-x-xs">
|
||||||
|
<TicketProblems :row="props.row" />
|
||||||
|
</QTd>
|
||||||
|
<QTd>
|
||||||
|
<QBtn class="link" flat>
|
||||||
|
{{ props.row.itemFk }}
|
||||||
|
<ItemDescriptorProxy
|
||||||
|
:id="props.row.itemFk"
|
||||||
|
:sale-fk="props.row.id"
|
||||||
|
:warehouse-fk="$props.ticket.warehouseFk"
|
||||||
|
/>
|
||||||
|
</QBtn>
|
||||||
|
</QTd>
|
||||||
|
<QTd>
|
||||||
|
<QChip
|
||||||
|
v-if="props.row.visible < 0"
|
||||||
|
dense
|
||||||
|
rounded
|
||||||
|
:color="'negative'"
|
||||||
|
text-color="white"
|
||||||
|
>
|
||||||
|
{{ props.row.visible }}
|
||||||
|
</QChip>
|
||||||
|
<span v-else>
|
||||||
|
{{ props.row.visible }}
|
||||||
|
</span>
|
||||||
|
</QTd>
|
||||||
|
<QTd>
|
||||||
|
<QChip
|
||||||
|
v-if="props.row.available < 0"
|
||||||
|
dense
|
||||||
|
rounded
|
||||||
|
:color="'negative'"
|
||||||
|
text-color="white"
|
||||||
|
>
|
||||||
|
{{ props.row.available }}
|
||||||
|
</QChip>
|
||||||
|
<span v-else>
|
||||||
|
{{ props.row.available }}
|
||||||
|
</span>
|
||||||
|
</QTd>
|
||||||
|
<QTd>{{ props.row.quantity }}</QTd>
|
||||||
|
<QTd class="description-cell">
|
||||||
|
<div class="row full-width justify-between">
|
||||||
|
{{ props.row.concept }}
|
||||||
|
<div v-if="props.row.item.subName" class="subName">
|
||||||
|
{{ props.row.item.subName.toUpperCase() }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<FetchedTags
|
||||||
|
class="fetched-tags"
|
||||||
|
:item="props.row.item"
|
||||||
|
></FetchedTags>
|
||||||
|
</QTd>
|
||||||
|
<QTd>{{ props.row.price }} €</QTd>
|
||||||
|
<QTd>{{ props.row.discount }} %</QTd>
|
||||||
|
<QTd
|
||||||
|
>{{
|
||||||
|
toCurrency(
|
||||||
|
props.row.quantity *
|
||||||
|
props.row.price *
|
||||||
|
((100 - props.row.discount) / 100),
|
||||||
|
)
|
||||||
|
}}
|
||||||
|
</QTd>
|
||||||
|
<QTd>{{ dashIfEmpty(props.row.item.itemPackingTypeFk) }}</QTd>
|
||||||
|
</QTr>
|
||||||
|
</template>
|
||||||
|
</QTable>
|
||||||
|
</template>
|
|
@ -0,0 +1,42 @@
|
||||||
|
<script setup>
|
||||||
|
import FetchData from 'src/components/FetchData.vue';
|
||||||
|
import { dashIfEmpty, toDate, toCurrency } from 'src/filters';
|
||||||
|
import { ref } from 'vue';
|
||||||
|
import TicketSaleTable from './TicketSaleTable.vue';
|
||||||
|
|
||||||
|
const props = defineProps({
|
||||||
|
sales: {
|
||||||
|
type: Array,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
ticket: {
|
||||||
|
type: Number,
|
||||||
|
required: true,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
|
||||||
|
const sales = ref(props?.sales);
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<QDialog ref="dialogRef" full-width data-cy="ticketSaleTableDialog">
|
||||||
|
<FetchData
|
||||||
|
v-if="!sales"
|
||||||
|
:url="`Tickets/${$props.ticket}/getSales`"
|
||||||
|
@on-fetch="(data) => (sales = data)"
|
||||||
|
auto-load
|
||||||
|
></FetchData>
|
||||||
|
<QCard class="q-pa-sm">
|
||||||
|
<QCardSection class="row items-center q-pb-none">
|
||||||
|
<span class="text-h6 text-grey">{{
|
||||||
|
$t('ticket.summary.saleLines')
|
||||||
|
}}</span>
|
||||||
|
<QSpace />
|
||||||
|
<QBtn icon="close" flat round dense v-close-popup />
|
||||||
|
</QCardSection>
|
||||||
|
<QCardSection>
|
||||||
|
<TicketSaleTable v-if="sales" :ticket="$props.ticket" :sales="sales" />
|
||||||
|
</QCardSection>
|
||||||
|
</QCard>
|
||||||
|
</QDialog>
|
||||||
|
</template>
|
|
@ -1,22 +1,24 @@
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import notifyResults from 'src/utils/notifyResults';
|
import { showResultsAsTable } from 'src/composables/showResultsTable';
|
||||||
|
import HandleSplitDialog from 'src/pages/Ticket/Negative/components/HandleSplitDialog.vue';
|
||||||
|
export function splitTicket() {
|
||||||
|
const { openTable } = showResultsAsTable();
|
||||||
|
|
||||||
export default async function (data, date) {
|
async function split(data, date) {
|
||||||
const reducedData = data.reduce((acc, item) => {
|
const reducedData = data.reduce((acc, item) => {
|
||||||
const existing = acc.find(({ ticketFk }) => ticketFk === item.id);
|
const existing = acc.find(({ ticketFk }) => ticketFk === item.ticketFk);
|
||||||
if (existing) {
|
if (existing) {
|
||||||
existing.sales.push(item.saleFk);
|
existing.sales.push(item.saleFk);
|
||||||
} else {
|
} else {
|
||||||
acc.push({ ticketFk: item.id, sales: [item.saleFk], date });
|
acc.push({ ticketFk: item.ticketFk, sales: [item.saleFk], landed: date });
|
||||||
}
|
}
|
||||||
return acc;
|
return acc;
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
const promises = reducedData.map((params) => axios.post(`Tickets/split`, params));
|
const promises = reducedData.map((params) => axios.post(`Tickets/split`, params));
|
||||||
|
|
||||||
const results = await Promise.allSettled(promises);
|
const result = await Promise.allSettled(promises);
|
||||||
|
openTable(HandleSplitDialog, result, 'ticket', 'split');
|
||||||
notifyResults(results, 'ticketFk');
|
}
|
||||||
|
return { split };
|
||||||
return results;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -68,7 +68,8 @@ const showItemProposal = () => {
|
||||||
sales: selectedRows.value,
|
sales: selectedRows.value,
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
.onOk(itemProposalEvt);
|
.onOk(reload)
|
||||||
|
.onCancel(reload);
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -146,7 +147,12 @@ const showItemProposal = () => {
|
||||||
<template v-slot="{ popup }">
|
<template v-slot="{ popup }">
|
||||||
<ChangeItemDialog
|
<ChangeItemDialog
|
||||||
ref="changeItemDialogRef"
|
ref="changeItemDialogRef"
|
||||||
@update-item="popup.hide()"
|
@update-item="
|
||||||
|
() => {
|
||||||
|
popup.hide();
|
||||||
|
reload();
|
||||||
|
}
|
||||||
|
"
|
||||||
:selected-rows="selectedRows"
|
:selected-rows="selectedRows"
|
||||||
/></template>
|
/></template>
|
||||||
</VnPopupProxy>
|
</VnPopupProxy>
|
||||||
|
@ -160,7 +166,12 @@ const showItemProposal = () => {
|
||||||
<template v-slot="{ popup }">
|
<template v-slot="{ popup }">
|
||||||
<ChangeStateDialog
|
<ChangeStateDialog
|
||||||
ref="changeStateDialogRef"
|
ref="changeStateDialogRef"
|
||||||
@update-state="popup.hide()"
|
@update-state="
|
||||||
|
() => {
|
||||||
|
popup.hide();
|
||||||
|
reload();
|
||||||
|
}
|
||||||
|
"
|
||||||
:selected-rows="selectedRows"
|
:selected-rows="selectedRows"
|
||||||
/></template>
|
/></template>
|
||||||
</VnPopupProxy>
|
</VnPopupProxy>
|
||||||
|
@ -175,7 +186,12 @@ const showItemProposal = () => {
|
||||||
<template v-slot="{ popup }">
|
<template v-slot="{ popup }">
|
||||||
<ChangeQuantityDialog
|
<ChangeQuantityDialog
|
||||||
ref="changeQuantityDialogRef"
|
ref="changeQuantityDialogRef"
|
||||||
@update-quantity="popup.hide()"
|
@update-quantity="
|
||||||
|
() => {
|
||||||
|
popup.hide();
|
||||||
|
reload();
|
||||||
|
}
|
||||||
|
"
|
||||||
:selected-rows="selectedRows"
|
:selected-rows="selectedRows"
|
||||||
/></template>
|
/></template>
|
||||||
</VnPopupProxy> </QBtnGroup
|
</VnPopupProxy> </QBtnGroup
|
||||||
|
|
|
@ -94,7 +94,7 @@ const setUserParams = (params) => {
|
||||||
<QItem>
|
<QItem>
|
||||||
<QItemSection>
|
<QItemSection>
|
||||||
<VnInput
|
<VnInput
|
||||||
v-model="params.id"
|
v-model="params.itemFk"
|
||||||
:label="t('negative.id')"
|
:label="t('negative.id')"
|
||||||
dense
|
dense
|
||||||
is-outlined
|
is-outlined
|
||||||
|
@ -102,25 +102,6 @@ const setUserParams = (params) => {
|
||||||
</QItemSection>
|
</QItemSection>
|
||||||
</QItem>
|
</QItem>
|
||||||
<QItem>
|
<QItem>
|
||||||
<QItemSection>
|
|
||||||
<VnInput
|
|
||||||
v-model="params.producer"
|
|
||||||
:label="t('negative.producer')"
|
|
||||||
dense
|
|
||||||
is-outlined
|
|
||||||
/>
|
|
||||||
</QItemSection>
|
|
||||||
</QItem>
|
|
||||||
<QItem>
|
|
||||||
<QItemSection>
|
|
||||||
<VnInput
|
|
||||||
v-model="params.origen"
|
|
||||||
:label="t('negative.origen')"
|
|
||||||
dense
|
|
||||||
is-outlined
|
|
||||||
/>
|
|
||||||
</QItemSection> </QItem
|
|
||||||
><QItem>
|
|
||||||
<QItemSection v-if="categoriesOptions">
|
<QItemSection v-if="categoriesOptions">
|
||||||
<VnSelect
|
<VnSelect
|
||||||
:label="t('negative.categoryFk')"
|
:label="t('negative.categoryFk')"
|
||||||
|
|
|
@ -65,15 +65,19 @@ const columns = computed(() => [
|
||||||
columnFilter: {
|
columnFilter: {
|
||||||
component: 'input',
|
component: 'input',
|
||||||
type: 'number',
|
type: 'number',
|
||||||
columnClass: 'shrink',
|
inWhere: false,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'longName',
|
name: 'longName',
|
||||||
align: 'center',
|
align: 'left',
|
||||||
label: t('negative.longName'),
|
label: t('negative.longName'),
|
||||||
field: ({ longName }) => longName,
|
field: ({ longName }) => longName,
|
||||||
|
columnFilter: {
|
||||||
|
component: 'input',
|
||||||
|
inWhere: false,
|
||||||
|
useLike: true,
|
||||||
|
},
|
||||||
sortable: true,
|
sortable: true,
|
||||||
headerStyle: 'width: 350px',
|
headerStyle: 'width: 350px',
|
||||||
cardVisible: true,
|
cardVisible: true,
|
||||||
|
@ -94,6 +98,11 @@ const columns = computed(() => [
|
||||||
field: ({ inkFk }) => inkFk,
|
field: ({ inkFk }) => inkFk,
|
||||||
sortable: true,
|
sortable: true,
|
||||||
cardVisible: true,
|
cardVisible: true,
|
||||||
|
columnFilter: {
|
||||||
|
component: 'input',
|
||||||
|
columnClass: 'shrink',
|
||||||
|
inWhere: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'size',
|
name: 'size',
|
||||||
|
@ -155,7 +164,6 @@ const setUserParams = (params) => {
|
||||||
<TicketLackFilter data-key="NegativeList" @set-user-params="setUserParams" />
|
<TicketLackFilter data-key="NegativeList" @set-user-params="setUserParams" />
|
||||||
</template>
|
</template>
|
||||||
</RightMenu>
|
</RightMenu>
|
||||||
{{ filterRef }}
|
|
||||||
<VnTable
|
<VnTable
|
||||||
ref="tableRef"
|
ref="tableRef"
|
||||||
data-key="NegativeList"
|
data-key="NegativeList"
|
||||||
|
|
|
@ -5,7 +5,7 @@ import { computed, ref, watch } from 'vue';
|
||||||
import { useI18n } from 'vue-i18n';
|
import { useI18n } from 'vue-i18n';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import FetchData from 'src/components/FetchData.vue';
|
import FetchData from 'src/components/FetchData.vue';
|
||||||
import { toDate, toHour } from 'src/filters';
|
import { toDate } from 'src/filters';
|
||||||
import useNotify from 'src/composables/useNotify.js';
|
import useNotify from 'src/composables/useNotify.js';
|
||||||
import ZoneDescriptorProxy from 'pages/Zone/Card/ZoneDescriptorProxy.vue';
|
import ZoneDescriptorProxy from 'pages/Zone/Card/ZoneDescriptorProxy.vue';
|
||||||
import { useRoute } from 'vue-router';
|
import { useRoute } from 'vue-router';
|
||||||
|
@ -22,14 +22,6 @@ const $props = defineProps({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
||||||
watch(
|
|
||||||
() => $props.filter,
|
|
||||||
(v) => {
|
|
||||||
filterLack.value.where = v;
|
|
||||||
tableRef.value.reload(filterLack);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
const filterLack = ref({
|
const filterLack = ref({
|
||||||
include: [
|
include: [
|
||||||
{
|
{
|
||||||
|
@ -90,6 +82,7 @@ const columns = computed(() => [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'alertLevelCode',
|
name: 'alertLevelCode',
|
||||||
|
field: 'alertLevelCode',
|
||||||
label: t('negative.detail.state'),
|
label: t('negative.detail.state'),
|
||||||
columnFilter: {
|
columnFilter: {
|
||||||
name: 'alertLevelCode',
|
name: 'alertLevelCode',
|
||||||
|
@ -108,14 +101,14 @@ const columns = computed(() => [
|
||||||
name: 'zoneName',
|
name: 'zoneName',
|
||||||
label: t('negative.detail.zoneName'),
|
label: t('negative.detail.zoneName'),
|
||||||
field: 'zoneName',
|
field: 'zoneName',
|
||||||
align: 'center',
|
align: 'left',
|
||||||
sortable: true,
|
sortable: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'nickname',
|
name: 'nickname',
|
||||||
label: t('negative.detail.nickname'),
|
label: t('negative.detail.nickname'),
|
||||||
field: 'nickname',
|
field: 'nickname',
|
||||||
align: 'center',
|
align: 'left',
|
||||||
sortable: true,
|
sortable: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -139,27 +132,22 @@ const getInputEvents = ({ col, ...rows }) => ({
|
||||||
'keyup.enter': () => saveChange(col.name, rows),
|
'keyup.enter': () => saveChange(col.name, rows),
|
||||||
});
|
});
|
||||||
const saveChange = async (field, { row }) => {
|
const saveChange = async (field, { row }) => {
|
||||||
try {
|
switch (field) {
|
||||||
switch (field) {
|
case 'alertLevelCode':
|
||||||
case 'alertLevelCode':
|
await axios.post(`Tickets/state`, {
|
||||||
await axios.post(`Tickets/state`, {
|
ticketFk: row.ticketFk,
|
||||||
ticketFk: row.ticketFk,
|
code: row[field],
|
||||||
code: row[field],
|
});
|
||||||
});
|
break;
|
||||||
break;
|
|
||||||
|
|
||||||
case 'quantity':
|
case 'quantity':
|
||||||
await axios.post(`Sales/${row.saleFk}/updateQuantity`, {
|
await axios.post(`Sales/${row.saleFk}/updateQuantity`, {
|
||||||
quantity: +row.quantity,
|
quantity: +row.quantity,
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
}
|
|
||||||
notify('globals.dataSaved', 'positive');
|
|
||||||
fetchItemLack.value.fetch();
|
|
||||||
} catch (err) {
|
|
||||||
console.error('Error saving changes', err);
|
|
||||||
f;
|
|
||||||
}
|
}
|
||||||
|
notify('globals.dataSaved', 'positive');
|
||||||
|
fetchItemLack.value.fetch();
|
||||||
};
|
};
|
||||||
|
|
||||||
function onBuysFetched(data) {
|
function onBuysFetched(data) {
|
||||||
|
@ -171,7 +159,7 @@ function onBuysFetched(data) {
|
||||||
<FetchData
|
<FetchData
|
||||||
ref="fetchItemLack"
|
ref="fetchItemLack"
|
||||||
:url="`Tickets/itemLack`"
|
:url="`Tickets/itemLack`"
|
||||||
:params="{ id: entityId }"
|
:params="{ itemFk: entityId }"
|
||||||
@on-fetch="(data) => (itemLack = data[0])"
|
@on-fetch="(data) => (itemLack = data[0])"
|
||||||
auto-load
|
auto-load
|
||||||
/>
|
/>
|
||||||
|
@ -238,65 +226,59 @@ function onBuysFetched(data) {
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template #column-status="{ row }">
|
<template #column-status="{ row }">
|
||||||
<QTd style="min-width: 150px">
|
<QIcon
|
||||||
<div class="icon-container">
|
v-if="row.isBasket"
|
||||||
<QIcon
|
name="vn:basket"
|
||||||
v-if="row.isBasket"
|
color="primary"
|
||||||
name="vn:basket"
|
class="cursor-pointer"
|
||||||
color="primary"
|
size="xs"
|
||||||
class="cursor-pointer"
|
|
||||||
size="xs"
|
|
||||||
>
|
|
||||||
<QTooltip>{{ t('negative.detail.isBasket') }}</QTooltip>
|
|
||||||
</QIcon>
|
|
||||||
<QIcon
|
|
||||||
v-if="row.hasToIgnore"
|
|
||||||
name="star"
|
|
||||||
color="primary"
|
|
||||||
class="cursor-pointer fill-icon"
|
|
||||||
size="xs"
|
|
||||||
>
|
|
||||||
<QTooltip>{{ t('negative.detail.hasToIgnore') }}</QTooltip>
|
|
||||||
</QIcon>
|
|
||||||
<QIcon
|
|
||||||
v-if="row.hasObservation"
|
|
||||||
name="change_circle"
|
|
||||||
color="primary"
|
|
||||||
class="cursor-pointer"
|
|
||||||
size="xs"
|
|
||||||
>
|
|
||||||
<QTooltip>{{
|
|
||||||
t('negative.detail.hasObservation')
|
|
||||||
}}</QTooltip> </QIcon
|
|
||||||
><QIcon
|
|
||||||
v-if="row.isRookie"
|
|
||||||
name="vn:Person"
|
|
||||||
size="xs"
|
|
||||||
color="primary"
|
|
||||||
class="cursor-pointer"
|
|
||||||
>
|
|
||||||
<QTooltip>{{ t('negative.detail.isRookie') }}</QTooltip>
|
|
||||||
</QIcon>
|
|
||||||
<QIcon
|
|
||||||
v-if="row.peticionCompra"
|
|
||||||
name="vn:buyrequest"
|
|
||||||
size="xs"
|
|
||||||
color="primary"
|
|
||||||
class="cursor-pointer"
|
|
||||||
>
|
|
||||||
<QTooltip>{{ t('negative.detail.peticionCompra') }}</QTooltip>
|
|
||||||
</QIcon>
|
|
||||||
<QIcon
|
|
||||||
v-if="row.turno"
|
|
||||||
name="vn:calendar"
|
|
||||||
size="xs"
|
|
||||||
color="primary"
|
|
||||||
class="cursor-pointer"
|
|
||||||
>
|
|
||||||
<QTooltip>{{ t('negative.detail.turno') }}</QTooltip>
|
|
||||||
</QIcon>
|
|
||||||
</div></QTd
|
|
||||||
>
|
>
|
||||||
|
<QTooltip>{{ t('negative.detail.isBasket') }}</QTooltip>
|
||||||
|
</QIcon>
|
||||||
|
<QIcon
|
||||||
|
v-if="row.hasToIgnore"
|
||||||
|
name="star"
|
||||||
|
color="primary"
|
||||||
|
class="cursor-pointer fill-icon"
|
||||||
|
size="xs"
|
||||||
|
>
|
||||||
|
<QTooltip>{{ t('negative.detail.hasToIgnore') }}</QTooltip>
|
||||||
|
</QIcon>
|
||||||
|
<QIcon
|
||||||
|
v-if="row.hasObservation"
|
||||||
|
name="change_circle"
|
||||||
|
color="primary"
|
||||||
|
class="cursor-pointer"
|
||||||
|
size="xs"
|
||||||
|
>
|
||||||
|
<QTooltip>{{ t('negative.detail.hasObservation') }}</QTooltip> </QIcon
|
||||||
|
><QIcon
|
||||||
|
v-if="row.isRookie"
|
||||||
|
name="vn:Person"
|
||||||
|
size="xs"
|
||||||
|
color="primary"
|
||||||
|
class="cursor-pointer"
|
||||||
|
>
|
||||||
|
<QTooltip>{{ t('negative.detail.isRookie') }}</QTooltip>
|
||||||
|
</QIcon>
|
||||||
|
<QIcon
|
||||||
|
v-if="row.peticionCompra"
|
||||||
|
name="vn:buyrequest"
|
||||||
|
size="xs"
|
||||||
|
color="primary"
|
||||||
|
class="cursor-pointer"
|
||||||
|
>
|
||||||
|
<QTooltip>{{ t('negative.detail.peticionCompra') }}</QTooltip>
|
||||||
|
</QIcon>
|
||||||
|
<QIcon
|
||||||
|
v-if="row.turno"
|
||||||
|
name="vn:calendar"
|
||||||
|
size="xs"
|
||||||
|
color="primary"
|
||||||
|
class="cursor-pointer"
|
||||||
|
>
|
||||||
|
<QTooltip>{{ t('negative.detail.turno') }}</QTooltip>
|
||||||
|
</QIcon>
|
||||||
</template>
|
</template>
|
||||||
<template #column-nickname="{ row }">
|
<template #column-nickname="{ row }">
|
||||||
<span class="link" @click.stop>
|
<span class="link" @click.stop>
|
||||||
|
@ -305,9 +287,9 @@ function onBuysFetched(data) {
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
<template #column-ticketFk="{ row }">
|
<template #column-ticketFk="{ row }">
|
||||||
<span class="q-pa-sm link">
|
<span class="link" @click.stop>
|
||||||
{{ row.id }}
|
{{ row.ticketFk }}
|
||||||
<TicketDescriptorProxy :id="row.id" />
|
<TicketDescriptorProxy :id="row.ticketFk" />
|
||||||
</span>
|
</span>
|
||||||
</template>
|
</template>
|
||||||
<template #column-alertLevelCode="props">
|
<template #column-alertLevelCode="props">
|
||||||
|
@ -335,15 +317,6 @@ function onBuysFetched(data) {
|
||||||
</VnTable>
|
</VnTable>
|
||||||
</template>
|
</template>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.icon-container {
|
|
||||||
display: grid;
|
|
||||||
grid-template-columns: repeat(3, 0.2fr);
|
|
||||||
row-gap: 5px; /* Ajusta el espacio entre los iconos según sea necesario */
|
|
||||||
}
|
|
||||||
.icon-container > * {
|
|
||||||
width: 100%;
|
|
||||||
height: auto;
|
|
||||||
}
|
|
||||||
.list-enter-active,
|
.list-enter-active,
|
||||||
.list-leave-active {
|
.list-leave-active {
|
||||||
transition: all 1s ease;
|
transition: all 1s ease;
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
<script setup>
|
<script setup>
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
|
|
||||||
import VnSelect from 'src/components/common/VnSelect.vue';
|
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||||
import notifyResults from 'src/utils/notifyResults';
|
import { showResultsAsTable } from 'src/composables/showResultsTable';
|
||||||
|
import HandleSplitDialog from './HandleSplitDialog.vue';
|
||||||
|
const { openTable } = showResultsAsTable();
|
||||||
const emit = defineEmits(['update-item']);
|
const emit = defineEmits(['update-item']);
|
||||||
|
|
||||||
const showChangeItemDialog = ref(false);
|
const showChangeItemDialog = ref(false);
|
||||||
|
@ -17,15 +20,17 @@ const $props = defineProps({
|
||||||
const updateItem = async () => {
|
const updateItem = async () => {
|
||||||
try {
|
try {
|
||||||
showChangeItemDialog.value = true;
|
showChangeItemDialog.value = true;
|
||||||
const rowsToUpdate = $props.selectedRows.map(({ saleFk, quantity }) =>
|
const rowsToUpdate = $props.selectedRows.map(({ ticketFk, saleFk, quantity }) =>
|
||||||
axios.post(`Sales/replaceItem`, {
|
axios.post(`Sales/replaceItem`, {
|
||||||
|
ticketFk,
|
||||||
saleFk,
|
saleFk,
|
||||||
substitutionFk: newItem.value,
|
substitutionFk: newItem.value,
|
||||||
quantity,
|
quantity,
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
const result = await Promise.allSettled(rowsToUpdate);
|
const result = await Promise.allSettled(rowsToUpdate);
|
||||||
notifyResults(result, 'saleFk');
|
|
||||||
|
openTable(HandleSplitDialog, result, 'ticketFk', 'changeItem');
|
||||||
emit('update-item', newItem.value);
|
emit('update-item', newItem.value);
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
console.error('Error updating item:', err);
|
console.error('Error updating item:', err);
|
||||||
|
@ -37,9 +42,9 @@ const updateItem = async () => {
|
||||||
<template>
|
<template>
|
||||||
<QCard class="q-pa-sm">
|
<QCard class="q-pa-sm">
|
||||||
<QCardSection class="row items-center justify-center column items-stretch">
|
<QCardSection class="row items-center justify-center column items-stretch">
|
||||||
{{ showChangeItemDialog }}
|
|
||||||
<span>{{ $t('negative.detail.modal.changeItem.title') }}</span>
|
<span>{{ $t('negative.detail.modal.changeItem.title') }}</span>
|
||||||
<VnSelect
|
<VnSelect
|
||||||
|
:label="$t('negative.detail.modal.changeItem.placeholder')"
|
||||||
url="Items/WithName"
|
url="Items/WithName"
|
||||||
:fields="['id', 'name']"
|
:fields="['id', 'name']"
|
||||||
:sort-by="['id DESC']"
|
:sort-by="['id DESC']"
|
||||||
|
|
|
@ -2,8 +2,9 @@
|
||||||
import { ref } from 'vue';
|
import { ref } from 'vue';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import VnInput from 'src/components/common/VnInput.vue';
|
import VnInput from 'src/components/common/VnInput.vue';
|
||||||
import notifyResults from 'src/utils/notifyResults';
|
import { showResultsAsTable } from 'src/composables/showResultsTable';
|
||||||
|
import HandleSplitDialog from './HandleSplitDialog.vue';
|
||||||
|
const { openTable } = showResultsAsTable();
|
||||||
const showChangeQuantityDialog = ref(false);
|
const showChangeQuantityDialog = ref(false);
|
||||||
const newQuantity = ref(null);
|
const newQuantity = ref(null);
|
||||||
const $props = defineProps({
|
const $props = defineProps({
|
||||||
|
@ -14,22 +15,17 @@ const $props = defineProps({
|
||||||
});
|
});
|
||||||
const emit = defineEmits(['update-quantity']);
|
const emit = defineEmits(['update-quantity']);
|
||||||
const updateQuantity = async () => {
|
const updateQuantity = async () => {
|
||||||
try {
|
showChangeQuantityDialog.value = true;
|
||||||
showChangeQuantityDialog.value = true;
|
const rowsToUpdate = $props.selectedRows.map(({ saleFk }) =>
|
||||||
const rowsToUpdate = $props.selectedRows.map(({ saleFk }) =>
|
axios.post(`Sales/${saleFk}/updateQuantity`, {
|
||||||
axios.post(`Sales/${saleFk}/updateQuantity`, {
|
saleFk,
|
||||||
saleFk,
|
quantity: +newQuantity.value,
|
||||||
quantity: +newQuantity.value,
|
}),
|
||||||
}),
|
);
|
||||||
);
|
|
||||||
|
|
||||||
const result = await Promise.allSettled(rowsToUpdate);
|
const result = await Promise.allSettled(rowsToUpdate);
|
||||||
notifyResults(result, 'saleFk');
|
openTable(HandleSplitDialog, result, 'ticketFk', 'changeQuantity');
|
||||||
|
emit('update-quantity', newQuantity.value);
|
||||||
emit('update-quantity', newQuantity.value);
|
|
||||||
} catch (err) {
|
|
||||||
return err;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,9 @@ import { ref } from 'vue';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import VnSelect from 'src/components/common/VnSelect.vue';
|
import VnSelect from 'src/components/common/VnSelect.vue';
|
||||||
import FetchData from 'components/FetchData.vue';
|
import FetchData from 'components/FetchData.vue';
|
||||||
import notifyResults from 'src/utils/notifyResults';
|
import { showResultsAsTable } from 'src/composables/showResultsTable';
|
||||||
|
import HandleSplitDialog from './HandleSplitDialog.vue';
|
||||||
|
const { openTable } = showResultsAsTable();
|
||||||
|
|
||||||
const emit = defineEmits(['update-state']);
|
const emit = defineEmits(['update-state']);
|
||||||
const editableStates = ref([]);
|
const editableStates = ref([]);
|
||||||
|
@ -16,21 +18,18 @@ const $props = defineProps({
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
const updateState = async () => {
|
const updateState = async () => {
|
||||||
try {
|
|
||||||
showChangeStateDialog.value = true;
|
showChangeStateDialog.value = true;
|
||||||
const rowsToUpdate = $props.selectedRows.map(({ id }) =>
|
const rowsToUpdate = $props.selectedRows.map(({ ticketFk }) =>
|
||||||
axios.post(`Tickets/state`, {
|
axios.post(`Tickets/state`, {
|
||||||
ticketFk: id,
|
ticketFk,
|
||||||
code: newState.value,
|
code: newState.value,
|
||||||
}),
|
}),
|
||||||
);
|
);
|
||||||
const result = await Promise.allSettled(rowsToUpdate);
|
|
||||||
notifyResults(result, 'ticketFk');
|
|
||||||
|
|
||||||
|
const result = await Promise.allSettled(rowsToUpdate);
|
||||||
|
|
||||||
|
openTable(HandleSplitDialog, result, 'ticketFk', 'changeState');
|
||||||
emit('update-state', newState.value);
|
emit('update-state', newState.value);
|
||||||
} catch (err) {
|
|
||||||
return err;
|
|
||||||
}
|
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
@ -47,8 +46,6 @@ const updateState = async () => {
|
||||||
:label="$t('negative.detail.modal.changeState.placeholder')"
|
:label="$t('negative.detail.modal.changeState.placeholder')"
|
||||||
v-model="newState"
|
v-model="newState"
|
||||||
:options="editableStates"
|
:options="editableStates"
|
||||||
option-label="name"
|
|
||||||
option-value="code"
|
|
||||||
/>
|
/>
|
||||||
</QCardSection>
|
</QCardSection>
|
||||||
<QCardActions align="right">
|
<QCardActions align="right">
|
||||||
|
|
|
@ -0,0 +1,226 @@
|
||||||
|
<script setup>
|
||||||
|
import { computed, ref } from 'vue';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import TicketDescriptorProxy from 'src/pages/Ticket/Card/TicketDescriptorProxy.vue';
|
||||||
|
import FetchData from 'components/FetchData.vue';
|
||||||
|
import ItemDescriptorProxy from 'src/pages/Item/Card/ItemDescriptorProxy.vue';
|
||||||
|
import TicketSaleTable from 'src/pages/Ticket/Card/components/TicketSaleTable.vue';
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
import TicketSaleTableDialog from '../../Card/components/TicketSaleTableDialog.vue';
|
||||||
|
|
||||||
|
const quasar = useQuasar();
|
||||||
|
const { t } = useI18n();
|
||||||
|
const $props = defineProps({
|
||||||
|
results: {
|
||||||
|
type: Array,
|
||||||
|
default: () => [],
|
||||||
|
},
|
||||||
|
tag: {
|
||||||
|
type: String,
|
||||||
|
default: 'ticketFk',
|
||||||
|
},
|
||||||
|
title: {
|
||||||
|
type: String,
|
||||||
|
default: 'bulkEdit.edit',
|
||||||
|
},
|
||||||
|
action: {
|
||||||
|
type: String,
|
||||||
|
default: '',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
const results = ref($props.results);
|
||||||
|
const states = ref([]);
|
||||||
|
|
||||||
|
const columns = computed(() => [
|
||||||
|
{
|
||||||
|
name: 'status',
|
||||||
|
label: t('negative.split.status'),
|
||||||
|
field: ({ status }) => status,
|
||||||
|
sortable: true,
|
||||||
|
align: 'center',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'value',
|
||||||
|
label: t('negative.split.ticket'),
|
||||||
|
sortable: true,
|
||||||
|
align: 'center',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'statusText',
|
||||||
|
label: t('negative.split.message'),
|
||||||
|
sortable: true,
|
||||||
|
align: 'center',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'actions',
|
||||||
|
label: '',
|
||||||
|
sortable: false,
|
||||||
|
align: 'right',
|
||||||
|
},
|
||||||
|
]);
|
||||||
|
function getState(value) {
|
||||||
|
return states.value.find((state) => state.id === value)?.name;
|
||||||
|
}
|
||||||
|
function getTicketRejected(row) {
|
||||||
|
return JSON.parse(row.reason.config.data)?.ticketFk;
|
||||||
|
}
|
||||||
|
function getTicketFulFilled(row) {
|
||||||
|
return JSON.parse(row.value.config.data).ticketFk;
|
||||||
|
}
|
||||||
|
function getIcon(value) {
|
||||||
|
const icons = {
|
||||||
|
fulfilled: {
|
||||||
|
name: 'check_circle',
|
||||||
|
color: 'secondary',
|
||||||
|
},
|
||||||
|
noSplit: {
|
||||||
|
name: 'warning',
|
||||||
|
color: 'primary',
|
||||||
|
},
|
||||||
|
rejected: {
|
||||||
|
name: 'close',
|
||||||
|
color: 'negative',
|
||||||
|
},
|
||||||
|
};
|
||||||
|
return icons[value];
|
||||||
|
}
|
||||||
|
|
||||||
|
function openLinesDialog(row) {
|
||||||
|
const ticket =
|
||||||
|
row.status === 'fulfilled'
|
||||||
|
? (row.value.data[$props.tag] ?? getTicketFulFilled(row))
|
||||||
|
: getTicketRejected(row);
|
||||||
|
quasar.dialog({
|
||||||
|
component: TicketSaleTableDialog,
|
||||||
|
componentProps: {
|
||||||
|
ticket: ticket,
|
||||||
|
sales: null,
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<template>
|
||||||
|
<QDialog ref="dialogRef" @hide="onDialogHide" data-cy="handleSplitDialog" persistent>
|
||||||
|
<FetchData
|
||||||
|
v-if="$props.action === 'changeState'"
|
||||||
|
url="States"
|
||||||
|
@on-fetch="(data) => (states = data)"
|
||||||
|
auto-load
|
||||||
|
/>
|
||||||
|
<QCard class="q-pa-sm" style="width: 60vw; max-width: 80vw">
|
||||||
|
<QCardSection class="row items-center q-pb-none">
|
||||||
|
<QAvatar
|
||||||
|
:icon="icon"
|
||||||
|
color="primary"
|
||||||
|
text-color="white"
|
||||||
|
size="xl"
|
||||||
|
v-if="icon"
|
||||||
|
/>
|
||||||
|
<span class="text-h6 text-grey"
|
||||||
|
>{{ t($props.title) }} ({{ $props.action }})
|
||||||
|
</span>
|
||||||
|
<QSpace />
|
||||||
|
<QBtn icon="close" flat round dense v-close-popup />
|
||||||
|
</QCardSection>
|
||||||
|
<QCardSection class="row items-center justify-center column items-stretch">
|
||||||
|
<QTable
|
||||||
|
:rows="results"
|
||||||
|
:columns="columns"
|
||||||
|
row-key="newTicket"
|
||||||
|
:no-data-label="t('globals.noResults')"
|
||||||
|
flat
|
||||||
|
dense
|
||||||
|
hide-bottom
|
||||||
|
auto-load
|
||||||
|
>
|
||||||
|
<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-cell-status="{ value }">
|
||||||
|
<QTd align="center">
|
||||||
|
<QIcon
|
||||||
|
:name="`${getIcon(value)?.name}`"
|
||||||
|
size="xs"
|
||||||
|
class="cursor-pointer"
|
||||||
|
:color="getIcon(value)?.color"
|
||||||
|
>
|
||||||
|
</QIcon
|
||||||
|
></QTd>
|
||||||
|
</template>
|
||||||
|
<template #body-cell-value="{ row }">
|
||||||
|
<QTd align="center">
|
||||||
|
<div class="link" @click.stop>
|
||||||
|
<div v-if="row.status === 'fulfilled'">
|
||||||
|
<span v-if="$props.action !== 'changeItem'">
|
||||||
|
{{ row.value.data[$props.tag] }}
|
||||||
|
<TicketDescriptorProxy
|
||||||
|
:id="row.value.data[$props.tag]"
|
||||||
|
>
|
||||||
|
</TicketDescriptorProxy>
|
||||||
|
</span>
|
||||||
|
<span v-else
|
||||||
|
>{{ getTicketFulFilled(row)
|
||||||
|
}}<TicketDescriptorProxy
|
||||||
|
:id="getTicketFulFilled(row)"
|
||||||
|
>
|
||||||
|
</TicketDescriptorProxy>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<span v-else>
|
||||||
|
{{ getTicketRejected(row)
|
||||||
|
}}<TicketDescriptorProxy :id="getTicketRejected(row)">
|
||||||
|
</TicketDescriptorProxy
|
||||||
|
></span>
|
||||||
|
</div>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
<template #body-cell-statusText="{ row }">
|
||||||
|
<QTd align="center">
|
||||||
|
<div v-if="row.status === 'fulfilled'">
|
||||||
|
<div v-if="$props.action === 'changeState'">
|
||||||
|
{{ getState(row.value.data.stateFk) }}
|
||||||
|
</div>
|
||||||
|
<div v-if="$props.action === 'split'">
|
||||||
|
<span>
|
||||||
|
{{ row.value.data.status }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div v-if="$props.action === 'changeItem'">
|
||||||
|
<span class="link" @click.stop>
|
||||||
|
{{ value }}
|
||||||
|
<ItemDescriptorProxy :id="value">
|
||||||
|
</ItemDescriptorProxy>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
<div v-if="$props.action === 'changeQuantity'">
|
||||||
|
{{ row.value.data.quantity }}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div v-else>{{ row.reason.response.data.error.message }}</div>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
<template #body-cell-actions="props">
|
||||||
|
<QTd align="center">
|
||||||
|
<div v-if="['changeItem'].includes($props.action)">
|
||||||
|
<QIcon
|
||||||
|
name="list"
|
||||||
|
size="xs"
|
||||||
|
color="primary"
|
||||||
|
class="cursor-pointer"
|
||||||
|
@click="openLinesDialog(props.row)"
|
||||||
|
>
|
||||||
|
<QTooltip>{{ t('ticketList.toLines') }} </QTooltip>
|
||||||
|
</QIcon>
|
||||||
|
</div>
|
||||||
|
</QTd>
|
||||||
|
</template>
|
||||||
|
</QTable>
|
||||||
|
</QCardSection>
|
||||||
|
</QCard>
|
||||||
|
</QDialog>
|
||||||
|
</template>
|
|
@ -286,7 +286,7 @@ negative:
|
||||||
title: Gestionar tickets spliteados
|
title: Gestionar tickets spliteados
|
||||||
subTitle: Confir fecha y agencia
|
subTitle: Confir fecha y agencia
|
||||||
split:
|
split:
|
||||||
ticket: Ticket viejo
|
ticket: Ticket origen
|
||||||
newTicket: Ticket nuevo
|
newTicket: Ticket nuevo
|
||||||
status: Estado
|
status: Estado
|
||||||
message: Mensaje
|
message: Mensaje
|
||||||
|
|
|
@ -11,7 +11,12 @@ const $props = defineProps({
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<QPopupProxy>
|
<QPopupProxy data-cy="zoneDescriptorProxy">
|
||||||
<ZoneDescriptor v-if="$props.id" :id="$props.id" :summary="ZoneSummary" />
|
<ZoneDescriptor
|
||||||
|
v-if="$props.id"
|
||||||
|
:id="$props.id"
|
||||||
|
:summary="ZoneSummary"
|
||||||
|
data-cy="zoneDescriptorProxy"
|
||||||
|
/>
|
||||||
</QPopupProxy>
|
</QPopupProxy>
|
||||||
</template>
|
</template>
|
||||||
|
|
|
@ -1,147 +1,177 @@
|
||||||
/// <reference types="cypress" />
|
/// <reference types="cypress" />
|
||||||
|
|
||||||
|
const firstRow = 'tr.cursor-pointer > :nth-child(1)';
|
||||||
|
const ticketId = 1000000;
|
||||||
|
const findTr = (index) => `tbody > tr > :nth-child(${index}) > div`;
|
||||||
|
const clickNotificationAction = () => {
|
||||||
|
const notification = '.q-notification';
|
||||||
|
cy.waitForElement(notification);
|
||||||
|
cy.get(notification).should('be.visible');
|
||||||
|
cy.get(notification).find('.q-btn').click();
|
||||||
|
cy.get(notification).should('not.be.visible');
|
||||||
|
};
|
||||||
describe('Ticket Lack detail', () => {
|
describe('Ticket Lack detail', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
|
cy.viewport(1280, 720);
|
||||||
cy.login('developer');
|
cy.login('developer');
|
||||||
cy.intercept('GET', /\/api\/Tickets\/itemLack\/5.*$/, {
|
cy.intercept('GET', /\/api\/Tickets\/itemLack\/88.*$/).as('getItemLack');
|
||||||
statusCode: 200,
|
cy.visit('/#/ticket/negative/88');
|
||||||
body: [
|
|
||||||
{
|
|
||||||
saleFk: 33,
|
|
||||||
code: 'OK',
|
|
||||||
ticketFk: 142,
|
|
||||||
nickname: 'Malibu Point',
|
|
||||||
shipped: '2000-12-31T23:00:00.000Z',
|
|
||||||
hour: 0,
|
|
||||||
quantity: 50,
|
|
||||||
agName: 'Super-Man delivery',
|
|
||||||
alertLevel: 0,
|
|
||||||
stateName: 'OK',
|
|
||||||
stateId: 3,
|
|
||||||
itemFk: 5,
|
|
||||||
price: 1.79,
|
|
||||||
alertLevelCode: 'FREE',
|
|
||||||
zoneFk: 9,
|
|
||||||
zoneName: 'Zone superMan',
|
|
||||||
theoreticalhour: '2011-11-01T22:59:00.000Z',
|
|
||||||
isRookie: 1,
|
|
||||||
turno: 1,
|
|
||||||
peticionCompra: 1,
|
|
||||||
hasObservation: 1,
|
|
||||||
hasToIgnore: 1,
|
|
||||||
isBasket: 1,
|
|
||||||
minTimed: 0,
|
|
||||||
customerId: 1104,
|
|
||||||
customerName: 'Tony Stark',
|
|
||||||
observationTypeCode: 'administrative',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
}).as('getItemLack');
|
|
||||||
|
|
||||||
cy.visit('/#/ticket/negative/5');
|
cy.wait('@getItemLack').then((interception) => {
|
||||||
cy.wait('@getItemLack');
|
const { query } = interception.request;
|
||||||
|
const filter = JSON.parse(query.filter);
|
||||||
|
expect(filter).to.have.property('where');
|
||||||
|
expect(filter.where).to.have.property('alertLevelCode', 'FREE');
|
||||||
|
});
|
||||||
|
cy.domContentLoad();
|
||||||
|
cy.waitForElement('.q-table');
|
||||||
});
|
});
|
||||||
describe('Table actions', () => {
|
describe('Table detail', () => {
|
||||||
it.skip('should display only one row in the lack list', () => {
|
it('should open descriptors', () => {
|
||||||
cy.location('href').should('contain', '#/ticket/negative/5');
|
cy.get('.q-table').should('be.visible');
|
||||||
|
cy.colField('zoneName').click();
|
||||||
cy.get('[data-cy="changeItem"]').should('be.disabled');
|
cy.dataCy('zoneDescriptorProxy').should('be.visible');
|
||||||
cy.get('[data-cy="changeState"]').should('be.disabled');
|
cy.get('.q-item > .q-item__label').should('have.text', ' #1');
|
||||||
cy.get('[data-cy="changeQuantity"]').should('be.disabled');
|
cy.colField('ticketFk').click();
|
||||||
cy.get('[data-cy="itemProposal"]').should('be.disabled');
|
cy.dataCy('ticketDescriptorProxy').should('be.visible');
|
||||||
cy.get('[data-cy="transferLines"]').should('be.disabled');
|
cy.get('.q-item > .q-item__label').should('have.text', ` #${ticketId}`);
|
||||||
|
cy.colField('nickname').find('.link').click();
|
||||||
|
cy.waitForElement('[data-cy="customerDescriptorProxy"]');
|
||||||
|
cy.dataCy('customerDescriptorProxy').should('be.visible');
|
||||||
|
cy.get('.q-item > .q-item__label').should('have.text', ' #1');
|
||||||
|
});
|
||||||
|
it('should display only one row in the lack list', () => {
|
||||||
|
cy.dataCy('changeItem').should('be.disabled');
|
||||||
|
cy.dataCy('changeState').should('be.disabled');
|
||||||
|
cy.dataCy('changeQuantity').should('be.disabled');
|
||||||
|
cy.dataCy('itemProposal').should('be.disabled');
|
||||||
|
cy.dataCy('transferLines').should('be.disabled');
|
||||||
cy.get('tr.cursor-pointer > :nth-child(1)').click();
|
cy.get('tr.cursor-pointer > :nth-child(1)').click();
|
||||||
cy.get('[data-cy="changeItem"]').should('be.enabled');
|
cy.dataCy('changeItem').should('be.enabled');
|
||||||
cy.get('[data-cy="changeState"]').should('be.enabled');
|
cy.dataCy('changeState').should('be.enabled');
|
||||||
cy.get('[data-cy="changeQuantity"]').should('be.enabled');
|
cy.dataCy('changeQuantity').should('be.enabled');
|
||||||
cy.get('[data-cy="itemProposal"]').should('be.enabled');
|
cy.dataCy('itemProposal').should('be.enabled');
|
||||||
cy.get('[data-cy="transferLines"]').should('be.enabled');
|
cy.dataCy('transferLines').should('be.enabled');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
describe('Split', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.get(firstRow).click();
|
||||||
|
cy.dataCy('transferLines').click();
|
||||||
|
});
|
||||||
|
it('Split', () => {
|
||||||
|
cy.dataCy('ticketTransferPopup').find('.flex > .q-btn').click();
|
||||||
|
|
||||||
|
clickNotificationAction();
|
||||||
|
|
||||||
|
cy.dataCy('handleSplitDialog').should('be.visible');
|
||||||
|
cy.dataCy('handleSplitDialog').find('tbody > tr > :nth-child(1) > .q-icon');
|
||||||
|
cy.dataCy('handleSplitDialog').find(findTr(2)).should('have.class', 'link');
|
||||||
|
cy.dataCy('handleSplitDialog')
|
||||||
|
.find(`${findTr(2)}.link > div > span`)
|
||||||
|
.should('have.text', `${ticketId} `);
|
||||||
|
cy.dataCy('handleSplitDialog').find(findTr(3)).should('have.text', 'noSplit');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
describe('Change Item', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.get(firstRow).click();
|
||||||
|
cy.dataCy('changeItem').click();
|
||||||
|
});
|
||||||
|
it('Change failed', () => {
|
||||||
|
cy.dataCy('New item_select').should('be.visible').click();
|
||||||
|
cy.get('.q-item').contains('Palito rojo').click();
|
||||||
|
cy.get('.q-btn--unelevated > .q-btn__content > .block').click();
|
||||||
|
|
||||||
|
clickNotificationAction();
|
||||||
|
|
||||||
|
cy.dataCy('handleSplitDialog').should('be.visible');
|
||||||
|
cy.dataCy('handleSplitDialog').find('tbody > tr > :nth-child(1) > .q-icon');
|
||||||
|
cy.dataCy('handleSplitDialog').find(findTr(2)).should('have.class', 'link');
|
||||||
|
cy.dataCy('handleSplitDialog')
|
||||||
|
.find(`${findTr(2)}.link > span`)
|
||||||
|
.should('have.text', `${ticketId}`);
|
||||||
|
cy.dataCy('handleSplitDialog')
|
||||||
|
.find(findTr(3))
|
||||||
|
.should('have.text', 'price retrieval failed');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
describe('Change state', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.get(firstRow).click();
|
||||||
|
cy.dataCy('changeState').click();
|
||||||
|
});
|
||||||
|
it('Change success', () => {
|
||||||
|
cy.dataCy('New state_select').should('be.visible').click();
|
||||||
|
cy.get('.q-item').contains('OK').click();
|
||||||
|
cy.get('.q-btn--unelevated > .q-btn__content > .block').click();
|
||||||
|
|
||||||
|
clickNotificationAction();
|
||||||
|
|
||||||
|
cy.dataCy('handleSplitDialog')
|
||||||
|
.should('be.visible')
|
||||||
|
.find('tbody > tr > :nth-child(1) > .q-icon');
|
||||||
|
cy.dataCy('handleSplitDialog').find(findTr(2)).should('have.class', 'link');
|
||||||
|
cy.dataCy('handleSplitDialog')
|
||||||
|
.find(`${findTr(2)}.link > div > span`)
|
||||||
|
.should('have.text', `${ticketId} `);
|
||||||
|
cy.dataCy('handleSplitDialog').find(findTr(3)).should('have.text', 'OK');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
describe('change quantity', () => {
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.get(firstRow).click();
|
||||||
|
|
||||||
|
cy.dataCy('changeQuantity').click();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Change success', () => {
|
||||||
|
cy.dataCy('New quantity_input').type(10);
|
||||||
|
cy.get('.q-btn--unelevated > .q-btn__content > .block').click();
|
||||||
|
|
||||||
|
clickNotificationAction();
|
||||||
|
|
||||||
|
cy.dataCy('handleSplitDialog')
|
||||||
|
.should('be.visible')
|
||||||
|
.find('tbody > tr > :nth-child(1) > .q-icon');
|
||||||
|
cy.dataCy('handleSplitDialog').find(findTr(2)).should('have.class', 'link');
|
||||||
|
cy.dataCy('handleSplitDialog')
|
||||||
|
.find(`${findTr(2)}.link > div > span`)
|
||||||
|
.should('have.text', `${ticketId} `);
|
||||||
|
cy.dataCy('handleSplitDialog').find(findTr(3)).should('have.text', '10');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
describe('Item proposal', () => {
|
describe('Item proposal', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
cy.get('tr.cursor-pointer > :nth-child(1)').click();
|
cy.get(firstRow).click();
|
||||||
|
cy.dataCy('itemProposal').click();
|
||||||
cy.intercept('GET', /\/api\/Items\/getSimilar\?.*$/, {
|
|
||||||
statusCode: 200,
|
|
||||||
body: [
|
|
||||||
{
|
|
||||||
id: 1,
|
|
||||||
longName: 'Ranged weapon longbow 50cm',
|
|
||||||
subName: 'Stark Industries',
|
|
||||||
tag5: 'Color',
|
|
||||||
value5: 'Brown',
|
|
||||||
match5: 0,
|
|
||||||
match6: 0,
|
|
||||||
match7: 0,
|
|
||||||
match8: 1,
|
|
||||||
tag6: 'Categoria',
|
|
||||||
value6: '+1 precission',
|
|
||||||
tag7: 'Tallos',
|
|
||||||
value7: '1',
|
|
||||||
tag8: null,
|
|
||||||
value8: null,
|
|
||||||
available: 20,
|
|
||||||
calc_id: 6,
|
|
||||||
counter: 0,
|
|
||||||
minQuantity: 1,
|
|
||||||
visible: null,
|
|
||||||
price2: 1,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 2,
|
|
||||||
longName: 'Ranged weapon longbow 100cm',
|
|
||||||
subName: 'Stark Industries',
|
|
||||||
tag5: 'Color',
|
|
||||||
value5: 'Brown',
|
|
||||||
match5: 0,
|
|
||||||
match6: 1,
|
|
||||||
match7: 0,
|
|
||||||
match8: 1,
|
|
||||||
tag6: 'Categoria',
|
|
||||||
value6: '+1 precission',
|
|
||||||
tag7: 'Tallos',
|
|
||||||
value7: '1',
|
|
||||||
tag8: null,
|
|
||||||
value8: null,
|
|
||||||
available: 50,
|
|
||||||
calc_id: 6,
|
|
||||||
counter: 1,
|
|
||||||
minQuantity: 5,
|
|
||||||
visible: null,
|
|
||||||
price2: 10,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
id: 3,
|
|
||||||
longName: 'Ranged weapon longbow 200cm',
|
|
||||||
subName: 'Stark Industries',
|
|
||||||
tag5: 'Color',
|
|
||||||
value5: 'Brown',
|
|
||||||
match5: 1,
|
|
||||||
match6: 1,
|
|
||||||
match7: 1,
|
|
||||||
match8: 1,
|
|
||||||
tag6: 'Categoria',
|
|
||||||
value6: '+1 precission',
|
|
||||||
tag7: 'Tallos',
|
|
||||||
value7: '1',
|
|
||||||
tag8: null,
|
|
||||||
value8: null,
|
|
||||||
available: 185,
|
|
||||||
calc_id: 6,
|
|
||||||
counter: 10,
|
|
||||||
minQuantity: 10,
|
|
||||||
visible: null,
|
|
||||||
price2: 100,
|
|
||||||
},
|
|
||||||
],
|
|
||||||
}).as('getItemGetSimilar');
|
|
||||||
cy.get('[data-cy="itemProposal"]').click();
|
|
||||||
cy.wait('@getItemGetSimilar');
|
|
||||||
});
|
});
|
||||||
describe('Replace item if', () => {
|
describe('Replace item if', () => {
|
||||||
it.only('Quantity is less than available', () => {
|
it.skip('Quantity is less than available', () => {
|
||||||
cy.get(':nth-child(1) > .text-right > .q-btn').click();
|
cy.get(':nth-child(1) > .text-right > .q-btn').click();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('item proposal cells', () => {
|
||||||
|
cy.get(
|
||||||
|
':nth-child(1) > .q-table--col-auto-width > .q-btn > .q-btn__content > .q-icon',
|
||||||
|
).should('not.be.visible');
|
||||||
|
|
||||||
|
cy.get('[data-col-field="longName"] .link').first().click();
|
||||||
|
|
||||||
|
cy.dataCy('itemDescriptorProxy').should('be.visible');
|
||||||
|
|
||||||
|
cy.colField('longName', 2)
|
||||||
|
.find('.no-padding > .q-td > .middle')
|
||||||
|
.should('have.class', 'proposal-primary');
|
||||||
|
cy.colField('tag5', 2)
|
||||||
|
.find('.no-padding > .match')
|
||||||
|
.should('have.class', 'match');
|
||||||
|
cy.colField('tag6', 2)
|
||||||
|
.find('.no-padding > .match')
|
||||||
|
.should('have.class', 'match');
|
||||||
|
cy.colField('tag7', 2).click();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,34 +1,16 @@
|
||||||
/// <reference types="cypress" />
|
/// <reference types="cypress" />
|
||||||
describe('Ticket Lack list', () => {
|
describe('Ticket Lack list', () => {
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
cy.login('developer');
|
cy.viewport(1280, 720);
|
||||||
cy.intercept('GET', /Tickets\/itemLack\?.*$/, {
|
|
||||||
statusCode: 200,
|
|
||||||
body: [
|
|
||||||
{
|
|
||||||
itemFk: 5,
|
|
||||||
longName: 'Ranged weapon pistol 9mm',
|
|
||||||
warehouseFk: 1,
|
|
||||||
producer: null,
|
|
||||||
size: 15,
|
|
||||||
category: null,
|
|
||||||
warehouse: 'Warehouse One',
|
|
||||||
lack: -50,
|
|
||||||
inkFk: 'SLV',
|
|
||||||
timed: '2025-01-25T22:59:00.000Z',
|
|
||||||
minTimed: '23:59',
|
|
||||||
originFk: 'Holand',
|
|
||||||
},
|
|
||||||
],
|
|
||||||
}).as('getLack');
|
|
||||||
|
|
||||||
|
cy.login('developer');
|
||||||
cy.visit('/#/ticket/negative');
|
cy.visit('/#/ticket/negative');
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('Table actions', () => {
|
describe('Table actions', () => {
|
||||||
it('should display only one row in the lack list', () => {
|
it('should display only one row in the lack list', () => {
|
||||||
cy.wait('@getLack', { timeout: 10000 });
|
cy.get('[data-col-field="longName"]').first().click();
|
||||||
|
cy.dataCy('itemDescriptorProxy').should('be.visible');
|
||||||
cy.get('.q-virtual-scroll__content > :nth-child(1) > .sticky').click();
|
cy.get('.q-virtual-scroll__content > :nth-child(1) > .sticky').click();
|
||||||
cy.location('href').should('contain', '#/ticket/negative/5');
|
cy.location('href').should('contain', '#/ticket/negative/5');
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,18 +1,17 @@
|
||||||
/// <reference types="cypress" />
|
/// <reference types="cypress" />
|
||||||
describe('Ticket expedtion', () => {
|
describe('Ticket expedition', () => {
|
||||||
const tableContent = '.q-table .q-virtual-scroll__content';
|
const tableContent = '.q-table .q-virtual-scroll__content';
|
||||||
const stateTd = 'td:nth-child(9)';
|
const stateTd = 'td:nth-child(9)';
|
||||||
|
|
||||||
beforeEach(() => {
|
beforeEach(() => {
|
||||||
cy.login('developer');
|
cy.login('developer');
|
||||||
cy.viewport(1920, 1080);
|
cy.viewport(1920, 1080);
|
||||||
|
cy.visit('#/ticket/1/expedition');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should change the state', () => {
|
it('should change the state', () => {
|
||||||
cy.visit('#/ticket/1/expedition');
|
|
||||||
cy.intercept('GET', /\/api\/Expeditions\/filter/).as('show');
|
cy.intercept('GET', /\/api\/Expeditions\/filter/).as('show');
|
||||||
cy.intercept('POST', /\/api\/ExpeditionStates\/addExpeditionState/).as('add');
|
cy.intercept('POST', /\/api\/ExpeditionStates\/addExpeditionState/).as('add');
|
||||||
|
|
||||||
cy.wait('@show');
|
cy.wait('@show');
|
||||||
cy.selectRows([1, 2]);
|
cy.selectRows([1, 2]);
|
||||||
|
|
||||||
|
|
|
@ -396,3 +396,11 @@ Cypress.Commands.add('clickButtonWithIcon', (iconClass) => {
|
||||||
Cypress.Commands.add('clickButtonWithText', (buttonText) => {
|
Cypress.Commands.add('clickButtonWithText', (buttonText) => {
|
||||||
cy.get('.q-btn').contains(buttonText).click();
|
cy.get('.q-btn').contains(buttonText).click();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Cypress.Commands.add('colField', (name, index = null) => {
|
||||||
|
if (index) {
|
||||||
|
cy.get(`:nth-child(${index}) > [data-col-field="${name}"]`);
|
||||||
|
} else {
|
||||||
|
cy.get(`[data-col-field="${name}"]`);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
Loading…
Reference in New Issue