diff --git a/src/views/modules/other-inout/otherInboundDetail.vue b/src/views/modules/other-inout/otherInboundDetail.vue index 665ab4d..cc9c004 100644 --- a/src/views/modules/other-inout/otherInboundDetail.vue +++ b/src/views/modules/other-inout/otherInboundDetail.vue @@ -466,7 +466,8 @@ export default { site: this.inboundInfo.site, buNo: this.inboundInfo.buNo, inboundNo: this.inboundNo, - documentType: '其他入库' // 单据类型 + documentType: '其他入库', // 单据类型 + warehouseId: getCurrentWarehouse() // 当前仓库 }; getMaterialList(params).then(({ data }) => { @@ -623,7 +624,8 @@ export default { const params = { site: this.inboundInfo.site, buNo: this.inboundInfo.buNo, - inboundNo: this.inboundNo + inboundNo: this.inboundNo, + warehouseId: getCurrentWarehouse() // 当前仓库 }; getMaterialList(params).then(({ data }) => { diff --git a/src/views/modules/other-inout/otherOutboundDetail.vue b/src/views/modules/other-inout/otherOutboundDetail.vue index 4e91719..872fad4 100644 --- a/src/views/modules/other-inout/otherOutboundDetail.vue +++ b/src/views/modules/other-inout/otherOutboundDetail.vue @@ -363,7 +363,8 @@ export default { const params = { site: this.outboundInfo.site, buNo: this.outboundInfo.buNo, - outboundNo: this.outboundNo + outboundNo: this.outboundNo, + warehouseId: getCurrentWarehouse() // 当前仓库 }; getMaterialList(params).then(({ data }) => { diff --git a/src/views/modules/production/productionInboundStorage.vue b/src/views/modules/production/productionInboundStorage.vue index fe449e1..3c9809d 100644 --- a/src/views/modules/production/productionInboundStorage.vue +++ b/src/views/modules/production/productionInboundStorage.vue @@ -477,6 +477,7 @@ export default { buNo: this.materialInfo.buNo, inboundNo: this.inboundNo, relatedOrderNo: this.relatedOrderNo, + warehouseId: getCurrentWarehouse() // 当前仓库 }; getMaterialList(params).then(({ data }) => { diff --git a/src/views/modules/production/productionReturnStorage.vue b/src/views/modules/production/productionReturnStorage.vue index ec63958..a90a745 100644 --- a/src/views/modules/production/productionReturnStorage.vue +++ b/src/views/modules/production/productionReturnStorage.vue @@ -389,7 +389,8 @@ export default { const params = { site: this.materialInfo.site, buNo: this.materialInfo.buNo, - inboundNo: this.inboundNo + inboundNo: this.inboundNo, + warehouseId: getCurrentWarehouse() // 当前仓库 }; getMaterialList(params).then(({ data }) => { diff --git a/src/views/modules/purchase-inbound/inboundStorage.vue b/src/views/modules/purchase-inbound/inboundStorage.vue index be5d774..87ffb87 100644 --- a/src/views/modules/purchase-inbound/inboundStorage.vue +++ b/src/views/modules/purchase-inbound/inboundStorage.vue @@ -447,7 +447,8 @@ export default { const params = { site: this.materialInfo.site, buNo: this.materialInfo.buNo, - inboundNo: this.inboundNo + inboundNo: this.inboundNo, + warehouseId: getCurrentWarehouse() // 当前仓库 }; getMaterialList(params).then(({ data }) => { diff --git a/src/views/modules/purchase-return/purchaseReturnDetail.vue b/src/views/modules/purchase-return/purchaseReturnDetail.vue index d2d110f..b7dbd40 100644 --- a/src/views/modules/purchase-return/purchaseReturnDetail.vue +++ b/src/views/modules/purchase-return/purchaseReturnDetail.vue @@ -366,7 +366,8 @@ export default { const params = { site: this.returnInfo.site, buNo: this.returnInfo.buNo, - returnNo: this.returnNo + returnNo: this.returnNo, + warehouseId: getCurrentWarehouse() // 当前仓库 }; getMaterialList(params).then(({ data }) => { diff --git a/src/views/modules/sales-return/salesReturnStorage.vue b/src/views/modules/sales-return/salesReturnStorage.vue index 20e92e5..16f15fc 100644 --- a/src/views/modules/sales-return/salesReturnStorage.vue +++ b/src/views/modules/sales-return/salesReturnStorage.vue @@ -457,7 +457,8 @@ export default { const params = { site: this.materialInfo.site, buNo: this.materialInfo.buNo, - returnNo: this.returnNo + returnNo: this.returnNo, + warehouseId: getCurrentWarehouse() // 当前仓库 }; getSalesReturnMaterialList(params).then(({ data }) => { diff --git a/src/views/modules/sales/salesOutboundDetail.vue b/src/views/modules/sales/salesOutboundDetail.vue index f11d25a..409d989 100644 --- a/src/views/modules/sales/salesOutboundDetail.vue +++ b/src/views/modules/sales/salesOutboundDetail.vue @@ -391,7 +391,8 @@ export default { const params = { site: this.outboundInfo.site, buNo: this.outboundInfo.buNo, - outboundNo: this.outboundNo + outboundNo: this.outboundNo, + warehouseId: getCurrentWarehouse() // 当前仓库 }; getMaterialList(params).then(({ data }) => {