修改bug

ywj_dev
wangwei 2 years ago
parent 5d9a93569d
commit 37c5c04345

@ -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}) {

@ -275,7 +275,7 @@ export default {
},
getList() {
this.loading = true;
this.listQuery.customerId =this.customerId;
//this.listQuery.customerId =this.customerId;
filterCompanyProductRelevance(this.listQuery)
.then((response) => {
this.loading = false;

@ -193,7 +193,7 @@ export default {
productName: this.multipleSelection.cpmctymc,
count: 1,
orderIdFk: this.pId,
supId: this.multipleSelection.customerId,
supId: this.customerId,
zczbhhzbapzbh: this.multipleSelection.zczbhhzbapzbh
};
addOrderDetail(tQuery).then((response) => {

@ -148,7 +148,7 @@
:purType="1"
:pId="pId"
:data="thisData"
:customer-id="formData.supId"
:customerId="formData.supId"
:inv-code="formData.invCode"
></purOrderProducts>
</el-dialog>

Loading…
Cancel
Save