This commit is contained in:
@@ -48,20 +48,10 @@ CURRENT TODOs
|
|||||||
SHELL / NAV / MENUS / LAYOUT
|
SHELL / NAV / MENUS / LAYOUT
|
||||||
|
|
||||||
|
|
||||||
CLIENT ROLE NAME CHANGE
|
|
||||||
- "client" now "customer"
|
|
||||||
|
|
||||||
|
|
||||||
CLIENT PROJECT CUSTOM FIELDS CHANGE
|
CLIENT PROJECT CUSTOM FIELDS CHANGE
|
||||||
- Must use numeric instead of text values now for field types
|
- 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
|
- 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
|
- 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
|
- 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
|
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?
|
- Might need to add a filter on ID type of thing maybe?
|
||||||
|
|||||||
@@ -348,7 +348,8 @@ export default {
|
|||||||
notes: null,
|
notes: null,
|
||||||
count: null,
|
count: null,
|
||||||
customFields: "{}",
|
customFields: "{}",
|
||||||
tags: []
|
tags: [],
|
||||||
|
userId: 0
|
||||||
},
|
},
|
||||||
formState: {
|
formState: {
|
||||||
ready: false,
|
ready: false,
|
||||||
@@ -718,7 +719,7 @@ function initForm(vm) {
|
|||||||
//
|
//
|
||||||
function populatePickLists(vm) {
|
function populatePickLists(vm) {
|
||||||
return window.$gz.api
|
return window.$gz.api
|
||||||
.get("AyaEnumPickList/list/authorizationroles")
|
.get("EnumPickList/list/authorizationroles")
|
||||||
.then(res => {
|
.then(res => {
|
||||||
if (res.error) {
|
if (res.error) {
|
||||||
throw res.error;
|
throw res.error;
|
||||||
|
|||||||
Reference in New Issue
Block a user