Browse Source

全部库存品入库明细查询修复

dev-xx
马远东 11 months ago
parent
commit
98d17757d8
  1. 1
      src/views/distribution/inventory/distributionStockList.vue
  2. 1
      src/views/distribution/inventory/distributionStockListDetails.vue

1
src/views/distribution/inventory/distributionStockList.vue

@ -1112,6 +1112,7 @@ export default {
materialId: row.row.materialId,
incomingBatch: row.row.incomingBatch,
name: row.row.descriptionGoods + ' — 明细',
id: row.row.id,
},
});
},

1
src/views/distribution/inventory/distributionStockListDetails.vue

@ -881,6 +881,7 @@ export default {
this.query.warehouseId = this.queryOwn.warehouseId;
// this.query.incomingBatch = this.$route.query.incomingBatch;
this.query.stockListId=this.$route.query.id;
console.log(this.query.stockListId,'this.query.stockListId');
this.query.storeId =
!!this.queryOwn.storeId && this.queryOwn.storeId != '-1' ? this.queryOwn.storeId : null;
if (!!this.queryOwn.pid) {

Loading…
Cancel
Save