This commit is contained in:
2019-01-31 20:48:40 +00:00
parent 23012ed9df
commit df26b6443b
3 changed files with 8 additions and 6 deletions

View File

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

View File

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

View File

@@ -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" }