From 891c0d2347159527d0493bc7ccf349eaed612f38 Mon Sep 17 00:00:00 2001 From: jorgep Date: Fri, 21 Jun 2024 13:05:28 +0200 Subject: [PATCH] feat: refs 6238 show notes & create vnPopup --- src/components/common/VnPopup.vue | 23 +++++++++++++++++++++ src/components/ui/CardDescriptor.vue | 3 ++- src/i18n/locale/en.yml | 1 + src/i18n/locale/es.yml | 1 + src/pages/Travel/ExtraCommunity.vue | 30 +++++++++++++++++++++------- 5 files changed, 50 insertions(+), 8 deletions(-) create mode 100644 src/components/common/VnPopup.vue diff --git a/src/components/common/VnPopup.vue b/src/components/common/VnPopup.vue new file mode 100644 index 000000000..7dcb08f53 --- /dev/null +++ b/src/components/common/VnPopup.vue @@ -0,0 +1,23 @@ + + diff --git a/src/components/ui/CardDescriptor.vue b/src/components/ui/CardDescriptor.vue index b2084479d..8bb2a603e 100644 --- a/src/components/ui/CardDescriptor.vue +++ b/src/components/ui/CardDescriptor.vue @@ -39,6 +39,7 @@ const $props = defineProps({ }); const state = useState(); +const route = useRoute(); const { t } = useI18n(); const { viewSummary } = useSummaryDialog(); let arrayData; @@ -57,7 +58,7 @@ onBeforeMount(async () => { store = arrayData.store; entity = computed(() => (Array.isArray(store.data) ? store.data[0] : store.data)); // It enables to load data only once if the module is the same as the dataKey - if ($props.dataKey !== useRoute().meta.moduleName) await getData(); + if ($props.dataKey !== route.meta.moduleName || !route.params.id) await getData(); watch( () => [$props.url, $props.filter], async () => await getData() diff --git a/src/i18n/locale/en.yml b/src/i18n/locale/en.yml index b3a85eefa..645e12b7a 100644 --- a/src/i18n/locale/en.yml +++ b/src/i18n/locale/en.yml @@ -113,6 +113,7 @@ globals: name: Name new: New comment: Comment + observations: Observations errors: statusUnauthorized: Access denied statusInternalServerError: An internal server error has ocurred diff --git a/src/i18n/locale/es.yml b/src/i18n/locale/es.yml index d03ee9d5c..29373efd0 100644 --- a/src/i18n/locale/es.yml +++ b/src/i18n/locale/es.yml @@ -113,6 +113,7 @@ globals: name: Nombre new: Nuevo comment: Comentario + observations: Observaciones errors: statusUnauthorized: Acceso denegado statusInternalServerError: Ha ocurrido un error interno del servidor diff --git a/src/pages/Travel/ExtraCommunity.vue b/src/pages/Travel/ExtraCommunity.vue index 639c7d894..480240b26 100644 --- a/src/pages/Travel/ExtraCommunity.vue +++ b/src/pages/Travel/ExtraCommunity.vue @@ -2,7 +2,6 @@ import { onMounted, ref, computed, watch } from 'vue'; import { QBtn } from 'quasar'; import { useI18n } from 'vue-i18n'; -import { useRouter } from 'vue-router'; import SupplierDescriptorProxy from 'src/pages/Supplier/Card/SupplierDescriptorProxy.vue'; import TravelDescriptorProxy from 'src/pages/Travel/Card/TravelDescriptorProxy.vue'; @@ -19,8 +18,8 @@ import { usePrintService } from 'composables/usePrintService'; import VnSubToolbar from 'src/components/ui/VnSubToolbar.vue'; import axios from 'axios'; import RightMenu from 'src/components/common/RightMenu.vue'; +import VnPopup from 'src/components/common/VnPopup.vue'; -const router = useRouter(); const stateStore = useStateStore(); const { t } = useI18n(); const { openReport } = usePrintService(); @@ -125,6 +124,10 @@ const tableColumnComponents = { component: 'span', attrs: {}, }, + notes: { + component: 'span', + attrs: {}, + }, }; const columns = computed(() => [ @@ -250,6 +253,14 @@ const columns = computed(() => [ sortable: true, format: (value) => toDate(value), }, + { + label: t('notes'), + field: '', + name: 'notes', + align: 'center', + showValue: false, + sortable: true, + }, ]); async function getData() { @@ -298,10 +309,6 @@ const saveFieldValue = async (val, field, index) => { } }; -const navigateToTravelId = (id) => { - router.push({ path: `/travel/${id}` }); -}; - const stopEventPropagation = (event, col) => { // Detener la propagación del evento de los siguientes elementos para evitar el click sobre la row que dispararía la función navigateToTravelId if (!['ref', 'id', 'cargoSupplierNickname', 'kg'].includes(col.name)) return; @@ -486,7 +493,7 @@ const getColor = (percentage) => { { + + + + + @@ -675,6 +690,7 @@ en: physicKg: Phy. KG shipped: W. shipped landed: W. landed + observations: Observations es: searchExtraCommunity: Buscar por envío extra comunitario