From 5bb2d1ae77fe75b9710376c39ec39d2ea4fd7919 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Tue, 28 Jan 2020 23:52:16 +0000 Subject: [PATCH] --- ayanova/devdocs/todo.txt | 20 +++++++++---------- .../src/views/test-inventory-widget-edit.vue | 5 +++-- 2 files changed, 12 insertions(+), 13 deletions(-) diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index d958b066..efcb2b8f 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -48,20 +48,10 @@ CURRENT TODOs SHELL / NAV / MENUS / LAYOUT -CLIENT ROLE NAME CHANGE - - "client" now "customer" - - CLIENT PROJECT CUSTOM FIELDS CHANGE - Must use numeric instead of text values now for field types - Additional NUMBER is split now between integer and decimal types update control STEP value for inputs to include decimal places or none depending on type -TODO: Select lists and filtering by tag - - Implement it as a component with built in searching and tag selection that is sticky by individual form item - - this is an important crucial item and needs to be easy and clean - - I'm thinking it auto searches by entry like RI, but you can open more UI and select tags to filter with it - - Or maybe it's part of datafilter too? - - See add food filter in diary in chronometer app for inspiration (though theirs is a bit dumb, you can only select one tag) @@ -94,7 +84,15 @@ TODO: GRIDS - When user opens up AyaNova it should always look the same in each area as last time they were there - Modify the grid to no longer use mock values but real ones instead and test - + +TODO: MAKE COMPONENT Select lists and filtering by tag "select-search-filter-control" + - Implement it as a component with built in searching and tag selection that is sticky by individual form item + - this is an important crucial item and needs to be easy and clean + - I'm thinking it auto searches by entry like RI, but you can open more UI and select tags to filter with it + - Or maybe it's part of datafilter too? + - See add food filter in diary in chronometer app for inspiration (though theirs is a bit dumb, you can only select one tag) + + TODO: DataFilter how to distinguish between filtering on specific ID value or on value column - Might need to add a filter on ID type of thing maybe? diff --git a/ayanova/src/views/test-inventory-widget-edit.vue b/ayanova/src/views/test-inventory-widget-edit.vue index 1c3c43cd..8a1640ee 100644 --- a/ayanova/src/views/test-inventory-widget-edit.vue +++ b/ayanova/src/views/test-inventory-widget-edit.vue @@ -348,7 +348,8 @@ export default { notes: null, count: null, customFields: "{}", - tags: [] + tags: [], + userId: 0 }, formState: { ready: false, @@ -718,7 +719,7 @@ function initForm(vm) { // function populatePickLists(vm) { return window.$gz.api - .get("AyaEnumPickList/list/authorizationroles") + .get("EnumPickList/list/authorizationroles") .then(res => { if (res.error) { throw res.error;