Commit eff48168 authored by youjie's avatar youjie

no message

parent 02a8e592
...@@ -339,7 +339,7 @@ ...@@ -339,7 +339,7 @@
<em @click.stop="heightQueryBox=!heightQueryBox">高级查询 <i class="iconfont icon-gengduo"></i></em> <em @click.stop="heightQueryBox=!heightQueryBox">高级查询 <i class="iconfont icon-gengduo"></i></em>
</span> </span>
<button class="hollowFixedBtn" @click="resetPageIndex(),getPageList()">{{$t('pub.searchBtn')}}</button> <button class="hollowFixedBtn" @click="resetPageIndex(),getPageList()">{{$t('pub.searchBtn')}}</button>
<!-- <button class="normalBtn" @click="method5()">导出</button> --> <button class="normalBtn" @click="method5()">导出</button>
<button class="normalBtn" @click="GenerateDocuments()">生成财务单据</button> <button class="normalBtn" @click="GenerateDocuments()">生成财务单据</button>
</li> </li>
</ul> </ul>
...@@ -349,9 +349,9 @@ ...@@ -349,9 +349,9 @@
<span>已选数据:</span> <span>已选数据:</span>
<template v-if="multipleSelection.length>0"> <template v-if="multipleSelection.length>0">
<el-tag size="mini" closable <el-tag size="mini" closable
style="margin-right: 5px;" style="margin-right: 5px;margin-bottom: 5px;"
v-for="(x,index) in multipleSelection" v-for="(x,index) in multipleSelection"
:key="x.FrID" @close="handleClose([multipleSelection[index]])">{{x.FrID}}</el-tag> :key="x.FrID" @close="handleClose([multipleSelection[index]])">{{x.FrID}} 应付:{{x.Money}}</el-tag>
</template> </template>
<template v-else> <template v-else>
...@@ -488,9 +488,9 @@ ...@@ -488,9 +488,9 @@
label="金额" label="金额"
show-overflow-tooltip> show-overflow-tooltip>
<template slot-scope="scope"> <template slot-scope="scope">
<p style="line-height:20px">{{scope.row.Type==1?'应收':'应付'}}<span>{{scope.row.Money}}</span></p> <p style="line-height:20px" v-if="scope.row.Money>0">{{scope.row.Type==1?'应收':'应付'}}<span>{{scope.row.Money}}</span></p>
<p style="line-height:20px">{{scope.row.Type==1?'实收':'实付'}}<span>{{scope.row.PayMoney}}</span></p> <p style="line-height:20px" v-if="scope.row.PayMoney>0">{{scope.row.Type==1?'实收':'实付'}}<span>{{scope.row.PayMoney}}</span></p>
<p v-if="scope.row.IsAdvanceFinance==1" style="line-height:20px">冲抵:<span>{{scope.row.MatchMoney}}</span></p> <p v-if="scope.row.IsAdvanceFinance==1&&scope.row.MatchMoney>0" style="line-height:20px">冲抵:<span>{{scope.row.MatchMoney}}</span></p>
</template> </template>
</el-table-column> </el-table-column>
<el-table-column <el-table-column
...@@ -745,9 +745,7 @@ export default { ...@@ -745,9 +745,7 @@ export default {
this.DepartIDs = userInfo.RB_Department_Id; this.DepartIDs = userInfo.RB_Department_Id;
this.userId = userInfo.EmployeeId; this.userId = userInfo.EmployeeId;
this.msg.EmployeeId= userInfo.EmployeeId; this.msg.EmployeeId= userInfo.EmployeeId;
if(this.$route.query.FrID){ this.msg.FrID = this.$route.query.FrID?this.$route.query.FrID:0
this.msg.FrID = this.$route.query.FrID
}
this.financeinfo_post_GetList(); this.financeinfo_post_GetList();
this.financeinfo_post_GetCostTypeList(); this.financeinfo_post_GetCostTypeList();
this.FinancialFlowTemplate_post_GetList(); this.FinancialFlowTemplate_post_GetList();
...@@ -867,7 +865,7 @@ export default { ...@@ -867,7 +865,7 @@ export default {
if(!this.msg.ClientType)this.msg.ClientType=0; if(!this.msg.ClientType)this.msg.ClientType=0;
if(!this.msg.CurrencyId)this.msg.CurrencyId=0; if(!this.msg.CurrencyId)this.msg.CurrencyId=0;
if(!this.msg.CostTypeID)this.msg.CostTypeID=0; if(!this.msg.CostTypeID)this.msg.CostTypeID=0;
if(!this.msg.TemplateIds)this.msg.TemplateIds=0; if(this.msg.TemplateIds=='0')this.msg.TemplateIds='';
if(this.msg.RB_Branch_Id === '')this.msg.RB_Branch_Id=-1; if(this.msg.RB_Branch_Id === '')this.msg.RB_Branch_Id=-1;
if(!this.msg.RB_Depart_Id)this.msg.RB_Depart_Id=0; if(!this.msg.RB_Depart_Id)this.msg.RB_Depart_Id=0;
if(!this.msg.UpdateBy)this.msg.UpdateBy=0; if(!this.msg.UpdateBy)this.msg.UpdateBy=0;
...@@ -880,7 +878,9 @@ export default { ...@@ -880,7 +878,9 @@ export default {
if(!this.msg.AccountType)this.msg.AccountType=0; if(!this.msg.AccountType)this.msg.AccountType=0;
if(!this.msg.KJCostTypeId)this.msg.KJCostTypeId=0; if(!this.msg.KJCostTypeId)this.msg.KJCostTypeId=0;
if(!this.msg.IsSelectKJSetCostType)this.msg.IsSelectKJSetCostType=0; if(!this.msg.IsSelectKJSetCostType)this.msg.IsSelectKJSetCostType=0;
this.GetLocalFile("Financial_post_DownInOrOut", this.msg,"收支款.xls"); let time = this.getBeforeDate(0,new Date().Format("yyyy-MM-dd"))
var fileName = `成本月结表${time}.xls`;
this.GetLocalFile("Financial_get_GetCostMonthALLExport", this.msg,fileName);
} , } ,
financeRemove(id){//作废 financeRemove(id){//作废
this.$confirm('是否对申请单进行作废操作?作废后不可恢复!', '提示', { this.$confirm('是否对申请单进行作废操作?作废后不可恢复!', '提示', {
...@@ -1171,7 +1171,7 @@ export default { ...@@ -1171,7 +1171,7 @@ export default {
QStartDate:this.msg.QStartDate, QStartDate:this.msg.QStartDate,
OrderID:this.msg.OrderID==0?'':this.msg.OrderID, OrderID:this.msg.OrderID==0?'':this.msg.OrderID,
Sort:this.msg.Sort, Sort:this.msg.Sort,
EmployeeId:this.msg.EmployeeId?this.msg.EmployeeId:5, EmployeeId:this.msg.EmployeeId,
KJCostTypeId:this.msg.KJCostTypeId==0?'':this.msg.KJCostTypeId, KJCostTypeId:this.msg.KJCostTypeId==0?'':this.msg.KJCostTypeId,
IsSelectKJSetCostType:this.msg.IsSelectKJSetCostType==0?'':this.msg.IsSelectKJSetCostType, IsSelectKJSetCostType:this.msg.IsSelectKJSetCostType==0?'':this.msg.IsSelectKJSetCostType,
} }
......
...@@ -464,7 +464,7 @@ ...@@ -464,7 +464,7 @@
</el-table-column> </el-table-column>
<el-table-column <el-table-column
prop="" prop=""
label="交易方式" show-overflow-tooltip width="150"> label="交易方式" show-overflow-tooltip width="210">
<template slot-scope="scope"> <template slot-scope="scope">
<div> <div>
<template v-if="scope.row.TradeWayList&&scope.row.TradeWayList.length>0"> <template v-if="scope.row.TradeWayList&&scope.row.TradeWayList.length>0">
......
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