This commit is contained in:
@@ -12,7 +12,7 @@ export default {
|
||||
beforeCreate() {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "fa-file-invoice-dollar",
|
||||
icon: "file-invoice-dollar",
|
||||
title: window.$gz.locale.get("Accounting"),
|
||||
helpUrl: "user-form-accounting"
|
||||
});
|
||||
|
||||
21
ayanova/src/views/global-settings.vue
Normal file
21
ayanova/src/views/global-settings.vue
Normal file
@@ -0,0 +1,21 @@
|
||||
<template>
|
||||
<UnderConstruction />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import UnderConstruction from "../components/underconstruction.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
UnderConstruction
|
||||
},
|
||||
beforeCreate() {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "cogs",
|
||||
title: window.$gz.locale.get("AdministrationGlobalSettings"),
|
||||
helpUrl: "user-form-global-settings"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
21
ayanova/src/views/inventory-adjustments.vue
Normal file
21
ayanova/src/views/inventory-adjustments.vue
Normal file
@@ -0,0 +1,21 @@
|
||||
<template>
|
||||
<UnderConstruction />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import UnderConstruction from "../components/underconstruction.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
UnderConstruction
|
||||
},
|
||||
beforeCreate() {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "dolly",
|
||||
title: window.$gz.locale.get("InventoryPartInventoryAdjustments"),
|
||||
helpUrl: "user-form-inventory-adjustment-list"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
21
ayanova/src/views/license.vue
Normal file
21
ayanova/src/views/license.vue
Normal file
@@ -0,0 +1,21 @@
|
||||
<template>
|
||||
<UnderConstruction />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import UnderConstruction from "../components/underconstruction.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
UnderConstruction
|
||||
},
|
||||
beforeCreate() {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "ticket-alt",
|
||||
title: window.$gz.locale.get("HelpLicense"),
|
||||
helpUrl: "user-form-license"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
21
ayanova/src/views/locales.vue
Normal file
21
ayanova/src/views/locales.vue
Normal file
@@ -0,0 +1,21 @@
|
||||
<template>
|
||||
<UnderConstruction />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import UnderConstruction from "../components/underconstruction.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
UnderConstruction
|
||||
},
|
||||
beforeCreate() {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "language",
|
||||
title: window.$gz.locale.get("LocalizedTextDesign"),
|
||||
helpUrl: "user-form-locales"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
@@ -12,9 +12,9 @@ export default {
|
||||
beforeCreate() {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "pallet",
|
||||
title: window.$gz.locale.get("PartByWarehouseInventoryList"),
|
||||
helpUrl: "user-form-part-inventory-list"
|
||||
icon: "paper-plane",
|
||||
title: window.$gz.locale.get("WorkorderItemPartRequestList"),
|
||||
helpUrl: "user-form-part-request-list"
|
||||
});
|
||||
}
|
||||
};
|
||||
|
||||
21
ayanova/src/views/po-list.vue
Normal file
21
ayanova/src/views/po-list.vue
Normal file
@@ -0,0 +1,21 @@
|
||||
<template>
|
||||
<UnderConstruction />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import UnderConstruction from "../components/underconstruction.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
UnderConstruction
|
||||
},
|
||||
beforeCreate() {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "boxes",
|
||||
title: window.$gz.locale.get("InventoryPurchaseOrders"),
|
||||
helpUrl: "user-form-purchase-order-list"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
21
ayanova/src/views/po-receipt-list.vue
Normal file
21
ayanova/src/views/po-receipt-list.vue
Normal file
@@ -0,0 +1,21 @@
|
||||
<template>
|
||||
<UnderConstruction />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import UnderConstruction from "../components/underconstruction.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
UnderConstruction
|
||||
},
|
||||
beforeCreate() {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "dolly-flatbed",
|
||||
title: window.$gz.locale.get("InventoryPurchaseOrderReceipts"),
|
||||
helpUrl: "user-form-purchase-order-receipt-list"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
21
ayanova/src/views/reports.vue
Normal file
21
ayanova/src/views/reports.vue
Normal file
@@ -0,0 +1,21 @@
|
||||
<template>
|
||||
<UnderConstruction />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import UnderConstruction from "../components/underconstruction.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
UnderConstruction
|
||||
},
|
||||
beforeCreate() {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "th-list",
|
||||
title: window.$gz.locale.get("ReportList"),
|
||||
helpUrl: "user-form-report-list"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
21
ayanova/src/views/vendors.vue
Normal file
21
ayanova/src/views/vendors.vue
Normal file
@@ -0,0 +1,21 @@
|
||||
<template>
|
||||
<UnderConstruction />
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import UnderConstruction from "../components/underconstruction.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
UnderConstruction
|
||||
},
|
||||
beforeCreate() {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "store",
|
||||
title: window.$gz.locale.get("VendorList"),
|
||||
helpUrl: "user-form-vendors"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user