This commit is contained in:
2022-03-05 01:12:40 +00:00
parent 19cf0086cd
commit f00cb7c413
6 changed files with 87 additions and 39 deletions

View File

@@ -7,7 +7,13 @@ export default {
"ERROR enums::get -> enumKey " + enumKey + " is missing from store"
);
}
return window.$gz.store.state.enums[enumKey][enumValue];
const ret = window.$gz.store.state.enums[enumKey][enumValue];
if (ret == undefined) {
return "";
} else {
return ret;
}
} else {
const ret = [];
if (enumValue == null || enumValue == 0) {

View File

@@ -485,6 +485,12 @@ export default {
params: { recordid: tid.id }
});
break;
case ayatype.CustomerNotifySubscription:
vm.$router.push({
name: "cust-notify-subscription",
params: { recordid: tid.id }
});
break;
default:
window.$gz.eventBus.$emit(