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
TODO: IMPLEMENT and stub out entire nav layout, don't hae to open actual form, can use placeholder
- Also remove the fake ones that won't be used
- Navigation panel can support up to 3 layers https://vuetifyjs.com/en/components/lists#nested-lists
TODO: LOCALIZATION ISSUES
- All service *templates are only in english, need to be translated i.e. pmTemplate, quotetemplate etc
- 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: 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
sub.push({
title: window.$gz.locale.get("Backup"),
icon: "backup",
icon: "file-archive",
route: "/backup",
key: key++
});

View File

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

View File

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