|
|
|
@ -152,14 +152,20 @@
|
|
|
|
|
border>
|
|
|
|
|
<el-table-column label="序号" type="index"></el-table-column>
|
|
|
|
|
<el-table-column label="供应商" prop="supName" v-if="showSup" show-overflow-tooltip width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="货架" prop="spaceName" v-if="filterQuery.invSpaceCode!='' && filterQuery.invSpaceCode!=null" show-overflow-tooltip width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="货架" prop="spaceName"
|
|
|
|
|
v-if="filterQuery.invSpaceCode!='' && filterQuery.invSpaceCode!=null" show-overflow-tooltip
|
|
|
|
|
width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="DI/物资编码" prop="nameCode" width="150"></el-table-column>
|
|
|
|
|
<el-table-column label="物资名称" prop="cpmctymc" width="180" show-overflow-tooltip></el-table-column>
|
|
|
|
|
<el-table-column label="规格型号" prop="ggxh" show-overflow-tooltip width="180"></el-table-column>
|
|
|
|
|
<el-table-column label="批次号" prop="batchNo" width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="入库数量" prop="inCount" width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="出库数量" prop="outCount" width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="结余数量" prop="reCount" width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="结余数量" prop="reCount" width="120">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ scope.row.inCount - scope.row.outCount }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="部门" prop="deptName" v-if="showSup"
|
|
|
|
|
show-overflow-tooltip width="120"></el-table-column>
|
|
|
|
|
<el-table-column label="仓库" prop="invName" v-if="showSup"
|
|
|
|
@ -331,9 +337,9 @@ export default {
|
|
|
|
|
findAllInvByUser(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.invList = response.data || [];
|
|
|
|
|
for(var i=0;i< this.invList.length;i++){
|
|
|
|
|
if(this.invList[i].advanceType == 2){
|
|
|
|
|
this.filterQuery.invCode=this.invList[i].code;
|
|
|
|
|
for (var i = 0; i < this.invList.length; i++) {
|
|
|
|
|
if (this.invList[i].advanceType == 2) {
|
|
|
|
|
this.filterQuery.invCode = this.invList[i].code;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
this.getList();
|
|
|
|
@ -449,7 +455,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
this.findMethod();
|
|
|
|
|
this.getInvList();
|
|
|
|
|
// this.getList();
|
|
|
|
|
// this.getList();
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
</script>
|
|
|
|
|