|
|
|
@ -25,6 +25,18 @@
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item class="query-form-item">
|
|
|
|
|
<el-select v-model="filterQuery.locStorageCode" placeholder="请选择当前仓库" clearable="true"
|
|
|
|
|
size="mini">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in storageList"
|
|
|
|
|
:key="item.name"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.code">
|
|
|
|
|
<span style="float: left">{{ item.name }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button-group>
|
|
|
|
|
<el-button
|
|
|
|
@ -55,31 +67,15 @@
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="往来单位" prop="fromCorp" width="220">
|
|
|
|
|
<el-table-column label="往来单位" prop="fromCorp" width="250">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<!-- {{ scope.row.fromCorp }}-->
|
|
|
|
|
|
|
|
|
|
<p v-if="scope.row.fromCorp == null">
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
size="mini"
|
|
|
|
|
@click.native.stop="handleUnitClick(scope.row)"
|
|
|
|
|
>选择往来单位
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
</p>
|
|
|
|
|
<p v-if="scope.row.fromCorp !== null">
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
size="mini"
|
|
|
|
|
@click.native.stop="handleUnitClick(scope.row)"
|
|
|
|
|
>{{ scope.row.fromCorp }}
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
{{ scope.row.fromCorp }}
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="当前仓库" prop="locStorageCode" width="150">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{ getStorageName(scope.row.locStorageCode) }}</span>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="创建时间" prop="actDate" show-overflow-tooltip>
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
@ -102,7 +98,7 @@
|
|
|
|
|
</el-tag>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column label="操作" width="300" fixed="right">
|
|
|
|
|
<el-table-column label="操作" width="120" fixed="right">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
type="text"
|
|
|
|
@ -262,6 +258,7 @@ import addOrder from "./IOAddOrder";
|
|
|
|
|
import store from "../../store";
|
|
|
|
|
import {getBussinessType} from "../../api/basic/bussinessType";
|
|
|
|
|
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
|
|
|
|
|
import {filterAllByUser} from "@/api/basic/invWarehouse";
|
|
|
|
|
|
|
|
|
|
const formJson = {
|
|
|
|
|
site_id: "",
|
|
|
|
@ -321,6 +318,7 @@ export default {
|
|
|
|
|
codeDetailVisible: false,
|
|
|
|
|
total: 0,
|
|
|
|
|
loading: true,
|
|
|
|
|
storageList: [],
|
|
|
|
|
index: null,
|
|
|
|
|
formName: null,
|
|
|
|
|
errorDetail: "1111111111111",
|
|
|
|
@ -379,7 +377,22 @@ export default {
|
|
|
|
|
closeDetailDialog(val) {
|
|
|
|
|
this.codeDetailVisible = false;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getStorage() {
|
|
|
|
|
this.storageList = [];
|
|
|
|
|
filterAllByUser()
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.storageList = response.data || [];
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getStorageName(code) {
|
|
|
|
|
for (let i = 0; i < this.storageList.length; i++) {
|
|
|
|
|
if (this.storageList[i].code === code) {
|
|
|
|
|
return this.storageList[i].name;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
closeDialog() {
|
|
|
|
|
this.addOrderVisible = false;
|
|
|
|
|
this.getList();
|
|
|
|
@ -540,6 +553,7 @@ export default {
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.getStorage();
|
|
|
|
|
this.getBusType();
|
|
|
|
|
let query = this.$route.query;
|
|
|
|
|
this.filterQuery = Object.assign(this.filterQuery, query);
|
|
|
|
|