Hotfix: delete event and dated value when excluding a day #1010

Merged
jon merged 11 commits from Hotfix-ZoneEventsExclusion into master 2024-11-28 12:51:45 +00:00
1 changed files with 6 additions and 6 deletions
Showing only changes of commit 07ba02aec8 - Show all commits

View File

@ -1,5 +1,5 @@
<script setup>
import { ref, computed, onMounted } from 'vue';
import { ref, computed, onMounted, reactive } from 'vue';
import { useI18n } from 'vue-i18n';
import { useRoute } from 'vue-router';
@ -43,7 +43,7 @@ const { t } = useI18n();
const { openConfirmationModal } = useVnConfirm();
const isNew = computed(() => props.isNewMode);
const dated = ref(props.date);
const dated = reactive(props.date);
const tickedNodes = ref();
const _excludeType = ref('all');
@ -68,12 +68,11 @@ const exclusionGeoCreate = async () => {
const exclusionCreate = async () => {
if (isNew.value)

la diferencia es que el body es array o no?
A lo mejor con el metodo flat podemos simplificar el codigo

la diferencia es que el body es array o no? A lo mejor con el metodo flat podemos simplificar el codigo

Porque hemos decidido enviarlo como array y antes hay un else?
Mirar error

Porque hemos decidido enviarlo como array y antes hay un else? Mirar error
await axios.post(`Zones/${route.params.id}/exclusions`, [{ dated: dated.value }]);
await axios.post(`Zones/${route.params.id}/exclusions`, [{ dated: dated }]);
else
await axios.post(`Zones/${route.params.id}/exclusions`, {
dated: dated.value,
dated: dated,
});
await refetchEvents();
};
@ -84,7 +83,8 @@ const onSubmit = async () => {
const deleteEvent = async () => {
if (!props.event) return;
await axios.delete(`Zones/${route.params.id}/exclusions`);
const exclusionId = props.event?.zoneExclusionFk || props.event?.id;
await axios.delete(`Zones/${route.params.id}/exclusions/${exclusionId}`);
await refetchEvents();
};