This commit is contained in:
2023-01-23 02:01:26 +00:00
parent a0f4e45589
commit 3ac3c37a8e
12 changed files with 971 additions and 19 deletions

View File

@@ -43,5 +43,6 @@ export default {
SubscriptionServer: { Change: 32842, ReadFullRecord: 65797, Select: 131071 },
Purchase: { Change: 32842, ReadFullRecord: 65797, Select: 131071 },
Product: { Change: 32842, ReadFullRecord: 65797, Select: 131071 },
GZCase: { Change: 32842, ReadFullRecord: 65797, Select: 131071 }
GZCase: { Change: 32842, ReadFullRecord: 65797, Select: 131071 },
VendorNotification: { Change: 32842, ReadFullRecord: 65797, Select: 131071 }
};

View File

@@ -455,6 +455,8 @@ export default {
return "$sockiCloud";
case window.$gz.type.Purchase:
return "$sockiShoppingCart";
case window.$gz.type.VendorNotification:
return "$sockiCommentDollar";
case window.$gz.type.Product:
return "$sockiBarCode";
case window.$gz.type.GZCase:

View File

@@ -203,6 +203,13 @@ ServiceContractor = 5 */
key: key++
});
sub.push({
title: "VendorNotificationList",
icon: "$sockiCommentDollar",
route: "/biz-vendor-notification-list",
key: key++
});
sub.push({
title: "ProductList",
icon: "$sockiBarCode",

View File

@@ -242,6 +242,13 @@ export default {
});
break;
case socktype.VendorNotification:
vm.$router.push({
name: "vendor-notification-edit",
params: { recordid: tid.id }
});
break;
case socktype.License:
vm.$router.push({
name: "license-edit",

View File

@@ -31,13 +31,13 @@ export default {
DataListColumnView: 68,
CustomerNotifySubscription: 84, //proxy subs for customers
Integration: 92, //3rd party or add-on integration data store,
License: 93,
TrialLicenseRequest: 94,
SubscriptionServer: 95,
Purchase: 96,
Product: 97,
GZCase: 98
GZCase: 98,
VendorNotification: 99
};
/**
*

View File

@@ -262,7 +262,8 @@ export default {
"SubscriptionServerList",
"ProductList",
"PurchaseList",
"GZCaseList"
"GZCaseList",
"VendorNotificationList"
],
////////////////////////////////////////////////////////