From a1db140d67c2ae6e816843ab269a084765643159 Mon Sep 17 00:00:00 2001 From: pablone Date: Tue, 18 Feb 2025 14:30:12 +0100 Subject: [PATCH 01/19] fix: update option-filter-value to use thermographFk in TravelThermographsForm --- src/pages/Travel/Card/TravelThermographsForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/Travel/Card/TravelThermographsForm.vue b/src/pages/Travel/Card/TravelThermographsForm.vue index 7aec32972..446e5d506 100644 --- a/src/pages/Travel/Card/TravelThermographsForm.vue +++ b/src/pages/Travel/Card/TravelThermographsForm.vue @@ -209,7 +209,7 @@ const onThermographCreated = async (data) => { }" sort-by="thermographFk ASC" option-label="thermographFk" - option-filter-value="id" + option-filter-value="thermographFk" :disable="viewAction === 'edit'" :tooltip="t('New thermograph')" :roles-allowed-to-create="['logistic']" From 98239e010564b6da8533e740c8a5ac55c96283e5 Mon Sep 17 00:00:00 2001 From: pablone Date: Tue, 18 Feb 2025 22:04:47 +0100 Subject: [PATCH 02/19] feat: refs #6897 add time formatting and improve column alignment handling in VnTable --- src/components/VnTable/VnColumn.vue | 2 +- src/components/VnTable/VnTable.vue | 34 +++++++++++++++++++++++++---- src/composables/getColAlign.js | 1 + 3 files changed, 32 insertions(+), 5 deletions(-) diff --git a/src/components/VnTable/VnColumn.vue b/src/components/VnTable/VnColumn.vue index 44364cca1..d0e245388 100644 --- a/src/components/VnTable/VnColumn.vue +++ b/src/components/VnTable/VnColumn.vue @@ -1,6 +1,6 @@ {{ toPercentage(row.discount / 100) }} From 35253c8127fcef65564a4a6c48ad0db220a0c740 Mon Sep 17 00:00:00 2001 From: jtubau Date: Wed, 19 Feb 2025 12:39:30 +0100 Subject: [PATCH 05/19] test: refs #8618 added e2e test to routeExtendedList --- cypress.config.js | 11 + src/components/common/VnInputDate.vue | 1 + src/pages/Route/RouteExtendedList.vue | 5 +- .../route/routeExtendedList.spec.js | 198 ++++++++++++++++++ 4 files changed, 214 insertions(+), 1 deletion(-) create mode 100644 test/cypress/integration/route/routeExtendedList.spec.js diff --git a/cypress.config.js b/cypress.config.js index a9e27fcfd..26b7725a5 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -34,6 +34,17 @@ export default defineConfig({ const plugin = await import('cypress-mochawesome-reporter/plugin'); plugin.default(on); + const fs = await import('fs'); + on('task', { + deleteFile(filePath) { + if (fs.existsSync(filePath)) { + fs.unlinkSync(filePath); + return true; + } + return false; + }, + }); + return config; }, viewportWidth: 1280, diff --git a/src/components/common/VnInputDate.vue b/src/components/common/VnInputDate.vue index 73c825e1e..1f4705faa 100644 --- a/src/components/common/VnInputDate.vue +++ b/src/components/common/VnInputDate.vue @@ -107,6 +107,7 @@ const manageDate = (date) => { @click="isPopupOpen = !isPopupOpen" @keydown="isPopupOpen = false" hide-bottom-space + :data-cy="$attrs.dataCy ?? $attrs.label + '_inputDate'" >