This commit is contained in:
2019-12-19 00:25:07 +00:00
parent f128cff1d1
commit 30358f5961
4 changed files with 13 additions and 6 deletions

View File

@@ -47,9 +47,9 @@ CURRENT TODOs
SHELL / NAV / MENUS / LAYOUT SHELL / NAV / MENUS / LAYOUT
TODO: IMPLEMENT and stub out entire nav layout, don't hae to open actual form, can use placeholder TODO: LOCALIZATION ISSUES
- Also remove the fake ones that won't be used - All service *templates are only in english, need to be translated i.e. pmTemplate, quotetemplate etc
- Navigation panel can support up to 3 layers https://vuetifyjs.com/en/components/lists#nested-lists - Schedulemarkers is not translated out of english and it's appearing instead of "Reminders" so fix that or make a new key or whatever is required
TODO: Review and prioritize order of items in nav panel TODO: Review and prioritize order of items in nav panel
TODO: Make the stub pages so each menu item triggers a view change (make one for each) TODO: Make the stub pages so each menu item triggers a view change (make one for each)

View File

@@ -475,7 +475,7 @@ export default function initialize() {
// ARCHIVE // ARCHIVE
sub.push({ sub.push({
title: window.$gz.locale.get("Backup"), title: window.$gz.locale.get("Backup"),
icon: "backup", icon: "file-archive",
route: "/backup", route: "/backup",
key: key++ key: key++
}); });

View File

@@ -83,11 +83,18 @@ export default {
"LocalizedTextDesign", "LocalizedTextDesign",
"ReportList", "ReportList",
"ScheduleMarkerList", "ScheduleMarkerList",
//"Dispatch",
"Inventory", "Inventory",
"Accounting", "Accounting",
"Administration", "Administration",
"Operations", "Operations",
"Attachments",
"History",
"Statistics",
"Backup",
"ServerJobs",
"ServerLog",
"ServerMetrics",
"NotificationSettings",
"HelpAboutAyaNova", "HelpAboutAyaNova",
"MenuHelp", "MenuHelp",
"More", "More",

View File

@@ -12,7 +12,7 @@ export default {
beforeCreate() { beforeCreate() {
window.$gz.eventBus.$emit("menu-change", { window.$gz.eventBus.$emit("menu-change", {
isMain: true, isMain: true,
icon: "archive", icon: "file-archive",
title: window.$gz.locale.get("Backup"), title: window.$gz.locale.get("Backup"),
helpUrl: "user-form-backup" helpUrl: "user-form-backup"
}); });