This commit is contained in:
2021-01-20 00:32:46 +00:00
parent cc32c335e9
commit 40fadc8180
7 changed files with 53 additions and 36 deletions

View File

@@ -401,6 +401,8 @@ export default {
return "$ayiCustomize";
case window.$gz.type.Part:
return "$ayiBoxes";
case window.$gz.type.PartWarehouse:
return "$ayiWarehouse";
case window.$gz.type.PartAssembly:
return "$ayiObjectGroup";
case window.$gz.type.PM:

View File

@@ -425,7 +425,6 @@ function initNavPanel() {
//NOTE: V7 HAD PORECEIPTITEMS, THAT MAY BE AN ANACHRONISM NOW SO NOT PUTTING HERE
//ADJUSTMENTS
sub.push({
title: "InventoryPartInventoryAdjustments",
@@ -434,11 +433,11 @@ function initNavPanel() {
key: key++
});
//WAREHOUSES
sub.push({
//WAREHOUSES
sub.push({
title: "PartWarehouseList",
icon: "$ayiWarehouse",
route: "/inv-warehouses",
route: "/inv-part-warehouses",
key: key++
});
}

View File

@@ -245,7 +245,7 @@ export default {
break;
case ayatype.PartWarehouse:
vm.$router.push({
name: "part-warehouse",
name: "inv-part-warehouse",
params: { recordid: tid.id }
});
break;