Commit 2e58329b authored by jingnan's avatar jingnan 👀

供外出库取消“申领数量不能大于当前选中物料的可用数量”限制

parent 2b503946
......@@ -73,7 +73,7 @@ export default {
submitEvent(addContinue) {
this.$refs['applyForm'].validate((valid) => {
if (valid && this.selection) {
if (this.applyForm.reqAmount > this.selection.unableAmount) return this.$utils.showMessageWarning('申领数量不能大于当前选中物料的可用数量!')
// if (this.applyForm.reqAmount > this.selection.unableAmount) return this.$utils.showMessageWarning('申领数量不能大于当前选中物料的可用数量!')
const data = {
'subTypeName': 'OutStorageOutItem',
'extMaterial': this.selection.extMaterial,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment