|
|
|
@ -365,7 +365,7 @@ export default {
|
|
|
|
|
fromCorp: "医院",
|
|
|
|
|
fromType: null,
|
|
|
|
|
locStorageCode: null,
|
|
|
|
|
invWarehouseCode:null,
|
|
|
|
|
invWarehouseCode: null,
|
|
|
|
|
actDate: new Date(),
|
|
|
|
|
billType: null,
|
|
|
|
|
preCheck: false,
|
|
|
|
@ -455,6 +455,10 @@ 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}');
|
|
|
|
@ -580,6 +584,10 @@ export default {
|
|
|
|
|
this.$message.error('当前仓库不能为空');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (this.formData.invWarehouseCode == null || this.formData.invWarehouseCode == '') {
|
|
|
|
|
this.$message.error('当前分库不能为空');
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
this.formData.corpOrderId = this.formData.corpOrderId.trim();
|
|
|
|
|
if (this.$isBlank(this.formData.corpOrderId)) {
|
|
|
|
|
let date = new Date();
|
|
|
|
@ -764,6 +772,9 @@ export default {
|
|
|
|
|
filterSubByInv(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.subInvList = response.data || [];
|
|
|
|
|
if (this.subInvList != null && this.subInvList.length == 1) {
|
|
|
|
|
this.formData.invWarehouseCode = this.subInvList[0];
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|