Browse Source

2025-12-09

pda物料清单优化
master
fengyuan_yang 1 month ago
parent
commit
29d2ce78cb
  1. 6
      src/views/modules/other-inout/otherInboundDetail.vue
  2. 3
      src/views/modules/other-inout/otherOutboundDetail.vue
  3. 1
      src/views/modules/production/productionInboundStorage.vue
  4. 3
      src/views/modules/production/productionReturnStorage.vue
  5. 3
      src/views/modules/purchase-inbound/inboundStorage.vue
  6. 3
      src/views/modules/purchase-return/purchaseReturnDetail.vue
  7. 3
      src/views/modules/sales-return/salesReturnStorage.vue
  8. 3
      src/views/modules/sales/salesOutboundDetail.vue

6
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 }) => {

3
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 }) => {

1
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 }) => {

3
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 }) => {

3
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 }) => {

3
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 }) => {

3
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 }) => {

3
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 }) => {

Loading…
Cancel
Save