From cc32c335e953123cdeb717b8067c77db33fcdb7f Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 20 Jan 2021 00:01:59 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 8 ++++++++ ayanova/src/router.js | 12 ++++++------ .../{inv-warehouse.vue => inv-part-warehouse.vue} | 0 .../{inv-warehouses.vue => inv-part-warehouses.vue} | 0 4 files changed, 14 insertions(+), 6 deletions(-) rename ayanova/src/views/{inv-warehouse.vue => inv-part-warehouse.vue} (100%) rename ayanova/src/views/{inv-warehouses.vue => inv-part-warehouses.vue} (100%) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 375db63c..8950e8ed 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -5,6 +5,14 @@ MISC ITEMS THAT CAME UP +todo: standardize routes and route names and form names + Use plural and singular names throughout for consistency + i.e. "-edit" forms shoudl be standardized to just th singular name so "part-assembly-edit" sb "part-assembly" + +todo: help docs and urls sb standardized and shortened / simplified + for example remove "form-" from names of help files so "form-inv-part-assemblies" becomes "inv-part-assemblies" + make sure all forms have corresponding help doc by searching for "helpUrl:" and then comparing list + todo: select list templates in admin global settings doesn't show the list of objects in alpha order (look at notification maybe there or maybe needs it too) also, needs a way to reset to default with one click, maybe a menu option? diff --git a/ayanova/src/router.js b/ayanova/src/router.js index 04268210..f8d5ac81 100644 --- a/ayanova/src/router.js +++ b/ayanova/src/router.js @@ -396,16 +396,16 @@ export default new Router({ import(/* webpackChunkName: "inv" */ "./views/inv-part.vue") }, { - path: "/inv-warehouses", - name: "inv-warehouses", + path: "/inv-part-warehouses", + name: "inv-part-warehouses", component: () => - import(/* webpackChunkName: "inv" */ "./views/inv-warehouses.vue") + import(/* webpackChunkName: "inv" */ "./views/inv-part-warehouses.vue") }, { - path: "/inv-warehouses/:recordid", - name: "inv-warehouse", + path: "/inv-part-warehouses/:recordid", + name: "inv-part-warehouse", component: () => - import(/* webpackChunkName: "inv" */ "./views/inv-warehouse.vue") + import(/* webpackChunkName: "inv" */ "./views/inv-part-warehouse.vue") }, { path: "/inv-part-serials/:recordid", diff --git a/ayanova/src/views/inv-warehouse.vue b/ayanova/src/views/inv-part-warehouse.vue similarity index 100% rename from ayanova/src/views/inv-warehouse.vue rename to ayanova/src/views/inv-part-warehouse.vue diff --git a/ayanova/src/views/inv-warehouses.vue b/ayanova/src/views/inv-part-warehouses.vue similarity index 100% rename from ayanova/src/views/inv-warehouses.vue rename to ayanova/src/views/inv-part-warehouses.vue