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

prod
1178634255 2 years ago
parent 529d9b02a4
commit f7a2cfc2aa

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

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

@ -551,6 +551,7 @@ export default {
this.list = []; this.list = [];
}); });
}, },
//
handleSubForm(data, formName) { // handleSubForm(data, formName) { //
if (data != null) { if (data != null) {
this.invWouse = data; 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) { normalizer(node) {
if (node.children && !node.children.length) { if (node.children && !node.children.length) {
delete node.children; delete node.children;

Loading…
Cancel
Save