Commit 57adacad authored by youjie's avatar youjie

no message

parent 4c540927
......@@ -248,6 +248,9 @@
prop="FinanceId"
label="单号"
width="80">
<template slot-scope="scope">
<span style="cursor: pointer;color: #00C6FF;" @click="openDetails(scope.row)">{{ scope.row.FinanceId }}</span>
</template>
</el-table-column>
<el-table-column
prop="CostTypeName"
......@@ -487,7 +490,7 @@ export default {
if(this.$route.query.HandFeeFrId){
this.msg.HandFeeFrId = this.$route.query.HandFeeFrId
}else{
let sDate= this.FormartDate(new Date(this.getBeforeDate(31)));
let sDate= this.FormartDate(new Date(this.getBeforeDate(1)));
let eDate= this.FormartDate(new Date(this.getBeforeDate(0)));
this.productionDate = [sDate,eDate]
this.msg.sDate= sDate;
......@@ -514,6 +517,17 @@ export default {
this.GetHandFee()//手配费公司
},
methods:{
// 单据详情
openDetails(item) {
let query = {
id: item.FinanceId,
blank: "y",
};
this.$router.push({
path: "/FinancialDocumentsDetail",
query
});
},
// 设置手配费关联
setHandFeeFr(){
this.$refs['shezhiMsg'].validate((valid) => {
......
......@@ -1769,6 +1769,9 @@ export default {
||this.$route.query.id==248){
this.is_HandFee = true
this.isHandFee = true
}else{
this.is_HandFee=false
this.isHandFee = false
}
}
if(Bid>=0){
......@@ -2024,6 +2027,8 @@ export default {
||this.$route.query.id==248){
this.GetHandFeeList()//获取手配费功能权限配置
this.isHandFee = true
}else{
this.is_HandFee = false
}
let userInfo = this.getLocalStorage();
this.department = userInfo.DepartName;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment