Browse Source

库位扫描bug

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

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

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

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

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

Loading…
Cancel
Save