Browse Source

是否继续 2024/8/6

pull/1/head
test 5 months ago
parent
commit
11051c9dc0
  1. 8
      src/pages/repleinsh/record/repleinshRecord.vue

8
src/pages/repleinsh/record/repleinshRecord.vue

@ -228,7 +228,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