Commit f8d2996f authored by youjie's avatar youjie

团队收支利润不计算条数

parent 4e2986cb
......@@ -193,7 +193,7 @@
</div>
<table v-loading="loading" class="singeRowTable" border="0" cellspacing="0" cellpadding="0">
<tr>
<th>公司</th>
<th>所属公司</th>
<th>部门</th>
<th>员工姓名</th>
<th>日本线及其他人数</th>
......
......@@ -129,9 +129,7 @@
RB_Branch_Id: -1,//公司ID
OutBranchId: -1,//出团公司ID
},
EmName:'',
EmpType:'',
dataList:[],//提成比例
dataList:[],
outerVisible:false,//提成比例弹窗
loading: false,
}
......
......@@ -317,7 +317,10 @@
</el-row>
</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 class="Team_collection" v-loading="loading">
<div class="clearfix TB_PrintDiv">
<div class="TB_comtitle TB-Title">收入</div>
......@@ -1539,6 +1542,7 @@
export default {
data() {
return {
auditCoun:0,
ticketList:[],
tipdialog:false,
gridData: [],
......@@ -1647,6 +1651,55 @@
};
},
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){
let Handmsg={
OtherType:10,
......@@ -1975,6 +2028,7 @@
x.checked = false;
})
this.DataList = data;
this.GetALLPageList()//查询驳回数据
this.DataList.FiniceReciveList.forEach(item => {
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