Browse Source

是否继续

hella_online_20240829
wangyufei 2 months ago
parent
commit
f025ee1d49
  1. 11
      src/pages/repleinsh/record/repleinshRecord.vue

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

@ -259,8 +259,15 @@
that.recommendList.forEach(r => r.locationCode = r.fromLocationCode)
let recommendInfo = res.data[0];
if (recommendInfo.batch != result.package.batch) {
that.showErrorMessage('扫描的批次【' + result.package.batch + '】,不是系统推荐的批次【' +
recommendInfo.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