This commit is contained in:
2021-10-15 17:12:00 +00:00
parent 01b4bb7f20
commit 62e694d322
3 changed files with 3 additions and 20 deletions

View File

@@ -780,21 +780,4 @@ MID CENTURY MODERN TUNES - https://www.allmusic.com/album/ultra-lounge-vol-14-bo
BUILD 134 CHANGES OF NOTE
- Report designer defaults cleaned up, removed css, change default template to be simplified and standardized ayPrepareData to use "ayData" as the parameter name by default
(note that you do not need to change it for old reports to work but it would help for consistency)
- Report editor manual page updated to reflect changes, switched things around to make it more orderly and rewrote several sections to clean up and simplify, ensured proper code formatting is used in sample code
- Added "ayGroupByKey" function to the default available functions so my sample you can remove the "groupByKey" function entirely and just call ayGroupByKey instead as it's built in
also documented it in the report designer help page
- Customer and Unit data lists
Fixed performance issue with last workorder stuff
Fixed bug in Unit where it was checking the Unit against the workorderitemunit.ID field instead of the workorderitemunit.UNITID field resulting in random and completely wrong workorders (customer one was ok for this)
changed both lists to pick the "latest" workorder to be the one with the newest/highest "servicedate" field rather than by the most recently created workorder as it's possible a service date order doesn't match workorder created order
changed both lists to no longer filter the latest workorder by "Completed" status but rather just the latest service workorder (highest "Service date") regardless of status
changed translations to remove reference to "completed"
- case 4003
- case 3999
- case 4002 partly a fix, partly can't reproduce, see notes
- case 4004
- case 4006
BUILD 135 CHANGES OF NOTE

View File

@@ -1,4 +1,4 @@
export default {
version: "8.0.0-alpha.134",
version: "8.0.0-alpha.135",
copyright: "© 1999-2021, Ground Zero Tech-Works Inc."
};

View File

@@ -68,7 +68,7 @@ import chartBarHorizontalControl from "./components/chart-bar-horizontal-control
//DEVELOPMENT MODE
//THIS SHOULD BE FALSE IN RELEASE
//************************************************************
const DEV_MODE = false;
const DEV_MODE = true;
//************************************************************
//**************************************************************
//**************************************************************