|
|
|
@ -10,7 +10,7 @@
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item label="采购部门">
|
|
|
|
|
<el-select v-model="filterQuery.deptCode" @change="getInvList" placeholder="请选择采购部门" style="width: 90%">
|
|
|
|
|
<el-select v-model="filterQuery.deptCode" @change="getInvList" placeholder="请选择采购部门" style="width: 90%">
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in deptList"
|
|
|
|
|
:key="item.code"
|
|
|
|
@ -99,6 +99,7 @@
|
|
|
|
|
<el-table-column label="采购单号" prop="billNo"></el-table-column>
|
|
|
|
|
<el-table-column label="采购部门" prop="deptName"></el-table-column>
|
|
|
|
|
<el-table-column label="采购仓库" prop="invName"></el-table-column>
|
|
|
|
|
<el-table-column label="供应商" prop="supName"></el-table-column>
|
|
|
|
|
<el-table-column label="紧急程度" prop="emergency">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
{{ emergencyMap[scope.row.emergency] }}
|
|
|
|
@ -193,11 +194,11 @@ export default {
|
|
|
|
|
corpName: null,
|
|
|
|
|
type: 1,
|
|
|
|
|
editStatus: 1,
|
|
|
|
|
emergency:'',
|
|
|
|
|
deptCode:'',
|
|
|
|
|
emergency: '',
|
|
|
|
|
deptCode: '',
|
|
|
|
|
},
|
|
|
|
|
Menustatus:null,
|
|
|
|
|
filePath:"",
|
|
|
|
|
Menustatus: null,
|
|
|
|
|
filePath: "",
|
|
|
|
|
formName: null,
|
|
|
|
|
formMap: {
|
|
|
|
|
add: "新增采购计划",
|
|
|
|
@ -221,7 +222,7 @@ export default {
|
|
|
|
|
editType: 1,
|
|
|
|
|
total: 0,
|
|
|
|
|
thirdSys: [],
|
|
|
|
|
invCodebe:null,
|
|
|
|
|
invCodebe: null,
|
|
|
|
|
thirdSysDetail: null,
|
|
|
|
|
busTypes: [],
|
|
|
|
|
originTypes: [],
|
|
|
|
@ -328,7 +329,7 @@ export default {
|
|
|
|
|
hideSearch() {
|
|
|
|
|
this.showSearch = !this.showSearch;
|
|
|
|
|
},
|
|
|
|
|
help(){
|
|
|
|
|
help() {
|
|
|
|
|
this.certFileUrl = this.BASE_URL + "/udiwms/image/register/file/getImage?type=image2&name=";
|
|
|
|
|
window.open(this.certFileUrl + this.filePath);
|
|
|
|
|
},
|
|
|
|
@ -354,7 +355,7 @@ export default {
|
|
|
|
|
if (response.code == 20000) {
|
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
this.detailList=[]
|
|
|
|
|
this.detailList = []
|
|
|
|
|
} else {
|
|
|
|
|
this.$message.error(response.message);
|
|
|
|
|
}
|
|
|
|
@ -410,12 +411,12 @@ export default {
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
selectAuthMenu(){
|
|
|
|
|
let params={menuName:this.$route.meta.title}
|
|
|
|
|
selectAuthMenu(params).then((res) =>{
|
|
|
|
|
if(res.code === 20000){
|
|
|
|
|
this.Menustatus=res.data.status;
|
|
|
|
|
this.filePath=res.data.filePath;
|
|
|
|
|
selectAuthMenu() {
|
|
|
|
|
let params = {menuName: this.$route.meta.title}
|
|
|
|
|
selectAuthMenu(params).then((res) => {
|
|
|
|
|
if (res.code === 20000) {
|
|
|
|
|
this.Menustatus = res.data.status;
|
|
|
|
|
this.filePath = res.data.filePath;
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
@ -427,8 +428,8 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getInvList() {
|
|
|
|
|
var query={
|
|
|
|
|
parentId:this.filterQuery.deptCode
|
|
|
|
|
var query = {
|
|
|
|
|
parentId: this.filterQuery.deptCode
|
|
|
|
|
}
|
|
|
|
|
filterSubAll(query).then((res) => {
|
|
|
|
|
this.invList = res.data || [];
|
|
|
|
@ -437,12 +438,12 @@ export default {
|
|
|
|
|
getDeptList() {
|
|
|
|
|
getDeptListByUser().then((res) => {
|
|
|
|
|
this.deptList = res.data || [];
|
|
|
|
|
if(this.deptList.length>0){
|
|
|
|
|
this.filterQuery.deptCode=this.deptList[0].code
|
|
|
|
|
this.invCodebe=this.filterQuery.deptCode
|
|
|
|
|
if (this.deptList.length > 0) {
|
|
|
|
|
this.filterQuery.deptCode = this.deptList[0].code
|
|
|
|
|
this.invCodebe = this.filterQuery.deptCode
|
|
|
|
|
}
|
|
|
|
|
this.getList();
|
|
|
|
|
this. getInvList();
|
|
|
|
|
this.getInvList();
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|