8381-thermographTravel #1244

Merged
jgallego merged 8 commits from 8381-thermographTravel into dev 2025-01-27 15:21:41 +00:00
1 changed files with 3 additions and 2 deletions
Showing only changes of commit 9a29e7e2fd - Show all commits

View File

@ -20,9 +20,10 @@ const router = useRouter();
const { t } = useI18n(); const { t } = useI18n();
const { notify } = useNotify(); const { notify } = useNotify();
const { store: travelStore, fetch: fetchTravel } = useArrayData('SingleTravel', { const { store: travelStore, fetch: fetchTravel } = useArrayData('SingleTravel', {
url: 'Travel', url: 'Travels',
limit: 1, limit: 1,
filter: { filter: {
fields: ['id', 'agencyModeFk'],
where: { id: route.params.id }, where: { id: route.params.id },
}, },
// Si quisieras guardar en la URL, podrías usar searchUrl: 'travelSearch' // Si quisieras guardar en la URL, podrías usar searchUrl: 'travelSearch'
@ -152,7 +153,7 @@ const removeThermograph = async (id) => {
notify(t('Thermograph removed'), 'positive'); notify(t('Thermograph removed'), 'positive');
}; };
onMounted(() => { onMounted(() => {
fetchTravel(); fetchTravel({});
}); });
</script> </script>