Hotfix: reload window when price is recalculated #863

Merged
jon merged 6 commits from Hotfix-RecalculatePriceReload into master 2024-10-25 09:32:24 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 994237260e - Show all commits

View File

@ -476,7 +476,7 @@ onUnmounted(() => (stateStore.rightDrawer = false));
:ticket-config="ticketConfig"
@get-mana="getMana()"
@update-discounts="updateDiscount"
@re-calculated-price="resetChanges"
@refresh-table="resetChanges"
/>
<QBtn
color="primary"

View File

@ -14,7 +14,7 @@ import { toDateFormat } from 'src/filters/date';
import { useRole } from 'src/composables/useRole';
import { useVnConfirm } from 'composables/useVnConfirm';
const emit = defineEmits(['updateDiscounts', 'getMana', 'reCalculatedPrice']);
const emit = defineEmits(['updateDiscounts', 'getMana', 'refreshTable']);
const props = defineProps({
disable: {
@ -107,7 +107,7 @@ const calculateSalePrice = async () => {
await axios.post(`Sales/recalculatePrice`, props.sales);
notify(t('globals.dataSaved'), 'positive');
emit('reCalculatedPrice', props.sales);
emit('refreshTable', props.sales);
jon marked this conversation as resolved Outdated

y si ahora tenemos otro evento que refresca la tabla...
Cambiale el nombre a refreshTable

y si ahora tenemos otro evento que refresca la tabla... Cambiale el nombre a refreshTable
};
const changeMultipleDiscount = () => {