This commit is contained in:
2022-02-17 21:26:25 +00:00
parent 8c960a8b2e
commit 1675e82a1c
3 changed files with 14 additions and 17 deletions

View File

@@ -206,9 +206,6 @@ todo:3 todo: check out this SPA memory leak detector, it *does* have a login abi
todo: 1 pm and quote biz grandchildren need trans keys because they are selectable for notifications and search and will otherwise display untranslated
even though not used in actual forms for display
todo: 1 dashboard cleanup before beta, TestWidgetDataList call is triggering an exception at server, no test widget data list
maybe just make one that works and remove the rest??
Priciest widgets crashes as it uses an actual data list, the other three are fake data and don't cause an exception but are unclear that they are test ones
@@ -838,7 +835,7 @@ BUILD 8.0.0-beta.0.15 CHANGES OF NOTE
- updated all docs with example backslash in config.json to include sample specific to windows and linux separately and predominant warning about any backslashes need to be doubled in config.json file
- updated install docs for windows iis and lan to include windows pg14's dump path in the example and also a block explaining about setting that to the correct location
- changed installed config.json for windows lan and iis to include a pre-configured pg_dump path assuming pg14 is installed to default location
- Removed 860 unused translation keys 2315 was now is 1455
- Removed 843 unused translation keys
- Report change: z_customfields deprecated translation key ObjectCustomFieldFieldType replaced with key UiFieldDataType
- Reports change: swapped deprecated translation key NetValue not used in UI for NetPrice same translation "Net" in the following reports:
Charges Summary Grouped By Customer.ayrt

View File

@@ -2,17 +2,17 @@ import authorizationroles from "./authorizationroles";
const role = authorizationroles.AUTHORIZATION_ROLES;
export default {
registry: [
{
id: "TestListWidgetsPriciest",
roles: [
role.BizAdmin,
role.BizAdminRestricted,
role.Sales,
role.SalesRestricted
],
title: "Priciest widgets (all time) ",
type: "GzDashTestListWidgetsPriciest"
},
// {
// id: "TestListWidgetsPriciest",
// roles: [
// role.BizAdmin,
// role.BizAdminRestricted,
// role.Sales,
// role.SalesRestricted
// ],
// title: "Priciest widgets (all time) ",
// type: "GzDashTestListWidgetsPriciest"
// },
{
id: "TestBarWidgetCountByUserType",
roles: [

View File

@@ -72,13 +72,13 @@
const FORM_KEY = "home-dashboard";
import DashRegistry from "../api/dash-registry";
//---------- DASH ITEMS ----------
import GzDashTestListWidgetsPriciest from "../components/dash-test-list-widgets-priciest.vue";
//import GzDashTestListWidgetsPriciest from "../components/dash-test-list-widgets-priciest.vue";
import GzDashTestBarWidgetCountByUserType from "../components/dash-test-bar-widget-count-by-usertype.vue";
import GzDashTestLineWidgetMonthlyTotalPrice from "../components/dash-test-line-widget-monthly-total-price.vue";
import GzDashTestDayCalendarWidget from "../components/dash-test-day-calendar-widget.vue";
export default {
components: {
GzDashTestListWidgetsPriciest,
//GzDashTestListWidgetsPriciest,
GzDashTestBarWidgetCountByUserType,
GzDashTestLineWidgetMonthlyTotalPrice,
GzDashTestDayCalendarWidget