带票出入库明细 添加查询条件等

test
wangwei 2 years ago
parent 8097db4a8e
commit a3bc3dac5c

@ -66,12 +66,43 @@
</el-form-item>
</el-col>
</el-row>
<el-row>
<el-col :span="6">
<el-form-item class="query-form-item" label="出入库类型:">
<el-select v-model="filterQuery.mainAction" placeholder="请选择出入库类型" style="width: 90%">
<el-option label="全部" value=""></el-option>
<el-option label="入库" value="WareHouseIn"></el-option>
<el-option label="出库" value="WareHouseOut"></el-option>
</el-select>
</el-form-item>
</el-col>
<el-col :span="6">
<el-form-item prop="action" label="单据类型:">
<el-select
v-model="filterQuery.action"
placeholder="请选择单据类型"
style="width: 90%"
>
<el-option
v-for="item in busTypeOptions"
:key="item.name"
:label="item.name"
:value="item.action"
>
<span style="float: left">{{ item.name }}</span>
</el-option>
</el-select>
</el-form-item>
</el-col>
</el-row>
</el-form>
<div class="top-right-btn">
<el-button-group>
<el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button>
<el-button type="primary" icon="el-icon-refresh" @click="optinPrint"></el-button>
<el-button type="primary" icon="el-icon-refresh" @click="selectPrint"></el-button>
<el-button type="primary" icon="el-icon-refresh" @click="selectPrint"></el-button>
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
<el-button type="primary" icon="el-icon-search" @click="onSubmit"></el-button>
</el-button-group>
@ -82,6 +113,7 @@
<el-table-column type="selection" width="55"></el-table-column>
<el-table-column label="序号" type="index"></el-table-column>
<el-table-column label="供应商" prop="fromCorpName" width="160" v-if="showSup"></el-table-column>
<el-table-column label="往来单位" prop="fromName" width="160"></el-table-column>
<el-table-column label="出入库单号" prop="orderIdFk" width="160"></el-table-column>
<el-table-column label="DI/物资编码" prop="nameCode" width="160"></el-table-column>
<el-table-column label="物资名称" prop="coName" width="160" show-overflow-tooltip></el-table-column>
@ -111,6 +143,7 @@
<script>
import {getResultDetailList, getResultOrderList, verifyTemplateFile, printOrder} from '@/api/inout/orderDetailResult'
import {findByInvUser, getLocalJoinByUser} from "@/api/basic/busType";
export default {
name: "supInoutSearchOrder",
@ -118,6 +151,7 @@ export default {
return {
showSearch: true,
list: {},
busTypeOptions:[],
filterQuery: {
id: "",
orderIdFk: null,
@ -214,6 +248,21 @@ export default {
hideSearch() {
this.showSearch = !this.showSearch;
},
//,
getBusTypeByInv() {
let query = {
code: this.$store.getters.locInvCode,
enabled: true,
};
getLocalJoinByUser(query)
.then((response) => {
this.busTypeOptions = response.data.list || [];
})
.catch(() => {
});
},
getList() {
this.loading = true;
this.filterQuery.actionType = this.actionType;
@ -322,6 +371,7 @@ export default {
}
this.actionType = this.$route.query.name;
this.getList();
this.getBusTypeByInv();
}
,
}

Loading…
Cancel
Save