This commit is contained in:
2022-03-09 00:48:50 +00:00
parent a89a3b846a
commit c994cbd0de
3 changed files with 89 additions and 9 deletions

View File

@@ -786,7 +786,7 @@ function initNavPanel() {
) { ) {
sub.push({ sub.push({
title: "NotificationDeliveryLog", title: "NotificationDeliveryLog",
icon: "$$ayiHistory", icon: "$ayiHistory",
route: "/ops-notify-log", route: "/ops-notify-log",
key: key++ key: key++
}); });
@@ -798,7 +798,7 @@ function initNavPanel() {
) { ) {
sub.push({ sub.push({
title: "NotificationCustomerDeliveryLog", title: "NotificationCustomerDeliveryLog",
icon: "$$ayiHistory", icon: "$ayiHistory",
route: "/ops-customer-notify-log", route: "/ops-customer-notify-log",
key: key++ key: key++
}); });

View File

@@ -0,0 +1,83 @@
<template>
<div>
<gz-report-selector ref="reportSelector"></gz-report-selector>
<gz-extensions
ref="extensions"
:aya-type="aType"
:selected-items="selectedItems"
>
</gz-extensions>
<gz-data-table
ref="gzdatatable"
form-key="ops-notify-log"
data-list-key="NotificationDeliveryLogDataList"
:show-select="rights.read"
:reload="reload"
data-cy="notifyLogTable"
@selection-change="handleSelected"
>
</gz-data-table>
</div>
</template>
<script>
const FORM_KEY = "ops-notify-log";
export default {
data() {
return {
rights: window.$gz.role.defaultRightsObject(),
aType: window.$gz.type.NotifySubscription,
selectedItems: [],
reload: false
};
},
created() {
this.rights = window.$gz.role.getRights(
window.$gz.type.OpsNotificationSettings
);
window.$gz.eventBus.$on("menu-click", clickHandler);
generateMenu(this);
},
beforeDestroy() {
window.$gz.eventBus.$off("menu-click", clickHandler);
},
methods: {
handleSelected(selected) {
this.selectedItems = selected;
}
}
};
/////////////////////////////
//
//
async function clickHandler(menuItem) {
if (!menuItem) {
return;
}
const m = window.$gz.menu.parseMenuItem(menuItem);
if (m.owner == FORM_KEY && !m.disabled) {
switch (m.key) {
default:
window.$gz.eventBus.$emit(
"notify-warning",
FORM_KEY + "::context click: [" + m.key + "]"
);
}
}
}
//////////////////////
//
//
function generateMenu() {
const menuOptions = {
isMain: true,
icon: "$ayiHistory",
title: "NotificationCustomerDeliveryLog",
helpUrl: "ops-customer-notify-log",
menuItems: []
};
window.$gz.eventBus.$emit("menu-change", menuOptions);
}
</script>

View File

@@ -72,13 +72,10 @@ async function clickHandler(menuItem) {
function generateMenu() { function generateMenu() {
const menuOptions = { const menuOptions = {
isMain: true, isMain: true,
icon: "$ayiProjectDiagram", icon: "$ayiHistory",
title: "ProjectList", title: "NotificationDeliveryLog",
helpUrl: "svc-projects", helpUrl: "ops-notify-log",
menuItems: [], menuItems: []
formData: {
ayaType: window.$gz.type.Project
}
}; };
window.$gz.eventBus.$emit("menu-change", menuOptions); window.$gz.eventBus.$emit("menu-change", menuOptions);