This commit is contained in:
2019-12-20 19:59:58 +00:00
parent baf2789332
commit ef99023266
3 changed files with 4 additions and 4 deletions

View File

@@ -48,7 +48,7 @@ CURRENT TODOs
SHELL / NAV / MENUS / LAYOUT SHELL / NAV / MENUS / LAYOUT
TODO: help for svc schedule giong to user schedule sb form-svc-schedule
TODO: See if there is an alternate accounting logo without the dollar sign that can be used TODO: See if there is an alternate accounting logo without the dollar sign that can be used
TODO: NOtification subscriptions and ops notification settings using same logo, is there a more suitable ops settings one because the user one is fine (bullhorn) TODO: NOtification subscriptions and ops notification settings using same logo, is there a more suitable ops settings one because the user one is fine (bullhorn)
TODO: Go to invidual views and set the help url to the actual help document name, confirm all work TODO: Go to invidual views and set the help url to the actual help document name, confirm all work

View File

@@ -364,7 +364,7 @@ export default function initialize() {
//FAKE subitem as is still TBD //FAKE subitem as is still TBD
sub.push({ sub.push({
title: window.$gz.locale.get("Accounting"), title: window.$gz.locale.get("Accounting"),
icon: "file-invoice-dollar", icon: "calculator",
route: "/accounting", route: "/accounting",
key: key++ key: key++
}); });
@@ -372,7 +372,7 @@ export default function initialize() {
// ** CUSTOMER (TOP) // ** CUSTOMER (TOP)
addNavItem( addNavItem(
window.$gz.locale.get("Accounting"), window.$gz.locale.get("Accounting"),
"file-invoice-dollar", "calculator",
undefined, undefined,
sub, sub,
key++ key++

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: "file-invoice-dollar", icon: "calculator",
title: window.$gz.locale.get("Accounting"), title: window.$gz.locale.get("Accounting"),
helpUrl: "form-acc-accounting" helpUrl: "form-acc-accounting"
}); });