This commit is contained in:
2021-01-19 23:49:56 +00:00
parent a1a54f2743
commit f3be643556
8 changed files with 941 additions and 2 deletions

View File

@@ -99,7 +99,8 @@ export default {
ServiceRate: 62,
TravelRate: 63,
TaxCode: 64,
PartAssembly: 65
PartAssembly: 65,
PartWarehouse: 66
};
/**
*

View File

@@ -425,7 +425,6 @@ function initNavPanel() {
//NOTE: V7 HAD PORECEIPTITEMS, THAT MAY BE AN ANACHRONISM NOW SO NOT PUTTING HERE
//NOTE: Warehouses? Shouldn't they be here as well??
//ADJUSTMENTS
sub.push({
@@ -434,6 +433,14 @@ function initNavPanel() {
route: "/inv-adjustments",
key: key++
});
//WAREHOUSES
sub.push({
title: "PartWarehouseList",
icon: "$ayiWarehouse",
route: "/inv-warehouses",
key: key++
});
}
//**** INVENTORY (TOP GROUP)

View File

@@ -243,6 +243,12 @@ export default {
params: { recordid: tid.id }
});
break;
case ayatype.PartWarehouse:
vm.$router.push({
name: "part-warehouse",
params: { recordid: tid.id }
});
break;
case ayatype.PartAssembly:
vm.$router.push({
name: "part-assembly-edit",

View File

@@ -157,6 +157,7 @@ export default {
"InventoryPurchaseOrders",
"InventoryPurchaseOrderReceipts",
"InventoryPartInventoryAdjustments",
"PartWarehouseList",
"WidgetList",
"VendorList",
"AdministrationGlobalSettings",