Browse Source

先进先出发料加提示 2024/8/6

hella_vue3
王志国 1 month ago
parent
commit
4b558ba646
  1. 8
      src/pages/issue/record/issueRecord.vue

8
src/pages/issue/record/issueRecord.vue

@ -203,7 +203,13 @@ export default {
that.recommendList.forEach((r) => (r.locationCode = r.fromLocationCode))
const recommendInfo = res.data[0]
if (recommendInfo.batch != result.package.batch) {
that.showErrorMessage(`扫描的批次【${result.package.batch}】,不是系统推荐的批次【${recommendInfo.batch}】,不满足系统的先进先出规则,请重新扫描`)
that.$refs.comMessage.showQuestionMessage('扫描的批次【' + result.package.batch + '】,不是系统推荐的批次【' +
recommendInfo.batch + '】,不满足系统的先进先出规则,' + '是否继续?',
res => {
if (res) {
this.setData(result);
}
})
} else {
this.setData(result)
}

Loading…
Cancel
Save