作者 朱兆平

bug-fix:

1. 修复仓库管理-库位管理列表双击时弹出的窗口显示的不是库位的库存信息.
... ... @@ -1164,7 +1164,7 @@
this.$message.success(res.msg)
this.getList()
}).catch(error => {
this.$message.error(res.msg)
this.$message.error(error)
})
}).catch(() => {
})
... ... @@ -1180,11 +1180,12 @@
},
watch: {
parentLoId(value) {
if (jsutil.checkNull(this.parentLoId)){
if (value && jsutil.checkNull(this.parentLoId)){
this.queryInfo.locationno = this.parentLoId;
}
this.getList();
}
}
}
}
... ...
... ... @@ -231,7 +231,7 @@
</el-row>
</el-card>
<el-dialog title="库存" :visible.sync="dialogVisible" fullscreen >
<INVENTROY :parent-locations-id="selectedLoId" />
<INVENTROY :parentLoId="selectedLoId" />
<span slot="footer" class="dialog-footer">
<el-button type="info" @click="dialogVisible = false">关 闭</el-button>
</span>
... ...
... ... @@ -191,7 +191,7 @@
</el-table-column>
<el-table-column
prop="opter"
label="入库经办人"
label="入库经办人"
width="100">
</el-table-column>
<el-table-column
... ...