|
|
|
@ -232,7 +232,7 @@
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button-group>
|
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
|
|
|
|
|
<el-button type="primary" icon="search" @click="queryInvProducts"
|
|
|
|
|
<el-button type="primary" icon="search" @click="queryInvProductsList"
|
|
|
|
|
>查询
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
@ -414,6 +414,10 @@ export default {
|
|
|
|
|
this.$message.warning("请先选择养护仓库!");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (isBlank(this.formData.code)) {
|
|
|
|
|
this.$message.error("请输入或扫描条码!")
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (isBlank(this.formData.orderId)) {
|
|
|
|
|
this.saveOrder(this.formData.code);
|
|
|
|
|
return;
|
|
|
|
@ -494,6 +498,10 @@ export default {
|
|
|
|
|
this.filterQuery.page = val;
|
|
|
|
|
this.queryInvProducts();
|
|
|
|
|
},
|
|
|
|
|
queryInvProductsList() {
|
|
|
|
|
this.filterQuery.page = 1;
|
|
|
|
|
this.queryInvProducts();
|
|
|
|
|
},
|
|
|
|
|
queryInvProducts() {
|
|
|
|
|
this.filterQuery.invWarehouseCode = this.formData.invWarehouseCode;
|
|
|
|
|
this.filterQuery.invSpaceCode = this.formData.invSpaceCode;
|
|
|
|
|