|
|
|
@ -11,7 +11,8 @@
|
|
|
|
|
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="申购部门:">
|
|
|
|
|
<el-select v-model="filterQuery.deptCode" clearable @change="getInvList" placeholder="请选择申购部门" style="width: 90%">
|
|
|
|
|
<el-select v-model="filterQuery.deptCode" clearable @change="getInvList" placeholder="请选择申购部门"
|
|
|
|
|
style="width: 90%">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in deptList"
|
|
|
|
|
:key="item.code"
|
|
|
|
@ -36,9 +37,20 @@
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-row>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="到货仓库">
|
|
|
|
|
<el-select v-model="filterQuery.targetInvCode" @change="getList" style="width: 90%" clearable
|
|
|
|
|
placeholder="请选择到货仓库">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in targetInvList"
|
|
|
|
|
:key="item.name"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.code">
|
|
|
|
|
<span style="float: left">{{ item.name }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="紧急程度:" prop="emergency">
|
|
|
|
|
<el-select v-model="filterQuery.emergency" placeholder="请选择紧急程度" style="width: 90%" clearable>
|
|
|
|
@ -51,15 +63,15 @@
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="创建时间:">
|
|
|
|
|
<el-date-picker
|
|
|
|
|
:picker-options="pickerOptions"
|
|
|
|
|
v-model="actDateRange"
|
|
|
|
|
type="daterange"
|
|
|
|
|
format="yyyy 年 MM 月 dd 日"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
range-separator="至"
|
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
|
end-placeholder="结束日期"
|
|
|
|
|
:picker-options="pickerOptions"
|
|
|
|
|
v-model="actDateRange"
|
|
|
|
|
type="daterange"
|
|
|
|
|
format="yyyy 年 MM 月 dd 日"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
value-format="yyyy-MM-dd"
|
|
|
|
|
range-separator="至"
|
|
|
|
|
start-placeholder="开始日期"
|
|
|
|
|
end-placeholder="结束日期"
|
|
|
|
|
>
|
|
|
|
|
</el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -97,8 +109,9 @@
|
|
|
|
|
:default-sort="defaultSort" @sort-change="handleSortChange">
|
|
|
|
|
<el-table-column label="序号" type="index" width="60"></el-table-column>
|
|
|
|
|
<el-table-column label="申购单号" prop="billNo"></el-table-column>
|
|
|
|
|
<el-table-column label="申购部门" prop="targetDeptName"></el-table-column>
|
|
|
|
|
<el-table-column label="申购仓库" prop="targetInvName"></el-table-column>
|
|
|
|
|
<el-table-column label="到货部门" prop="targetDeptName"></el-table-column>
|
|
|
|
|
<el-table-column label="到货仓库" prop="targetInvName"></el-table-column>
|
|
|
|
|
<el-table-column label="申购仓库" prop="invName"></el-table-column>
|
|
|
|
|
<el-table-column label="紧急程度" prop="emergency">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ emergencyMap[scope.row.emergency] }}
|
|
|
|
@ -172,7 +185,7 @@ import pureApplyDetail from "./pureApplyDetailDialog";
|
|
|
|
|
import {delApply, auditOrder, listApplyDetail, auditListApply} from "@/api/purchase/purApply";
|
|
|
|
|
import {filterAll, getInvListByUser} from "@/api/system/invWarehouse";
|
|
|
|
|
import {getDeptListByUser} from "@/api/auth/authDept";
|
|
|
|
|
import {filterSubAll} from "@/api/system/invSubWarehouse";
|
|
|
|
|
import {filterGroupBySpuse, filterSubAll} from "@/api/system/invSubWarehouse";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
data() {
|
|
|
|
@ -217,8 +230,9 @@ export default {
|
|
|
|
|
thirdSysDetail: null,
|
|
|
|
|
busTypes: [],
|
|
|
|
|
originTypes: [],
|
|
|
|
|
invList: {},
|
|
|
|
|
deptList: {},
|
|
|
|
|
invList: [],
|
|
|
|
|
targetInvList: [],
|
|
|
|
|
deptList: [],
|
|
|
|
|
list: [],
|
|
|
|
|
detailList: [],
|
|
|
|
|
loading: false,
|
|
|
|
@ -355,7 +369,7 @@ export default {
|
|
|
|
|
}
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.filterQuery.status = 12;
|
|
|
|
|
this.filterQuery.isInvCode=true
|
|
|
|
|
this.filterQuery.isInvCode = true
|
|
|
|
|
auditListApply(this.filterQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
@ -474,6 +488,16 @@ export default {
|
|
|
|
|
this.getInvList();
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
getCurInvList() {
|
|
|
|
|
var query = {
|
|
|
|
|
spUse: true,
|
|
|
|
|
}
|
|
|
|
|
this.filterQuery.targetInvCode = null
|
|
|
|
|
this.$forceUpdate()
|
|
|
|
|
filterGroupBySpuse(query).then((res) => {
|
|
|
|
|
this.targetInvList = res.data || [];
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
components: {
|
|
|
|
@ -497,6 +521,8 @@ export default {
|
|
|
|
|
,
|
|
|
|
|
created() {
|
|
|
|
|
this.getDeptList();
|
|
|
|
|
this.getCurInvList();
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
}
|
|
|
|
|