|
|
@ -549,10 +549,10 @@ |
|
|
|
this.$emit('backTask') |
|
|
|
this.$emit('backTask') |
|
|
|
}, |
|
|
|
}, |
|
|
|
/*提交申请*/ |
|
|
|
/*提交申请*/ |
|
|
|
applySubmit(e) { |
|
|
|
applySubmit(e) { |
|
|
|
this.getAllTable().then(tables => { |
|
|
|
this.getAllTable().then(tables => { |
|
|
|
return validateFormAndTables(this.form, tables) |
|
|
|
return validateFormAndTables(this.form, tables) |
|
|
|
}).then(allValues => { |
|
|
|
}).then(async allValues => { |
|
|
|
if (typeof this.classifyIntoFormData !== 'function') { |
|
|
|
if (typeof this.classifyIntoFormData !== 'function') { |
|
|
|
throw this.throwNotFunction('classifyIntoFormData') |
|
|
|
throw this.throwNotFunction('classifyIntoFormData') |
|
|
|
} |
|
|
|
} |
|
|
@ -564,6 +564,35 @@ |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
this.describes = this.describes + '---' + formData.processMaterialWarehousingListList[i].materialName |
|
|
|
this.describes = this.describes + '---' + formData.processMaterialWarehousingListList[i].materialName |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
//查询 |
|
|
|
|
|
|
|
let params={}; |
|
|
|
|
|
|
|
params.materialGroup=formData.processMaterialWarehousingListList[i].materialGroup; |
|
|
|
|
|
|
|
params.materialNumber=formData.processMaterialWarehousingListList[i].materialNumber; |
|
|
|
|
|
|
|
params.planId=this.processUdgetPlanIds; |
|
|
|
|
|
|
|
this.getAction(this.url.queryQuantityByPlanId,params).then((res) => { |
|
|
|
|
|
|
|
if (res.success) { |
|
|
|
|
|
|
|
if(res.result!=null){ |
|
|
|
|
|
|
|
this.planQuantity=res.result; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
params.historyId=formData.processMaterialWarehousingListList[i].id; |
|
|
|
|
|
|
|
console.log('表单回显数据11', this.planQuantity) |
|
|
|
|
|
|
|
await this.getAction(this.url.queryQuantityByProcessUdgetPlanId,params).then((res) => { |
|
|
|
|
|
|
|
if (res.success) { |
|
|
|
|
|
|
|
if(res.result!=null){ |
|
|
|
|
|
|
|
this.warehousingQuantity=res.result; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
console.log('表单回显数据21', this.warehousingQuantity) |
|
|
|
|
|
|
|
if(this.planQuantity-this.warehousingQuantity-formData.processMaterialWarehousingListList[i].materialQuantity<0){ |
|
|
|
|
|
|
|
this.$message.error('入库数量不能大于采购数量') |
|
|
|
|
|
|
|
this.quantityChange=false; |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
}else { |
|
|
|
|
|
|
|
this.quantityChange=true; |
|
|
|
|
|
|
|
} |
|
|
|
if (formData.processMaterialWarehousingListList[i].materialPrice*formData.processMaterialWarehousingListList[i].materialQuantity!=formData.processMaterialWarehousingListList[i].materialAmount){ |
|
|
|
if (formData.processMaterialWarehousingListList[i].materialPrice*formData.processMaterialWarehousingListList[i].materialQuantity!=formData.processMaterialWarehousingListList[i].materialAmount){ |
|
|
|
this.$message.error('请检查入库数量'); |
|
|
|
this.$message.error('请检查入库数量'); |
|
|
|
return; |
|
|
|
return; |
|
|
@ -622,7 +651,7 @@ |
|
|
|
handleSubmit(e) { |
|
|
|
handleSubmit(e) { |
|
|
|
this.getAllTable().then(tables => { |
|
|
|
this.getAllTable().then(tables => { |
|
|
|
return validateFormAndTables(this.form, tables) |
|
|
|
return validateFormAndTables(this.form, tables) |
|
|
|
}).then(allValues => { |
|
|
|
}).then(async allValues => { |
|
|
|
if (typeof this.classifyIntoFormData !== 'function') { |
|
|
|
if (typeof this.classifyIntoFormData !== 'function') { |
|
|
|
throw this.throwNotFunction('classifyIntoFormData') |
|
|
|
throw this.throwNotFunction('classifyIntoFormData') |
|
|
|
} |
|
|
|
} |
|
|
@ -642,13 +671,43 @@ |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
this.describes = this.describes + '---' + formData.processMaterialWarehousingListList[i].materialName |
|
|
|
this.describes = this.describes + '---' + formData.processMaterialWarehousingListList[i].materialName |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
//查询 |
|
|
|
|
|
|
|
let params={}; |
|
|
|
|
|
|
|
params.materialGroup=formData.processMaterialWarehousingListList[i].materialGroup; |
|
|
|
|
|
|
|
params.materialNumber=formData.processMaterialWarehousingListList[i].materialNumber; |
|
|
|
|
|
|
|
params.planId=this.processUdgetPlanIds; |
|
|
|
|
|
|
|
this.getAction(this.url.queryQuantityByPlanId,params).then((res) => { |
|
|
|
|
|
|
|
if (res.success) { |
|
|
|
|
|
|
|
if(res.result!=null){ |
|
|
|
|
|
|
|
this.planQuantity=res.result; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
params.historyId=formData.processMaterialWarehousingListList[i].id; |
|
|
|
|
|
|
|
console.log('表单回显数据11', this.planQuantity) |
|
|
|
|
|
|
|
await this.getAction(this.url.queryQuantityByProcessUdgetPlanId,params).then((res) => { |
|
|
|
|
|
|
|
if (res.success) { |
|
|
|
|
|
|
|
if(res.result!=null){ |
|
|
|
|
|
|
|
this.warehousingQuantity=res.result; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}) |
|
|
|
|
|
|
|
console.log('表单回显数据21', this.warehousingQuantity) |
|
|
|
|
|
|
|
if(this.planQuantity-this.warehousingQuantity-formData.processMaterialWarehousingListList[i].materialQuantity<0){ |
|
|
|
|
|
|
|
this.$message.error('入库数量不能大于采购数量') |
|
|
|
|
|
|
|
this.quantityChange=false; |
|
|
|
|
|
|
|
return; |
|
|
|
|
|
|
|
}else { |
|
|
|
|
|
|
|
this.quantityChange=true; |
|
|
|
|
|
|
|
} |
|
|
|
if (formData.processMaterialWarehousingListList[i].materialPrice*formData.processMaterialWarehousingListList[i].materialQuantity!=formData.processMaterialWarehousingListList[i].materialAmount){ |
|
|
|
if (formData.processMaterialWarehousingListList[i].materialPrice*formData.processMaterialWarehousingListList[i].materialQuantity!=formData.processMaterialWarehousingListList[i].materialAmount){ |
|
|
|
this.$message.error('请检查入库数量'); |
|
|
|
this.$message.error('请检查入库数量'); |
|
|
|
|
|
|
|
e=false; |
|
|
|
return; |
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
if (e==true){ |
|
|
|
} |
|
|
|
this.passTask() |
|
|
|
if (e==true){ |
|
|
|
} |
|
|
|
this.passTask() |
|
|
|
} |
|
|
|
} |
|
|
|
formData.describes = this.describes |
|
|
|
formData.describes = this.describes |
|
|
|
console.log('格式化后的数据', formData) |
|
|
|
console.log('格式化后的数据', formData) |
|
|
|