Commit 2e3a9245 authored by 黄媛媛's avatar 黄媛媛

111

parent 01282b89
This diff is collapsed.
......@@ -189,7 +189,7 @@
</div>
</div>
</el-col>
<el-col :span="3">
<el-col :span="3">
<div class="Team_DList">
<div class="Team_firstTitle">
<span class="Team_comCoinType Team_shou">
......@@ -287,6 +287,22 @@
</div>
</div>
</el-col>
<!-- <el-col :span="3">
<div class="Team_DList">
<div class="Team_firstTitle">
<span class="Team_comCoinType Team_shou">
<i class="iconfont icon-qian"></i>
</span>财务单据
</div>
<div class="Team_Incontent">
<div>制单已审核:<span>¥{{moneyFormat(dataInfo.CXMoney)}}</span></div>
<div>制单未审核:<span class="Team_Coins">¥{{moneyFormat(dataInfo.ZDMoney)}}</span></div>
<div>未制单:<span class="Team_Coins">¥{{moneyFormat(dataInfo.Money)}}</span></div>
<div>
</div>
</div>
</div>
</el-col> -->
</el-row>
</div>
......@@ -1544,9 +1560,38 @@
checkd:false,
tiploading:false,
checkListAll:[],
dateList:[],
dataInfo:{},
datainfoobj:{
pageIndex:1,
pageSize:10,
TCNUM:'',
FinanceId:0,
AccountId:-1,
Type:3,
StartTime:'',
EndTime:'',
},
};
},
methods: {
getdataInfo(){
if(this.dateList && this.dateList.length>0){
this.datainfoobj.StartTime=this.dateList[0];
this.datainfoobj.EndTime=this.dateList[1];
}else{
this.datainfoobj.StartTime='';
this.datainfoobj.EndTime='';
}
this.apipost('Financial_get_GetFinanceReceiptStatistics',this.datainfoobj,res=>{
if(res.data.resultCode==1){
this.dataInfo = res.data.data;
}else{
this.$message.error(res.data.message);
}
},err=>{})
},
isContain(list){
if(list && list.length==1 && list[0]=="机票罚金"){
......@@ -1820,14 +1865,14 @@
this.moneyAll.dijieys += item.Money;
this.moneyAll.dijiess += item.PayMoney;
this.moneyAll.otheryTotalyf+= item.Money;
this.moneyAll.otheryTotalsf+=item.PayMoney;
}
// 收入 自费
if (that.isExists(item.CostTypeList, '自费') || that.isExists(item.CostTypeList, '自费收支结算')) {
this.moneyAll.zifeiys += item.Money;
this.moneyAll.zifeiss += item.PayMoney;
this.moneyAll.otheryTotalyf+= item.Money;
this.moneyAll.otheryTotalsf+=item.PayMoney;
this.moneyAll.otheryTotalsf+=item.PayMoney;
}
// 收入 自费
if (that.isExists(item.CostTypeList, '自费') || that.isExists(item.CostTypeList, '自费收支结算')) {
this.moneyAll.zifeiys += item.Money;
this.moneyAll.zifeiss += item.PayMoney;
this.moneyAll.otheryTotalyf+= item.Money;
this.moneyAll.otheryTotalsf+=item.PayMoney;
}
// 收入 小费
if (that.isExists(item.CostTypeList, '小费')) {
......@@ -2072,6 +2117,7 @@ this.moneyAll.otheryTotalsf+=item.PayMoney;
},
mounted() {
this.TCID = this.$route.query.id;
this.datainfoobj.TCNUM=this.$route.query.id;
this.OutBranchId = this.$route.query.OutBranchId;
this.CloseIncomeBtn = this.$route.query.CloseIncomeBtn;
if (this.$route.query.IsHaveAuth) {
......@@ -2081,6 +2127,7 @@ this.moneyAll.otheryTotalsf+=item.PayMoney;
}
this.checkHasAuth();
this.getList();
this.getdataInfo();
}
};
......
......@@ -3533,6 +3533,7 @@ export default {
title: '团队营收统计'
},
},
{ //财务 报表 年度排名统计
path: '/AnnualRanking',
name: 'AnnualRanking',
......@@ -3564,7 +3565,17 @@ export default {
meta: {
title: '团队人数统计'
},
}, {
},
{
path: '/DocumentStatistics',
name: 'DocumentStatistics',
component: resolve => require(['@/components/FinancialModule/DocumentStatistics'], resolve),
meta: {
title: '财务单据'
},
},
{
path: '/JumpReport',
name: 'JumpReport',
component: resolve => require(['@/components/FinancialModule/JumpReport'], resolve),
......
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