Browse Source

物料隔离任务不大于库存余额的时候直接提交

intex
张立 2 days ago
parent
commit
a3c2084e80
  1. 8
      src/pages/inventoryMove/job/inventoryMoveDetail.vue

8
src/pages/inventoryMove/job/inventoryMoveDetail.vue

@ -609,13 +609,19 @@
}
}
if (str2) {
str2 = str2 + '\n是否确认提交'
str2 = str2 + '\n是否确认提交'
this.$refs.comMessage.showQuestionMessage1(str2, 'red', res => {
if (res) {
this.submitJob()
}
});
return;
}else{
this.$refs.comMessage.showQuestionMessage('是否确认提交?', res => {
if (res) {
this.submitJob()
}
});
}
}else{
if (str1) {

Loading…
Cancel
Save