|
|
|
@ -564,6 +564,11 @@ export default {
|
|
|
|
|
this.$message.error('当前仓库不能为空');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (this.formData.invWarehouseCode == null || this.formData.invWarehouseCode == '') {
|
|
|
|
|
this.$message.error('当前分库不能为空');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
let tQuery = Object.assign(JSON.parse(JSON.stringify(this.formData)));
|
|
|
|
|
tQuery.orderId = this.idQuery.id;
|
|
|
|
|
tQuery.actDate = parseTime(this.formData.actDate, '{y}-{m}-{d} {h}:{i}:{s}');
|
|
|
|
@ -669,6 +674,10 @@ export default {
|
|
|
|
|
this.$message.error('当前仓库不能为空');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (this.formData.invWarehouseCode == null || this.formData.invWarehouseCode == '') {
|
|
|
|
|
this.$message.error('当前分库不能为空');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (this.$isBlank(this.formData.fromCorp)) {
|
|
|
|
|
this.$message.error('当前往来单位不能为空');
|
|
|
|
|
return;
|
|
|
|
@ -874,6 +883,10 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
locCHange() {
|
|
|
|
|
|
|
|
|
|
if (this.$isNotBlank(this.formData.invWarehouseCode)) {
|
|
|
|
|
this.formData.invWarehouseCode = "";
|
|
|
|
|
}
|
|
|
|
|
this.findStorageMethod();
|
|
|
|
|
this.findSubInvByInv(this.formData.locStorageCode);
|
|
|
|
|
},
|
|
|
|
@ -933,7 +946,7 @@ export default {
|
|
|
|
|
findSubStorageMethod() {
|
|
|
|
|
let cQuery = {
|
|
|
|
|
pcode: this.formData.fromCorpId,
|
|
|
|
|
filter:2,
|
|
|
|
|
filter: 2,
|
|
|
|
|
};
|
|
|
|
|
filterSubByInv(cQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|