This commit is contained in:
2020-01-28 23:52:16 +00:00
parent 9633c575da
commit 5bb2d1ae77
2 changed files with 12 additions and 13 deletions

View File

@@ -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?

View File

@@ -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;