case 4504

This commit is contained in:
2023-04-14 19:32:08 +00:00
parent 8d78c0274c
commit 1223fcb7fc
8 changed files with 763 additions and 3 deletions

View File

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

View File

@@ -461,6 +461,9 @@ export default {
return "$sockiBarCode";
case window.$gz.type.GZCase:
return "$sockiCoffee";
case window.$gz.type.Subscription:
return "$sockiFileContract";
//scroll icon is good one for something
default:

View File

@@ -168,6 +168,14 @@ ServiceContractor = 5 */
sub = [];
sub.push({
title: "SubscriptionList",
icon: "$sockiFileContract",
route: "/biz-subscription-list",
key: key++
});
sub.push({
title: "GZCaseList",
icon: "$sockiCoffee",

View File

@@ -37,7 +37,8 @@ export default {
Purchase: 96,
Product: 97,
GZCase: 98,
VendorNotification: 99
VendorNotification: 99,
Subscription: 100
};
/**
*

View File

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