Merge pull request 'HOTFIX: #8918 - Ticket Negative descriptor' (!1723) from hotfix_negative_descriptor into master
gitea/salix-front/pipeline/head This commit looks good Details

Reviewed-on: #1723
Reviewed-by: Alex Moreno <alexm@verdnatura.es>
This commit is contained in:
Javier Segarra 2025-04-17 07:29:57 +00:00
commit 3e06dacb07
4 changed files with 7 additions and 7 deletions

View File

@ -33,7 +33,7 @@ onUnmounted(() => {
stateStore.rightDrawer = true;
});
const entityId = computed(() => route.params.id);
const entityId = computed(() => route.params.itemFk);
const item = ref({});
const itemProposalSelected = ref(null);

View File

@ -7,7 +7,6 @@ import { onBeforeMount } from 'vue';
import { dashIfEmpty, toDate, toHour } from 'src/filters';
import { useRouter } from 'vue-router';
import { useState } from 'src/composables/useState';
import { useRole } from 'src/composables/useRole';
import ItemDescriptorProxy from 'src/pages/Item/Card/ItemDescriptorProxy.vue';
import RightMenu from 'src/components/common/RightMenu.vue';
import TicketLackFilter from './TicketLackFilter.vue';
@ -25,10 +24,11 @@ const negativeParams = reactive({
availabled: Date.getCurrentDateTimeFormatted(),
});
const redirectToCreateView = ({ itemFk }) => {
router.push({
const route = {
name: 'NegativeDetail',
params: { id: itemFk },
});
params: { itemFk },
};
router.push(route);
};
const columns = computed(() => [
{

View File

@ -38,7 +38,7 @@ const filterLack = ref({
const selectedRows = ref([]);
const { t } = useI18n();
const { notify } = useNotify();
const entityId = computed(() => route.params.id);
const entityId = computed(() => route.params.itemFk);
const item = ref({});
const route = useRoute();
const columns = computed(() => [

View File

@ -251,7 +251,7 @@ export default {
},
{
name: 'NegativeDetail',
path: ':id',
path: ':itemFk',
meta: {
title: 'summary',
icon: 'launch',