This commit is contained in:
@@ -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?
|
||||
|
||||
|
||||
@@ -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",
|
||||
|
||||
Reference in New Issue
Block a user