Browse Source

库位扫描bug

hella_online_20240829
yufei0306 4 months ago
parent
commit
41460ca259
  1. 3
      src/pages/customerReturn/job/returnDetail.vue
  2. 3
      src/pages/productReceipt/job/fgProductReceiptDetail.vue

3
src/pages/customerReturn/job/returnDetail.vue

@ -169,6 +169,9 @@
that.detailSource = getDataSource(that.subList)
that.fromLocationCode = that.subList[0].fromLocationCode
that.jobToLocationCode = that.subList[0].toLocationCode
if(that.jobContent.allowModifyLocation=='FALSE'){
that.toLocationCode = that.subList[0].toLocationCode
}
that.toLocationAreaTypeList = getDirectoryItemArray(that.jobContent.toAreaTypes)
} else {
that.showMessage('列表数据为0');

3
src/pages/productReceipt/job/fgProductReceiptDetail.vue

@ -220,6 +220,9 @@
that.subList = res.data.subList;
that.jobStatus = res.data.status
that.jobToLocationCode = that.subList[0].toLocationCode
if(that.jobContent.allowModifyLocation=='FALSE'){
that.toLocationCode = that.subList[0].toLocationCode
}
that.toLocationTypeList = getDirectoryItemArray(that.jobContent.toLocationTypes)
that.detailSource = getDataSource(that.subList)
that.detailSource.forEach(r => {

Loading…
Cancel
Save