Browse Source

YT-1064采购收货申请编辑数量时不需要校验不能大于标签数量

intex
zhang_li 4 days ago
parent
commit
fb5e662cf9
  1. 2
      src/mycomponents/qty/recommendQtyEdit.vue

2
src/mycomponents/qty/recommendQtyEdit.vue

@ -196,7 +196,7 @@ import { nextTick } from 'vue';
})
return
}
if (this.allQty > this.labelQty && this.isNumTips) {
if (this.allQty > this.labelQty && this.isNumTips && !this.isNumPackTips) {
this.$refs.comMessage.showErrorMessage('数量[' + this.allQty + ']不允许大于标签数量[' +
this.labelQty +
']',

Loading…
Cancel
Save