diff --git a/ayanova/src/views/inv-part-inventory-transactions.vue b/ayanova/src/views/inv-part-inventory-transactions.vue index 30be7dec..e045d8f7 100644 --- a/ayanova/src/views/inv-part-inventory-transactions.vue +++ b/ayanova/src/views/inv-part-inventory-transactions.vue @@ -29,7 +29,7 @@ export default { vm.rights = window.$gz.role.getRights(window.$gz.type.PartInventory); window.$gz.eventBus.$on("menu-click", clickHandler); - //Generate client criteria to send if filtered by part, whs or both + //Generate client criteria to send if filtered by part, whs or both //ClientCriteria is optional for this list, Format for this list is "PARTID,WAREHOUSEID" where the id is 0 if not filtered or the id to filter if (vm.$route.params.filter) { vm.clientCriteria = `${ @@ -39,7 +39,7 @@ export default { },${ vm.$route.params.filter.PartWarehouseName ? vm.$route.params.filter.PartWarehouseName - : "0" + : "" }`; } diff --git a/ayanova/src/views/inv-part-inventory.vue b/ayanova/src/views/inv-part-inventory.vue index 32ff47aa..9cd1163c 100644 --- a/ayanova/src/views/inv-part-inventory.vue +++ b/ayanova/src/views/inv-part-inventory.vue @@ -41,7 +41,7 @@ export default { },${ vm.$route.params.filter.PartWarehouseName ? vm.$route.params.filter.PartWarehouseName - : "0" + : "" }`; }