Browse Source

修改翻包提示

hella_online_20240821
lijuncheng 1 month ago
parent
commit
2b02a7e51f
  1. 9
      src/pages/package/record/overPackageRecord.vue

9
src/pages/package/record/overPackageRecord.vue

@ -381,6 +381,11 @@
this.showErrorMessage("请选择目标包装规格")
return;
}
if(this.fromPackUnit==this.toPackUnit){
this.showErrorMessage("来源包装规格与目标包装规格一致,不能进行翻包操作")
return;
}
this.checkSubmit();
} else {
@ -402,11 +407,11 @@
this.$refs.comMessage.showQuestionMessage("扫描数量【" + tempHandleQty +
"】,将有1个非整包,是否提交?", res => {
if (res) {
this.submitJob()
// this.submitJob()
}
});
} else {
this.submitJob()
// this.submitJob()
}
},

Loading…
Cancel
Save