|
|
|
@ -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) { //扫码单据立即提交
|
|
|
|
|