修复入账库按货位查询后,库存详情列表无法显示所有条码信息

prod
1178634255 2 years ago
parent 529d9b02a4
commit f7a2cfc2aa

@ -73,8 +73,8 @@
@select="handleSelect"
@keypress.enter.native="spaceEnterKey($event)"
@clear="clearFormData"
style="width: 90%"
clearable
style="width: 90%"
clearable
></el-autocomplete>
</el-form-item>
</el-col>

@ -198,9 +198,9 @@ export default {
this.invProductDetailQuery.batchNo = this.inputQuery.batchNo;
this.invProductDetailQuery.deptCode = this.inputQuery.deptCode;
this.invProductDetailQuery.invCode = this.inputQuery.invCode;
if(!isBlank(this.invProductDetailQuery.invSpaceCode)){
/*if(!isBlank(this.invProductDetailQuery.invSpaceCode)){
this.invProductDetailQuery.code=this.inputQuery.code
}
}*/
getInvProductDetail(this.invProductDetailQuery).then((res) => {
this.loading = false;
if (res.code === 20000) {

@ -551,6 +551,7 @@ export default {
this.list = [];
});
},
//
handleSubForm(data, formName) { //
if (data != null) {
this.invWouse = data;
@ -656,6 +657,27 @@ export default {
});
},
//
// findDeptMethod() { //---
// let query = {
// status: 1,
// };
// filterList(query)
// .then((response) => {
// this.loading = false;
// let fromDeptOptions = response.data.list || [];
// // ""
// fromDeptOptions = fromDeptOptions.filter((item) => {
// return item.name !== "";
// });
// this.fromDeptOptions = fromDeptOptions;
// })
// .catch(() => {
// this.loading = false;
// this.fromDeptOptions = [];
// });
// },
normalizer(node) {
if (node.children && !node.children.length) {
delete node.children;

Loading…
Cancel
Save