This commit is contained in:
@@ -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) {
|
||||
|
||||
@@ -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(
|
||||
|
||||
Reference in New Issue
Block a user