From 72cd1d89ba4092dbf5def7ac5c4a585fa780e5fd Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Wed, 11 Nov 2020 15:55:31 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 2 +- ayanova/src/router.js | 6 + ayanova/src/views/cust-customer.vue | 798 +++++++++++++++++++++++++++ ayanova/src/views/cust-customers.vue | 171 +++++- 4 files changed, 964 insertions(+), 13 deletions(-) create mode 100644 ayanova/src/views/cust-customer.vue diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 19748732..8cb24a90 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -31,8 +31,8 @@ EACH OBJECT DEV CYCLE: FRONT AyaType / rights front route - Edit form List form + Edit form Add to smoke test DOCS (at back but with front links, maybe not fleshed out just placeholder ok for now) IMPORT diff --git a/ayanova/src/router.js b/ayanova/src/router.js index b8fb0b75..c22191f5 100644 --- a/ayanova/src/router.js +++ b/ayanova/src/router.js @@ -163,6 +163,12 @@ export default new Router({ component: () => import(/* webpackChunkName: "cust" */ "./views/cust-customers.vue") }, + { + path: "/cust-customers/:recordid", + name: "customer-edit", + component: () => + import(/* webpackChunkName: "cust" */ "./views/cust-customer.vue") + }, { path: "/cust-headoffices", name: "cust-headoffices", diff --git a/ayanova/src/views/cust-customer.vue b/ayanova/src/views/cust-customer.vue new file mode 100644 index 00000000..24c99df0 --- /dev/null +++ b/ayanova/src/views/cust-customer.vue @@ -0,0 +1,798 @@ + + + + + diff --git a/ayanova/src/views/cust-customers.vue b/ayanova/src/views/cust-customers.vue index 69e227d0..6e751a1d 100644 --- a/ayanova/src/views/cust-customers.vue +++ b/ayanova/src/views/cust-customers.vue @@ -1,21 +1,168 @@