diff --git a/ayanova/devdocs/todo.txt b/ayanova/devdocs/todo.txt index 8be3f821..a4174a87 100644 --- a/ayanova/devdocs/todo.txt +++ b/ayanova/devdocs/todo.txt @@ -47,6 +47,8 @@ TODO CLIENT STUFF - https://rockfish.ayanova.com/default.htm#!/rfcaseEdit/3494 - UI:GENERAL:LAYOUT: - All layout, not just workorder needs to be modular and optional sections with simple starting view. + - MISC + - Search area seems to take up too much space - SERVER CHANGE USEROPTIONS SETTINGS NEEDED: - Best to do this useroptions stuff after a form is in place that I can play with at the client and experiment to see what is possible diff --git a/ayanova/src/api/aboutinfo.js b/ayanova/src/api/aboutinfo.js index 282d0109..c8979570 100644 --- a/ayanova/src/api/aboutinfo.js +++ b/ayanova/src/api/aboutinfo.js @@ -1,5 +1,5 @@ export default { - version: "8.0.0-alpha.1", + version: "8.0.0-alpha.2", copyright: - "Copyright © 1999-2018, Ground Zero Tech-Works Inc. All Rights Reserved" + "Copyright © 1999-2019, Ground Zero Tech-Works Inc. All Rights Reserved" }; diff --git a/ayanova/src/components/inventorywidgetlist.vue b/ayanova/src/components/inventorywidgetlist.vue index 3519e576..be60a529 100644 --- a/ayanova/src/components/inventorywidgetlist.vue +++ b/ayanova/src/components/inventorywidgetlist.vue @@ -60,10 +60,10 @@ export default { ltKeysRequired: [ "Widget", "WidgetList", - "CommonName", + "WidgetName", "WidgetSerial", "WidgetDollarAmount", - "CommonActive", + "Active", "WidgetRoles", "WidgetStartDate", "WidgetEndDate", @@ -88,12 +88,12 @@ export default { rowsPerPageText: "blah per blah", headers: [ { - text: this.lt("CommonName"), + text: this.lt("WidgetName"), value: "name" }, { text: this.lt("WidgetSerial"), value: "serial" }, { text: this.lt("WidgetDollarAmount"), value: "dollarAmount" }, - { text: this.lt("CommonActive"), value: "active" }, + { text: this.lt("Active"), value: "active" }, { text: this.lt("WidgetRoles"), value: "roles" }, { text: this.lt("WidgetStartDate"), value: "startDate" }, { text: this.lt("WidgetEndDate"), value: "endDate" }