|
|
@ -100,12 +100,12 @@
|
|
|
|
{{ scope.row.status | statusFilterName }}
|
|
|
|
{{ scope.row.status | statusFilterName }}
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="业务类型" prop="billTypeName" width="150">
|
|
|
|
<el-table-column label="业务类型" prop="billTypeName" width="150">
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="当前仓库" prop="invName" width="150">
|
|
|
|
<el-table-column label="当前仓库" prop="invName" width="150">
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="当前分库" prop="subInvName" width="120">
|
|
|
|
<el-table-column label="当前分库" prop="subInvName" width="120">
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<!-- <el-table-column label="采购类型">-->
|
|
|
|
<!-- <el-table-column label="采购类型">-->
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
<!-- {{ scope.row.type | typeFilterName }}-->
|
|
|
|
<!-- {{ scope.row.type | typeFilterName }}-->
|
|
|
@ -952,7 +952,7 @@ export default {
|
|
|
|
.then((response) => {
|
|
|
|
.then((response) => {
|
|
|
|
this.storageList = response.data || [];
|
|
|
|
this.storageList = response.data || [];
|
|
|
|
if (this.storageList.length > 0) {
|
|
|
|
if (this.storageList.length > 0) {
|
|
|
|
this.invChange();
|
|
|
|
this.getSubInvList();
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
@ -972,6 +972,19 @@ export default {
|
|
|
|
.catch(() => {
|
|
|
|
.catch(() => {
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
getSubInvList() {
|
|
|
|
|
|
|
|
let query = {
|
|
|
|
|
|
|
|
pcode: this.query.locStorageCode
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
filterSubByInv(query)
|
|
|
|
|
|
|
|
.then((response) => {
|
|
|
|
|
|
|
|
this.subInvList = response.data || [];
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
subInvChange() {
|
|
|
|
subInvChange() {
|
|
|
|
this.getBusType();
|
|
|
|
this.getBusType();
|
|
|
|
},
|
|
|
|
},
|
|
|
|