|
|
|
@ -267,6 +267,7 @@ export default {
|
|
|
|
|
1: "预入库",
|
|
|
|
|
2: "普通采购",
|
|
|
|
|
},
|
|
|
|
|
acount:null,
|
|
|
|
|
orderEditor: true,
|
|
|
|
|
sOptions: [],
|
|
|
|
|
sValue: [],
|
|
|
|
@ -297,6 +298,7 @@ export default {
|
|
|
|
|
|
|
|
|
|
this.tableCountChange(this.currentRow);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.$refs["dataForm"].validate(valid => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
if (this.codeArray.length < 1) {
|
|
|
|
@ -304,7 +306,9 @@ export default {
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (status === '2') {
|
|
|
|
|
|
|
|
|
|
if (this.acount == "" || this.acount == null) {
|
|
|
|
|
return this.$message.error("到货数量不能为空!");
|
|
|
|
|
}
|
|
|
|
|
if (this.formData.billDate == "" || this.formData.billDate == null) {
|
|
|
|
|
return this.$message.error("单据日期不能为空!");
|
|
|
|
|
}
|
|
|
|
@ -318,6 +322,9 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (status == "1") {
|
|
|
|
|
if (this.formData.invCode== "" || this.formData.invCode == null) {
|
|
|
|
|
return this.$message.error("到货仓库不能为空!");
|
|
|
|
|
}
|
|
|
|
|
this.submitFunction(status);
|
|
|
|
|
} else {
|
|
|
|
|
let tip = "是否确定提交订单?";
|
|
|
|
@ -428,6 +435,7 @@ export default {
|
|
|
|
|
tableCountChange(row) {
|
|
|
|
|
if (this.$isNotBlank(row)) {
|
|
|
|
|
updateDetail(this.currentRow);
|
|
|
|
|
this.acount=row.arrivalCount;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
tableRowClassName({row, rowIndex}) {
|
|
|
|
|