@@ -80,6 +80,9 @@ import LoadingView from '@/components/ADempiere/LoadingView/index.vue'
// import ModalDialog from '@/components/ADempiere/Dialog'
import TitleAndHelp from '@/components/ADempiere/TitleAndHelp'
+// Utils and Helper Methods
+import { isEmptyValue } from '@/utils/ADempiere/valueUtils.js'
+
export default {
name: 'FormView',
@@ -109,7 +112,13 @@ export default {
return this.formMetadata.name
},
formFileName() {
- return this.formMetadata.fileName || this.$route.meta.title
+ if (!isEmptyValue(this.formMetadata.fileName)) {
+ return this.formMetadata.fileName
+ }
+ if (!isEmptyValue(this.$route.meta.fileName)) {
+ return this.$route.meta.fileName
+ }
+ return this.$route.meta.title
},
getterForm() {
return this.$store.getters.getForm(this.formUuid)
diff --git a/src/views/dashboard/admin/components/TodoList/index.vue b/src/views/dashboard/admin/components/TodoList/index.vue
index 8000d4146b5..ae7aa3c8a32 100644
--- a/src/views/dashboard/admin/components/TodoList/index.vue
+++ b/src/views/dashboard/admin/components/TodoList/index.vue
@@ -2,7 +2,7 @@
@@ -47,14 +47,17 @@ const filters = {
completed: todos => todos.filter(todo => todo.done)
}
const defalutList = [
- { text: 'star this repository', done: false },
- { text: 'fork this repository', done: false },
- { text: 'follow author', done: false },
- { text: 'vue-element-admin', done: true },
- { text: 'vue', done: true },
- { text: 'element-ui', done: true },
- { text: 'axios', done: true },
- { text: 'webpack', done: true }
+ { text: 'Enviar Presupuesto', done: false },
+ { text: 'Generar Orden de Compra', done: false },
+ { text: 'Conciliar Cuenta Bancaria', done: false },
+ { text: 'Realizar cotización de Proveedores', done: true },
+ { text: 'Emitir Pagos', done: true },
+ { text: 'Planificación Mensual', done: true },
+ { text: 'Liquidación de nómina', done: true }
+ // { text: 'webpack', done: true },
+ // { text: 'Vue 3', done: true },
+ // { text: 'TypeScritp', done: true },
+ // { text: 'ADempire-UI', done: false }
]
export default {
components: { Todo },
diff --git a/src/views/dashboard/admin/index.vue b/src/views/dashboard/admin/index.vue
index 5f58987c040..f0be772012f 100644
--- a/src/views/dashboard/admin/index.vue
+++ b/src/views/dashboard/admin/index.vue
@@ -1,6 +1,6 @@