新增扫码单 新增单据不做任何操作直接点击提交 系统提示有误

dev
黄泽腾 2 years ago
parent f940dd5521
commit b262a58040

@ -691,6 +691,34 @@ export default {
submit(val) {
if (this.$isBlank(this.orderFormData.action)) {
this.$message.warning("单据类型不能为空!");
return
}
if (this.curAction.corpType === 0 || this.curAction.corpType === 2 || (this.curAction.corpType === 1 && !this.curAction.genUnit)) {
if (this.$isBlank(this.orderFormData.fromCorp)) {
this.$message.warning("请选择送货单位!");
return;
}
}
if (this.curAction.corpType == 3) {
if (this.$isBlank(this.orderFormData.fromInvCode)) {
this.$message.warning("请选择送货单位!");
return;
}
}
if (this.curAction.corpType === 1 && this.curAction.genUnit) {
if (this.$isBlank(this.orderFormData.fromCorp)) {
this.$message.warning("请选择送货单位!");
return;
}
}
if (this.$isBlank(this.orderFormData.billNo)) {
this.$message.warning("请扫码录入数据!");
return;
}
let tQuery = Object.assign(JSON.parse(JSON.stringify(this.orderFormData)));
tQuery.orderId = this.orderFormData.billNo;
if (this.viewType == 2) { //

Loading…
Cancel
Save