Merge remote-tracking branch 'origin/master'

prod
郑明梁 2 years ago
commit 35d1155dd9

@ -281,6 +281,7 @@ export default {
}; };
this.total = 0; this.total = 0;
this.list = []; this.list = [];
this.getList();
}, },
search() { search() {
this.filterQuery.page = 1; this.filterQuery.page = 1;
@ -671,7 +672,7 @@ export default {
} }
, ,
created() { created() {
// this.getList(); this.getList();
this.selectSysParam(); this.selectSysParam();
this.getSysFilter(); this.getSysFilter();
this.findMethod(); this.findMethod();

@ -90,7 +90,7 @@
<el-table-column label="单据号" prop="billNo"></el-table-column> <el-table-column label="单据号" prop="billNo"></el-table-column>
<el-table-column label="领用仓库" prop="invName"></el-table-column> <el-table-column label="领用仓库" prop="invName"></el-table-column>
<el-table-column label="往来信息" prop="targetInvName" show-overflow-tooltip="true"></el-table-column> <el-table-column label="往来信息" prop="targetInvName" show-overflow-tooltip="true"></el-table-column>
<el-table-column label="单据日期" prop="billDate"></el-table-column> <el-table-column label="单据日期" prop="createTime"></el-table-column>
<el-table-column label="状态" prop="status"> <el-table-column label="状态" prop="status">
<template slot-scope="scope"> <template slot-scope="scope">
<el-tag :type="(scope.row.status) | statusFilterType"> <el-tag :type="(scope.row.status) | statusFilterType">

@ -264,6 +264,7 @@ export default {
targetDeptCode: this.invCodebe, targetDeptCode: this.invCodebe,
targetInvCode:null targetInvCode:null
}; };
this.initActDateRange()
if(deptCode!=this.invCodebe){ if(deptCode!=this.invCodebe){
this.getInvList() this.getInvList()
} }
@ -428,6 +429,13 @@ export default {
this. getInvList(); this. getInvList();
}); });
}, },
initActDateRange(){
let end = new Date();
let start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
this.actDateRange = [start, end];
}
} }
, ,
@ -450,10 +458,7 @@ export default {
} }
, ,
created() { created() {
let end = new Date(); this.initActDateRange()
let start = new Date();
start.setTime(start.getTime() - 3600 * 1000 * 24 * 7);
this.actDateRange = [start, end];
this.getDeptList(); this.getDeptList();
} }
, ,

@ -28,7 +28,7 @@
<el-col :span="8"> <el-col :span="8">
<el-form-item label="申购仓库"> <el-form-item label="申购仓库">
<el-select v-model="filterQuery.targetInvCode" @change="getInvList" style="width: 90%" clearable placeholder="请选择所属仓库"> <el-select v-model="filterQuery.targetInvCode" @change="getList" style="width: 90%" clearable placeholder="请选择所属仓库">
<el-option <el-option
v-for="item in invList" v-for="item in invList"
:key="item.name" :key="item.name"
@ -169,6 +169,7 @@ export default {
editStatus: 1, editStatus: 1,
emergency:'', emergency:'',
targetDeptCode:'', targetDeptCode:'',
targetInvCode: null
}, },
formName: null, formName: null,
formMap: { formMap: {
@ -240,6 +241,7 @@ export default {
this.$router.push({ this.$router.push({
path: "", path: "",
}); });
let deptCode = this.filterQuery.targetDeptCode
this.filterQuery = { this.filterQuery = {
billNo: "", billNo: "",
thirdSysFk: "", thirdSysFk: "",
@ -253,7 +255,11 @@ export default {
type: 1, type: 1,
editStatus: 1, editStatus: 1,
targetDeptCode: this.invCodebe, targetDeptCode: this.invCodebe,
targetInvCode: null
}; };
if(deptCode!=this.invCodebe){
this.getInvList()
}
this.actDateRange = []; this.actDateRange = [];
this.getList(); this.getList();
}, },
@ -372,10 +378,16 @@ export default {
this.formName = "add"; this.formName = "add";
this.newSpDistributionVisible = true; this.newSpDistributionVisible = true;
}, },
deptChange(){
this. getInvList();
this.getList();
},
getInvList() { getInvList() {
var query={ var query={
parentId:this.filterQuery.targetDeptCode parentId:this.filterQuery.targetDeptCode
} }
this.filterQuery.targetInvCode = null
filterSubAll(query).then((res) => { filterSubAll(query).then((res) => {
this.invList = res.data || []; this.invList = res.data || [];
}) })
@ -387,8 +399,8 @@ export default {
this.filterQuery.targetDeptCode=this.deptList[0].code this.filterQuery.targetDeptCode=this.deptList[0].code
this.invCodebe=this.filterQuery.targetDeptCode this.invCodebe=this.filterQuery.targetDeptCode
} }
this.getList();
this. getInvList(); this. getInvList();
this.getList();
}); });
}, },
} }

@ -311,6 +311,7 @@ export default {
targetDeptCode: this.invCodebe, targetDeptCode: this.invCodebe,
}; };
this.actDateRange = []; this.actDateRange = [];
this.actAuditDateRange = [];
this.getList(); this.getList();
}, },

@ -179,6 +179,7 @@ export default {
editStatus: 1, editStatus: 1,
emergency:'', emergency:'',
deptCode:'', deptCode:'',
invCode:null
}, },
invCodebe:null, invCodebe:null,
formName: null, formName: null,
@ -262,8 +263,10 @@ export default {
type: 1, type: 1,
editStatus: 1, editStatus: 1,
deptCode: this.invCodebe, deptCode: this.invCodebe,
invCode:null
}; };
this.actDateRange = []; this.actDateRange = [];
this.getInvList()
this.getList(); this.getList();
}, },
handleClose() { handleClose() {
@ -406,6 +409,7 @@ export default {
var query={ var query={
parentId:this.filterQuery.deptCode parentId:this.filterQuery.deptCode
} }
this.filterQuery.invCode = null
filterSubAll(query).then((res) => { filterSubAll(query).then((res) => {
this.invList = res.data || []; this.invList = res.data || [];
}) })

Loading…
Cancel
Save