Commit f8d2996f authored by youjie's avatar youjie

团队收支利润不计算条数

parent 4e2986cb
...@@ -193,7 +193,7 @@ ...@@ -193,7 +193,7 @@
</div> </div>
<table v-loading="loading" class="singeRowTable" border="0" cellspacing="0" cellpadding="0"> <table v-loading="loading" class="singeRowTable" border="0" cellspacing="0" cellpadding="0">
<tr> <tr>
<th>公司</th> <th>所属公司</th>
<th>部门</th> <th>部门</th>
<th>员工姓名</th> <th>员工姓名</th>
<th>日本线及其他人数</th> <th>日本线及其他人数</th>
......
...@@ -129,9 +129,7 @@ ...@@ -129,9 +129,7 @@
RB_Branch_Id: -1,//公司ID RB_Branch_Id: -1,//公司ID
OutBranchId: -1,//出团公司ID OutBranchId: -1,//出团公司ID
}, },
EmName:'', dataList:[],
EmpType:'',
dataList:[],//提成比例
outerVisible:false,//提成比例弹窗 outerVisible:false,//提成比例弹窗
loading: false, loading: false,
} }
......
...@@ -317,7 +317,10 @@ ...@@ -317,7 +317,10 @@
</el-row> </el-row>
</div> </div>
<div style="font-size: 15px;margin-top: 10px;"
v-if="auditCoun>0">当前有<span style="color: red;margin: 0 2px;">{{auditCoun}}</span>条数据不计入利润</div>
</div> </div>
<div class="Team_collection" v-loading="loading"> <div class="Team_collection" v-loading="loading">
<div class="clearfix TB_PrintDiv"> <div class="clearfix TB_PrintDiv">
<div class="TB_comtitle TB-Title">收入</div> <div class="TB_comtitle TB-Title">收入</div>
...@@ -1539,6 +1542,7 @@ ...@@ -1539,6 +1542,7 @@
export default { export default {
data() { data() {
return { return {
auditCoun:0,
ticketList:[], ticketList:[],
tipdialog:false, tipdialog:false,
gridData: [], gridData: [],
...@@ -1647,6 +1651,55 @@ ...@@ -1647,6 +1651,55 @@
}; };
}, },
methods: { methods: {
//查询驳回数据
GetALLPageList(){
let msg = {
pageIndex:1,
pageSize:1000000,
FrID:0,
sDate:'',
eDate:'',
Status:'3',
TemplateId:0,
RB_Branch_Id:-1,
RB_Depart_Id:0,
sTradeDate:'',
eTradeDate:'',
ClientType:0,
RemitterName:'',
ClientID:0,
sMoney:'',
eMoney:'',
CurrencyId:0,
CostTypeID:0,
Conditon:0,
TCNUM:this.TCID,
TCID: 0,
TradeWay:0,
Type:'-1',
AccountType:0,
QEndDate:'',
QStartDate:'',
UpdateBy:0,
IsFormRecPayQuery:'1',
KJCostTypeId:0,
IsSelectKJSetCostType:0,
Remark:'', //备注查询
Sort:'2',
EmployeeId:'',
OrderID:0,
}
this.apipost('Financial_post_GetALLPageList',msg,res=>{
if(res.data.resultCode == 1) {
let data = res.data.data.pageData.list;
this.auditCoun = res.data.data.count;
}else{
this.loading= false;
this.$message.error(res.data.message);
}
},err=>{})
},
goZhidan(item){ goZhidan(item){
let Handmsg={ let Handmsg={
OtherType:10, OtherType:10,
...@@ -1975,6 +2028,7 @@ ...@@ -1975,6 +2028,7 @@
x.checked = false; x.checked = false;
}) })
this.DataList = data; this.DataList = data;
this.GetALLPageList()//查询驳回数据
this.DataList.FiniceReciveList.forEach(item => { this.DataList.FiniceReciveList.forEach(item => {
if (that.isExists(item.CostTypeList, '团费') || that.isExists(item.CostTypeList, '团款')) { if (that.isExists(item.CostTypeList, '团费') || that.isExists(item.CostTypeList, '团款')) {
// 收入 团费 // 收入 团费
......
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