diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 79edcfd9..4bc9b60f 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -36,7 +36,7 @@ To REMOVE: apt-get remove dotnet-runtime-3.0 (replace 3.0 with whatever version MISC ITEMS THAT CAME UP todo: object history / user history form - why can't I open up a customer or customer note from that form or other objects? + can't open up a customer or customer note from that form or other objects? is it just not coded? todo: erasedatabase for import needs to also erase datalistview's and defaults or has an issue with them @@ -89,11 +89,12 @@ todo: input type email url phone number etc supported on device to activate? todo: search form weirdness ICONS - search for "abc" in imported data get a user result then the other results below do not have logos - i.e. workorder headoffice, project - needs all icons to show properly + search for "abc" in imported data get a user result then the other results below do not have logos + i.e. workorder headoffice, project + needs all icons to show properly + ## HERE: icon: window.$gz.util.iconForType(item.id), TYPE NAMES - results for some type names show as "type 59" for example instead of "Customer note" + results for some type names show as "type 59" for example instead of "Customer note" todo: TEST ON SERVER CUSTOMER STUFF ............................................................ diff --git a/ayanova/src/views/ay-history.vue b/ayanova/src/views/ay-history.vue index 926987e4..7f26d08c 100644 --- a/ayanova/src/views/ay-history.vue +++ b/ayanova/src/views/ay-history.vue @@ -382,12 +382,13 @@ async function populateAyaTypeList(vm) { //CoreBizObject add here //todo: centralize this if reuqired one more time anywhere switch (item.id) { - case window.$gz.type.User: - case window.$gz.type.Widget: - openableObject = true; + //default to can open and only have exceptions because most stuff can be opened + case window.$gz.type.NoType: + case window.$gz.type.DashboardView: + openableObject = false; break; default: - openableObject = false; + openableObject = true; } temp[item.id] = { name: item.name,