diff --git a/Jenkinsfile b/Jenkinsfile
index be20b1021..11f25b2dd 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -75,16 +75,12 @@ pipeline {
steps {
sh 'npm run test:unit:ci'
}
- post {
+ post {
always {
- script {
- try {
- junit 'junitresults.xml'
- junit 'junit.xml'
- } catch (e) {
- echo e.toString()
- }
- }
+ junit(
+ testResults: 'junitresults.xml',
+ allowEmptyResults: true
+ )
}
}
}
diff --git a/src/components/ui/VnLv.vue b/src/components/ui/VnLv.vue
index 0e4a055eb..72c05ae6a 100644
--- a/src/components/ui/VnLv.vue
+++ b/src/components/ui/VnLv.vue
@@ -1,8 +1,9 @@
@@ -521,37 +515,50 @@ const selectSalesPersonId = (id) => {
class="full-width q-mt-md"
row-key="id"
:visible-columns="visibleColumns"
+ @row-click="(evt, row, id) => navigateToTravelId(row.id)"
>
-
-
-
+
+ {{ value }}
+
+
+
+
+
-
- {{ dashIfEmpty(col.value) }}
-
-
-
-
-
+
+ {{ props.row.id }}
+
+
+
+
+
+
+
+ {{ props.row.salesPerson }}
+
+ -
+
+
+
+
+
+